ParameterizedCommand parmCommand = new ParameterizedCommand(showView, new Parameterization[] { parmId1, parmId2 });
handlerService.executeCommand(parmCommand, null);
IViewPart view = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(HttpRequestView.ID, ScannerPerspectiveFactory.HTTP_VIEW_SECONDARY_ID, IWorkbenchPage.VIEW_VISIBLE);
if(view instanceof HttpRequestView && arguments[0] instanceof String) {
final HttpRequestView requestView = (HttpRequestView) view;
try {
long id = Long.parseLong((String) arguments[0]);
requestView.focusOnRecord(id);
} catch (NumberFormatException e) {
}
}
} catch (PartInitException e) {