Difference between two soap requests

后端 未结 3 1262
小蘑菇
小蘑菇 2021-01-15 19:16

My SOAP Request




        
3条回答
  •  自闭症患者
    2021-01-15 20:05

    try the following

    $ns = 'http//ws.apache.org/namespaces/axis2'; //Namespace of the WS.
    //Body of the Soap Header.
    $headerbody = array('ServiceGroupId' => $UNIQUEID_Token);
    //Create Soap Header.       
    $header = new SOAPHeader($ns, 'axis2', $headerbody);             
    //set the Headers of Soap Client.
    $soap_client->__setSoapHeaders($header); 
    

提交回复
热议问题