Hi please tell me how to get reposnseI have a wsdl and i would like to call awebservice through itAlthough using soapUI i can get the reposnse but not throgh phpI am also giving the xml request that need to be made\[code\] <?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body> <q2:OneOffDeductionRequestMsg xmlns:q0="http://www.huawei.com/bme/accountmgr" xmlns:q1="http://www.huaweiommon" xmlns:q2="http://www.accountmgrmsg"> <RequestHeader> <q1:CommandId>OneOffDeduction</q1:CommandId> <q1:Version>1</q1:Version> <q1:TransactionId/> <q1:SequenceId>1</q1:SequenceId> <q1:RequestType>Event</q1:RequestType> <q1:SessionEntity> <q1:Name>NET</q1:Name> <q1assword>084912FA9733C4A0115D</q1assword> <q1:RemoteAddress>10.176.122.2</q1:RemoteAddress></q1:SessionEntity><q1:SerialNo>192741328589162212</q1:SerialNo></RequestHeader><OneOffDeductionRequest><q0:SubscriberNo>XXXXXX73</q0:SubscriberNo><q0:OperationID>4059999</q0:OperationID><q0:AdditionalInfo>VNET</q0:AdditionalInfo><q0eductAmt>100</q0eductAmt><q0:MinMeasureId>101</q0:MinMeasureId></OneOffDeductionRequest></q2:OneOffDeductionRequestMsg></soapenv:Body></soapenv:Envelope><?php $RequestHeader = array( 'CommandId' => 'OneOffDeduction', 'Version' => '1', 'TransactionId' => '34234', 'SequenceId' => '1', 'RequestType' => 'EVENT', 'SerialNo' => '1527013286284589162212'); $SessionEntity =array( 'Name' => 'V', 'Password' => 'v', 'RemoteAddress' =>'10.0.0.0'); $wsdl ="http://eAccountMgrService?wsdl"; $client = new SoapClient($wsdl); $param =array('SubscriberNo'=>'54321', 'OperationID' =>'4059999', 'AdditionalInfo'=>'VAS2NET', 'DeductAmt'=>'10', 'MinMeasurId'=>'101'); var_dump($client); $Result = $client->__call('OneoffDeduction',array( 'CommandId' => 'OneOffDeduction', 'Version' => '1', 'TransactionId' => '34234', 'SequenceId' => '1', 'RequestType' => 'ET', 'SerialNo' => '1527', 'sessionEntity' =>array( 'Name' => 'V', 'Password' => 'v', 'RemoteAddress' =>'10.0.0.0'))); var_dump($Result); echo $client->__getLastRequest(); $Response = $client->__call('OneoffDeduction',array('SubscriberNo'=>'54321','OperationID' =>'4059999',' AdditionalInfo'=>'VAET', 'DeductAmt'=>'10','MinMeasurId'=>'101')); echo $client->__getLastRequest(); ?>\[/code\]