Open lehh opened 1 year ago
Added NTLM auth support. Example use:
... useFactory: async ( configService: ConfigService, ): Promise<SoapModuleOptions> => ({ uri: configService.get<string>('soap.uri'), auth: { type: 'ntlm', username: configService.get<string>('soap.username'), password: configService.get<string>('soap.password'), options: { domain: 'domain', workspace: 'workspace' } }, }), `
Added NTLM auth support. Example use: