Hi,
I am using following code for calling WebService:
HttpPost post = new
HttpPost("https://ip:8243/soap/Service.DServiciosHttpsSoap11Endpoint");
post.setHeader("SOAPAction", "");
StringEntity requestBody = new StringEntity(requestXML);
post.setEntity(requestBody);
String responseXml = httpClient.execute(post, STRING_CONVERTER);
System.out.println(responseXml);
when I am running this code I am getting error i..e
The endpoint reference (EPR) for the Operation not found is /soap/Service.DServiciosHttpsSoap11Endpoint and the WSA Action =
While running from SOAP UI I am getting response.
Its a multi-operation WebService.
DTD for this WebService is:
POST http://ip:8280/soap/Services.DServiciosHttpSoap11Endpoint HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: ""
User-Agent: Jakarta Commons-HttpClient/3.1
Host: ip:8280
Proxy-Connection: Keep-Alive
Content-Length: 426
Please help me.. What needs to be done and where I am doing wrong.
Thanks