How to change the serialization of Parameters???? -
07-07-2010
, 03:35 AM
I've to implement a webservice which was first implemented with java. One
Method takes an Array like this:
public List<RateResponseType> getValidRates(RatesParam[] param)
This means for the serialization that the xml would look like this:
<getValidRates xmlns="">
<param xmlns="">
<RatesParam occupancy="int" >
<RatesParam occupancy="int" >
</param>
</getValidRates>
In java the developer used three dots within the parameter which means one
or more. I would like to use the soapbody without the node param like in the
java version:
<getValidRates xmlns="">
<RatesParam occupancy="int" >
<RatesParam occupancy="int" >
</getValidRates>
So what do I have to change?
Regards
Carsten |