I am connecting to a WSDL service and passing an array of parameters. The problem I am having is that some of the parameters I need to pass need to be repeated. When I create a named array the last one consumes the previous ones.
WDSL
<s:complexType name="ArrayOfFees">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="Fee" nillable="true" type="tns:Fee"/>
</s:sequence>
</s:complexType>
Need to Create
<Fees>
<Fee>
<Name>AuctionLengthFee</Name>
<Fee currencyID="USD">1.0</Fee>
</Fee>
<Fee>
<Name>BoldFee</Name>
<Fee currencyID="USD">0.0</Fee>
</Fee>
...
</Fees>
I looked on at the php documentation and it looks like I can use classmap to solve my problem. But I can't get it to work. I have tried to find a better tutorial to explain it but I have failed.
I am new to classes, which might be part of the problem.