The generated template is:
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:Root xmlns:tns="x.y.z">
<tns:test>
<tns:myTest>1234</tns:myTest>
</tns:test>
</tns:Root>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
This is incorrect, and is rejected by the webservice. Since "test" and "myTest" are defined as form="unqualified", there should be no qualifier specified.
The following is accepted OK:
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<tns:Root xmlns:tns="x.y.z">
<test>
<myTest>12345</myTest>
</test>
</tns:Root>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
...is this a known problem? Am I missing something obvious?