I am trying to send request by using php soapclient.
xml part:
<Location>
    <a:Destination i:type="a:Country">
        <a:Id>277</a:Id>
    </a:Destination>
</Location>
My php request which is not working:
$params = array('Location' => array(
                  'type' => 'Country',
                  'Destination' => array(   
                      'Id' => '277'
                   )                        
              )
);
I couldn't find how to send i:type="a:Country" part within request. Will appreciate for your helps.
