Hi friends,
Im having trouble with a new version of WSDL/WebService provided from another business that we consume.
We are using EntireX 8.1.2 Eclipse Plugin for extract the IDL, and EntireX XML Rpc Server (version 8.1.2) on Linux RedHat Platform.
The case is when they provide the old version of webservices, an array structure was declared as below:
Since they published a new version of the webservices, the array structure declared became as below:
Problem: When i test the service at XML Tester (Eclipse Platform), then my provider JBOSS return an error of variable type sent, considering the default Sample XML created by the tester as below:
<dtFimRestricoes>
<string>stringUV</string>
<string>stringVT</string>
<string>stringBH</string>
<string>stringVQ</string>
<string>stringSC</string>
</dtFimRestricoes>
<dtInicioRestricoes>
<string>stringVI</string>
<string>stringDV</string>
<string>stringKW</string>
<string>stringXK</string>
<string>stringNI</string>
</dtInicioRestricoes>
When i change the sample test XML, then the service works well, see below:
<dtFimRestricoes>stringUV</dtFimRestricoes>
<dtFimRestricoes>stringVT</dtFimRestricoes>
<dtFimRestricoes>stringBH</dtFimRestricoes>
<dtFimRestricoes>stringVQ</dtFimRestricoes>
<dtFimRestricoes>stringSC</dtFimRestricoes>
<dtInicioRestricoes>stringVI</dtInicioRestricoes>
<dtInicioRestricoes>stringDV</dtInicioRestricoes>
<dtInicioRestricoes>stringKW</dtInicioRestricoes>
<dtInicioRestricoes>stringXK</dtInicioRestricoes>
<dtInicioRestricoes>stringNI</dtInicioRestricoes>
Question: How can i set the XMM declaration for work as the type that worked well?
Tanks in advance.
call_working_well.txt (2.84 KB)
call_with_error.txt (2.76 KB)