Ben SOAP ile aşağıdaki XML oluşturmak gerekiyor:
                    ...
               	<InternationalShippingServiceOption>
                        <ShippingService>StandardInternational</ShippingService>
                        <ShippingServiceCost currencyID="USD">39.99</ShippingServiceCost>
                        <ShippingServicePriority>1</ShippingServicePriority>
                        <ShipToLocation>CA</ShipToLocation>
                    </InternationalShippingServiceOption>
                    ...
Yani bunu yapmak için PHP aşağıdaki SOAP dizi var:
$params =   array(
         'InternationalShippingServiceOption' => array(
            'ShippingService'=>'StandardInternational',
            'ShippingServiceCost'=>39.99,
            'ShippingServicePriority'=>1,
            'ShipToLocation'=>'CA',
        )
    )
$client = new eBaySOAP($session); //eBaySOAP extends SoapClient
$results = $client->AddItem($params);
Ben XML ShippingServiceCost etiketi currencyID="USD" niteliğini üreten değilim dışında her şey, harika çalışıyor. Bunu nasıl yaparsınız?