/* forward the content to the HTTP listener as an HTTP POST */
Hashtable headers = new Hashtable ();
headers.put (Constants.HEADER_SOAP_ACTION, actionURI);
TransportMessage response;
// This is the reponse SOAPContext. Sending it as a reply not supported yet.
SOAPContext ctx;
try
{
// Note: no support for multipart MIME request yet here...
TransportMessage tmsg = new TransportMessage(new String (ba),
new SOAPContext(),
headers);
tmsg.save();
response = HTTPUtils.post (httpURL, tmsg,
30000, null, 0);