I have a WebService deployed on Oracle Application Server and it's an HTTPS connection. I am facing a small issue and can't figure out what's going on. For each request there's a response returned. Sometimes the Requester does not get the response back even though the request
is successfully processed and response generated but some how it never makes it to the Requester.
Here is the signature of the function:
public Element parseData(Element data) throws RemoteException;
And I can't figure out why a Requester does not receive a response back for some of the requests even though the request is successfully processed on my end. Any ideas what might be wrong or how to debug this issue. Is there any place I can look to see for each request is a response going back. I don't know if it's related Network or
App. Server and where to start to debug this. As looking at the logs of my Web Service I do see all the requests being processed but some how it never makes it to the Requester of the service. It normally takes arround 5 to 10 seconds to process each request and most of time multiple requests are being processed.
Any help is appreciated.
Thanks