Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 525 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 525 Bytes

SOAP-EASY

Created to forget the configuration, based on SOAP library

Install

npm i soap-easy

How to Use

import {SoapClient} from "soap-easy";
...

public someSoap() {
    const soap = new SoapClient("WSDL_URL");
    const query = {
        param1: 1234,
    };
    
    const result = soap.callSerice("serviceFunction", query);
}

Link

See on GITHUB

See on NPM