consuming asp.net asmx web service in java
843833Feb 23 2009 — edited Feb 26 2009I am consuming a asp.net asmx web service in java.
Service Method uses an xml schema as request parameter.
The schema structure of xml message that is passed to web service is like under root node there is 0 to unbounded collection of xml array.
<root>
<fields>
<field1 key1="val1" key2="val2"><field1>
<field2 key1="val1" key2="val2"><field2>
<fields>
<root>
Here <fields> node contains more than one collection of <field> objects.
I contruct request message object , then fields and then assign it multiple field objects.But unable to get it on server side(asp.net asmx).
I have all code correct.
Any suggestions.
Do i need some extra arrangement.
Do comment on it.