public void propertyChange(PropertyChangeEvent event) {
// TODO Some of these properties should be pulled up as they are common for may steps
// FIXME The property names shouldn't be hardcoded
if (event.getSource() == testRequest) {
if (event.getNewValue() instanceof WsdlSinglePartHttpResponse) {
WsdlSinglePartHttpResponse response = (WsdlSinglePartHttpResponse) event.getNewValue();
WsdlRequest request = response.getRequest();
byte[] rawRequest = response.getRawRequestData();
firePropertyValueChanged("Response", String.valueOf(response), null);
firePropertyValueChanged("Request", String.valueOf(request), null);
firePropertyValueChanged("RawRequest", String.valueOf(rawRequest), null);
}