wsdl-tsclient icon indicating copy to clipboard operation
wsdl-tsclient copied to clipboard

:page_facing_up: Generate typescript client from WSDL

Results 47 wsdl-tsclient issues
Sort by recently updated
recently updated
newest added

Is there a way where we can do something before sending the soap message? In my use case, I need to get the soap body and then use this to...

The code generator is pretty nice. Probably the only well maintained one in the typescript ecosystem. Just noticed some type mismatch between generated typescript types and what we get as...

Thank You for the amazing work put into creating this tool. However, I had to fork this repo in order to make some tweaks to suit my use case. Here...

Hi there! Would it be possible to push an update that pins soap to ^1.0.0? Now that soap is 1.0, this should make future versioning easier to manage

If an element is set to `nillable="true`, we should be able to set the element as `null` to get the following XML result ```xml xsi:nil="true" ``` For now, the code...

If a message is null it was applying `"{}"`. This was giving an error of: 'invalid message definition for rpc style binding'. This is because in the soap client module...

~~This is the same issue with wsdl-to-ts. They both can't handle recursive definitions.~~ edit: MAX_STACK constant that defines the max iterations to find a non colliding name before giving up,...

bug

Hi! It looks to me like the generator does not support `xs:group` element type. For example, a definition like ``` ``` yields ``` /** PrimaryInsured */ export interface PrimaryInsured {...

My wsdl -> typescript script in `package.json` is this: ``` "generate": "npx wsdl-tsclient ./wsdl/**/*.wsdl -o ./generated" ``` Adapted from the example in the readme. But I get the message: ```...

Hi! I am currently tying to use the generated client inside my Angular web app. However, the issue I am facing is that I am unable to correctly load/import the...