if (_wsdl != null)
wsdlLocation = _wsdl.toString();
else
wsdlLocation = null;
Skeleton skeleton =
WebServiceIntrospector.introspect(api, wsdlLocation, definitions);
String endpointAddress = findEndpointAddress();
String bindingId = SOAPBinding.SOAP11HTTP_BINDING;
//definitions.getBindingId(_serviceName, portName);
Binding binding = getBinding(bindingId);
PortProxyHandler handler =
new PortProxyHandler(skeleton, endpointAddress, binding);
if (portName == null)
portName = new QName(skeleton.getNamespace(), skeleton.getPortName());
PortInfoImpl portInfo = new PortInfoImpl(bindingId, portName,
_serviceName, endpointAddress);
// Check for @HandlerChain on the service API