we have problems in WebService -> .NET response
Response look OK in XMLSpy and tcpTrace
<m:AGW014N1Resp onse xmlns:m="urn:co m-softwareag-entirex-rpc:AGW014N1">< ArrayOfMAA SOAP-ENC:arrayType=" MAA[100]" xsi:type="SOAP-ENC:Array"><MAA ><MAATUNNUS xsi:type="xsd:s tring">AT</MAATUNNUS><MAAN IMI xsi:type="xsd:s tring">IT#VALTA </MAANIMI></MAA><MAA><MAATU NNUS xsi:type="xsd:s tring">BE</MAATUNNUS><MAAN IMI xsi:type="xsd:s tring">BELGIA</MAANIMI></MAA><MAA><MAATU NNUS xsi:type="xsd:s tring">DE</MAATUNNUS><MAAN IMI xsi:type="xsd:s tring">SAKSA</MAANIMI></MAA></ArrayOfMAA
When trying in .NET it shows error
"There is an error in XML document (1, 435)."
"The specified type was not recognized: name='MAA', namespace='', at <ArrayOfMAA xmlns=''>.
which is this tag <ArrayOfMAA SOAP-ENC:arrayType=" MAA[100]" xsi:type="SOAP-ENC:Array"
It seems that .NET doesn't like SOAP-ENC:arrayType=" MAA[100]" -part
In JAVA environment this seems to work correctly. Is there any way to get this working in .NET ?
Response look OK in XMLSpy and tcpTrace
<m:AGW014N1Resp onse xmlns:m="urn:co m-softwareag-entirex-rpc:AGW014N1">< ArrayOfMAA SOAP-ENC:arrayType=" MAA[100]" xsi:type="SOAP-ENC:Array"><MAA ><MAATUNNUS xsi:type="xsd:s tring">AT</MAATUNNUS><MAAN IMI xsi:type="xsd:s tring">IT#VALTA </MAANIMI></MAA><MAA><MAATU NNUS xsi:type="xsd:s tring">BE</MAATUNNUS><MAAN IMI xsi:type="xsd:s tring">BELGIA</MAANIMI></MAA><MAA><MAATU NNUS xsi:type="xsd:s tring">DE</MAATUNNUS><MAAN IMI xsi:type="xsd:s tring">SAKSA</MAANIMI></MAA></ArrayOfMAA
When trying in .NET it shows error
"There is an error in XML document (1, 435)."
"The specified type was not recognized: name='MAA', namespace='', at <ArrayOfMAA xmlns=''>.
which is this tag <ArrayOfMAA SOAP-ENC:arrayType=" MAA[100]" xsi:type="SOAP-ENC:Array"
It seems that .NET doesn't like SOAP-ENC:arrayType=" MAA[100]" -part
In JAVA environment this seems to work correctly. Is there any way to get this working in .NET ?
Comment