Web service cartridge not working in ASAP 7.2
The standalone code in ASAP server seems to work fine but when tried through connection handler seems to not progress.
The objective of the connectionhandler is to get a port so that the service on the remote WSDL can be invoked. We have the following statement in the code which works fine when run as a standalone:
URL url = new URL("http://<serverip>:<port>/provisioning/SessionControlEndpointSlsb?wsdl");
QName qName = new QName(URI, "SessionControlEndpointSlsbService");
Service service=Service.create(url, qName);
But when we include the statement to run in ASAP's ConnectionHandler class, nothing happens.
This is what we find in the ASAP.Console for the first time:
The objective of the connectionhandler is to get a port so that the service on the remote WSDL can be invoked. We have the following statement in the code which works fine when run as a standalone:
URL url = new URL("http://<serverip>:<port>/provisioning/SessionControlEndpointSlsb?wsdl");
QName qName = new QName(URI, "SessionControlEndpointSlsbService");
Service service=Service.create(url, qName);
But when we include the statement to run in ASAP's ConnectionHandler class, nothing happens.
This is what we find in the ASAP.Console for the first time:
0