Sorry if this is a stupid question I am trying to send the following to the server in the wsdl below <ns4:DeleteMessages> <ns4:username>username</ns4:username> <ns4:password>password</ns4:password> <ns4:account>account</ns4:account> <ns4:ids> <ns4:string>string1</ns4:string> <ns4:string>string2</ns4:string> <ns4:string>string3</ns4:string> <ns4:string>string4</ns4:string> </ns4:ids> </ns4:DeleteMessages> from $delete_result = $proxy->DeleteMessages($username, $password, $account, $stringarray); but I get <ns4:DeleteMessages> <ns4:username>username</ns4:username> <ns4:password>password</ns4:password> <ns4:account>account</ns4:account> <ns4:ids> <ns4:string> <ns4:item>string1</ns4:item> <ns4:item>string2</ns4:item> <ns4:item>string3</ns4:item> <ns4:item>string4</ns4:item> </ns4:string></ns4:ids> </ns4:DeleteMessages> if you need the wsdl it is http://www.esendex.com/secure/messenger/soap/InboxServiceNoHeader.asmx?wsdl I do hope this is enough information, I am lost and I am hoping that there is a 1 line answer. -- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php