String response = "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">"
+ "<s:Body><closeChannelResponse xmlns=\"http://servicechannel.tcp.transport.ws.xml.sun.com/\""
+ " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/"
+ "XMLSchema\"/></s:Body></s:Envelope>";
SoapTcpMessage soapTcpMessage = SoapTcpMessage.createSoapTcpMessage(response, 0);
IoBuffer buffer = IoBuffer.allocate(512);
buffer.setAutoExpand(true);
try {
SoapTcpUtils.writeSoapTcpMessage(buffer.asOutputStream(), soapTcpMessage);
} catch (IOException e) {