Hello,
we are having some problems with the asynchronous execution of our
auto-generated client. The service is called SVMHCService, the operation is
called predictEpitopes.
We successfully wrote and ran a synchronous service that gives back the results
we want. However, the asynchronous call stays quiet. The Callback Handler is
created, but the methods receiveResult... and receiveError... are never called.
Did we do anything wrong with calling the service? This is our main method:
try {
PredictEpitopesRequestDocument request_doc = getQuery();
SVMHCServicePortCallbackHandler callback = new SVMHCServicePortCallbackHandler
(new Object()) { };
SVMHCServicePortStub sender = new SVMHCServicePortStub
("http://localhost/axis2/services/SVMHCService");
sender.startpredictEpitopes(request_doc, callback);
} catch (AxisFault axisFault) {
axisFault.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
Thanks a lot for your time.
-- Sebi