Bluestep JS Documentation
    Preparing search index...

    TODO

    TODO
    
    Index

    Constructors

    Methods

    • Builder of a SOAP client

      Parameters

      • url: string

        URL to WSDL.

      Returns ClientBuilder

    • Create a SOAP client

      Parameters

      • url: string

        URL to WSDL. If not a fully-qualified path, it will asume the filesystem in this domain

      • Optionalsettings: ClientSettings

      Returns Client

      Create 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 AbstractSoapInterceptor

      Parameters

      Returns AbstractSoapInterceptor

      const myInterceptor = B.soap.extendAbstractSoapInterceptor({
      handleMessage: (message) -> {}
      handleFault: (message) -> {}
      });
    • Use this method to implement an Interceptor

      Type Parameters

      Parameters

      Returns Interceptor<T>

      const myInterceptor = B.soap.implementInterceptor({
      handleMessage: (message) -> {}
      handleFault: (message) -> {}
      });