SOAP utils for microservices at AXA Healthcare switzerland.
Install @axah/soap-utils
using the following command:
yarn add @axah/soap-utils
Wsdl-typegen can't handle includes like:
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soa.wgrintra.net/ch/architecture/OfferteEventPublish_1">
<xsd:include schemaLocation="./OfferteEventPublish_1.xsd"/>
</xsd:schema>
Change it to import instead:
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://soa.wgrintra.net/ch/architecture/OfferteEventPublish_1">
<xsd:import namespace="http://soa.wgrintra.net/ch/architecture/OfferteEventPublish_1" schemaLocation="./OfferteEventPublish_1.xsd"/>
</xsd:schema>