jawhinge

Results 1 issues of jawhinge

Here's my client: ``` constructor(private soap: NgxSoapService) { this.soap.createClient(URL-TO-WSDL) .then(client => { console.log('Client', client); client.setSecurity(new security.NTLMSecurity(username, password, DOMAIN, USER-PC )); this.client = client; }) .catch(err => console.log('Error', err)); } ```...