Problem is solved. It can be done using an HTTP header.
If anyone comes across this needing the solution, put the following
line of code just before sending the request using the HttpClient,
substitute the variables for your info.
PostMethod post = new PostMethod(URL);
post.setRequestEntity(new
StringRequestEntity(STRING_VERSION_OF_REQUEST, "text/xml", "utf-8"));
post.addRequestHeader("SOAPAction", "\"" + OPERATION + "\"");
CLIENT.executeMethod(post);
Thanks.
Jeff
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]