_requestPanel.setEditable(true);
_requestPanel.setRequest(request);
_requestPanel.setBorder(new TitledBorder("Request"));
conversationSplitPane.setLeftComponent(_requestPanel);
_responsePanel = new ResponsePanel();
_responsePanel.setEditable(false);
_responsePanel.setResponse(null);
_responsePanel.setBorder(new TitledBorder("Response"));
conversationSplitPane.setRightComponent(_responsePanel);