Skip to content

Adds NTLM auth support#37

Open
lehh wants to merge 3 commits intomainfrom
ntlm-auth
Open

Adds NTLM auth support#37
lehh wants to merge 3 commits intomainfrom
ntlm-auth

Conversation

@lehh
Copy link
Owner

@lehh lehh commented Oct 27, 2023

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'
    }
  },
}), 
`

@lehh lehh linked an issue Oct 27, 2023 that may be closed by this pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Does nestjs-soap supports NTLM authentication?

1 participant