lilajlimagej
New Member
I'm trying to use a webservice SOAP in Java with a DTO that has an \[code\]HashMap<Integer, Integer>\[/code\] inside it. The problem is that in PHP I have \[code\]$var = array(1=>1);\[/code\] but the map has no values when it "arrives" to Java.I've tried different things and I've read that "An array in PHP is actually an ordered map". (php.net)The xml in soapUI of the service is like\[code\]<hashmap_tag> <entry> <key>?</key> <value>?</value> </entry></hashmap_tag>\[/code\]What am I missing here?