Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

The endpoint reference (EPR) for the Operation not found

843833Sep 1 2010
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 29 2010
Added on Sep 1 2010
0 comments
1,279 views