nestjs-soap icon indicating copy to clipboard operation
nestjs-soap copied to clipboard

Nestjs module wrapper for soap npm package

Results 10 nestjs-soap issues
Sort by recently updated
recently updated
newest added

Hi everyone, Is there a feature to create multiple SOAP clients with separate configs in a single module? As I've seen in the examples in documentation, there were only cases...

I can't find any example of adding timeout

Added NTLM auth support. Example use: ```typescript ... useFactory: async ( configService: ConfigService, ): Promise => ({ uri: configService.get('soap.uri'), auth: { type: 'ntlm', username: configService.get('soap.username'), password: configService.get('soap.password'), options: { domain:...

I'm trying to consume a SOAP-based web service using this package (great work btw!). The API requires NTLM based authentication, which the base [soap](https://www.npmjs.com/package/soap#ntlmsecurity) package supports, but I'm not sure...

help wanted

Hello! I facing a problem when i try to insert a relative local path as uri. the code is something like `SoapModule.register({ clientName: 'SOAP_GESTIONE_PRIVACY', uri: 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl', clientOptions: { disableCache: true,...

does this wrapper provide any integration for the soap server listen capability of the soap lib?

enhancement

Hey all, I'd like to send XML request with `nestjs-soap` library, but it throws an error with installed self-signed certificates, like: `ERROR [SoapModule] self-signed certificate in certificate chain` Can anyone...

Getting error - [Nest] 4256 - ERROR [SoapModule] The "path" argument must be of type string or an instance of Buffer or URL. Received undefined - An error occurred while...

question

Hi there. Here is my module. `@Module({ imports: [ SoapModule.registerAsync({ clientName: 'MY_SOAP_CLIENT', imports: [ConfigModule], inject: [ConfigService], useFactory: async ( configService: ConfigService, ): Promise => ({ uri: configService.get('SOAP_URL'), clientName: 'MY_SOAP_CLIENT', auth:...

question