50515253545556
private transient String remoteHostAddress; private transient boolean started; public EndpointConfigurationInfo() { serviceFactory = new SOAPServiceFactory(); }
75767778798081
public EndpointConfigurationInfo(ProducerInfo producerInfo) { ParameterValidation.throwIllegalArgExceptionIfNull(producerInfo, "ProducerInfo"); producerInfo.setEndpointConfigurationInfo(this); serviceFactory = new SOAPServiceFactory(); }
226227228229230231232233234235236
private ServiceFactory initServiceFactoryIfNeeded() throws RuntimeException { if (serviceFactory == null) { serviceFactory = new SOAPServiceFactory(); if (usesWSDL()) { // serviceFactory = new RemoteSOAPInvokerServiceFactory(); internalSetWsdlURL(); }
53545556575859