And this is how I am sending the SOAP message over:
String strURL = "http://localhost:8080/axis/services";
File input = new File(SOAPMessage);
PostMethod post = new PostMethod(strURL);
RequestEntity entity = new FileRequestEntity(input,
"text/xml; charset=ISO-8859-1");
post.setRequestEntity(entity);
int result = httpclient.executeMethod(post);
Any ideas would be greatly appeciated - is the charset an issue ?
Thanks much
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]