Hi,
I have an Xfire-client that connects to a .NET service.
Xfire/JAXB produces the following soap body, is the embedded namespace "ns2"
necessary? Or even correct?
<soap:Body>
<GetBestAvailable xmlns="http://services.softix.com/nlsr/">
<performanceId xmlns="">EBEC2007637</performanceId>
<categoryId xmlns="">@0</categoryId>
<ns2:demand xmlns:ns2="http://services.softix.com/nlsr/">
<Demand>
<typeId>A</typeId>
<quantity>2</quantity>
</Demand>
</ns2:demand>
</GetBestAvailable>
</soap:Body>
This request breaks the .NET service.
Whereas the .NET client produces this:
<soap:Body>
<GetBestAvailable xmlns="http://services.softix.com/nlsr/">
<performanceId xmlns="">EBEC2007637</performanceId>
<categoryId xmlns="">@0</categoryId>
<demand xmlns="">
<Demand>
<typeId>A</typeId>
<quantity>2</quantity>
</Demand>
</demand>
</GetBestAvailable>
</soap:Body>
cheers,
Jamie