Builder of a SOAP client
URL to WSDL.
Create a SOAP client
URL to WSDL. If not a fully-qualified path, it will asume the filesystem in this domain
Optional
settings: ClientSettingsCreate a SOAP client with a url.
const client = B.soap.createClient('/wsdls/client.wsdl');
Create a SOAP client with a url and service name.
const client = B.soap.createClient('/wsdls/client.wsdl', {serviceName: 'MySoapService'});
Use this method to extend an AbstractPhaseInterceptor
Optional
id: stringOptional
uniqueId: booleanconst myInterceptor = B.soap.extendAbstractPhaseInterceptor({
handleMessage: (message) -> {}
handleFault: (message) -> {}
});
Use this method to extend an AbstractSoapInterceptor
Optional
id: stringconst myInterceptor = B.soap.extendAbstractSoapInterceptor({
handleMessage: (message) -> {}
handleFault: (message) -> {}
});
Use this method to implement an Interceptor
const myInterceptor = B.soap.implementInterceptor({
handleMessage: (message) -> {}
handleFault: (message) -> {}
});
Interceptor to be used for doing SOAP Security
Interceptor to be used for doing SOAP Security
Generated using TypeDoc
TODO
Example