Hi,
The WSDL2Java generated service locator method getXXXXService(URL
portaddress) ...
Has a 'return null' statement in the catch block. Is that the desired
behavior, or should the exception be thrown with 'throw new
ServiceException(e);'
Christophe
Public soap.AdministrativeServicePort getXXXXService(java.net.URL
portAddress) throws javax.xml.rpc.ServiceException {
try {
soap.XXXXServiceSoapBindingStub _stub = new
soap.XXXXSoapBindingStub(portAddress, this);
_stub.setPortName(getXXXXServiceWSDDServiceName());
return _stub;
}
catch (org.apache.axis.AxisFault e) {
return null; <---------
}
}