Server: .NET Client: PHP

Doing a SoapClient::__getTypes() reveals:

Array ( [0] => struct VerifyTxn { anyType obj1; anyType obj2; anyType obj3; anyType obj4; } [1] => struct VerifyTxnResponse { string VerifyTxnResult; } [2] => struct VerifyHeader { string H1; string H2; string H3; } ) 

My PHP Soap Code:

$headerbody->H1 = '000000000113';
$headerbody->H2 = 'infi';
$headerbody->H3 = 'infi1';


$header = new SOAPHeader('http://example.com.np', 'VerifyHeader', $headerbody);  
$client->__setSoapHeaders($header);

$check  = $client->VerifyTxn( '7452', 'I2344', 'P1', '123' );

XML in asmpx file

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <VerifyHeader xmlns="http://www.example.com.np/">
      <H1>string</H1>
      <H2>string</H2>
      <H3>string</H3>
    </VerifyHeader>
  </soap12:Header>
  <soap12:Body>
    <VerifyTxn xmlns="http://www.example.com.np/">
      <obj1 />
      <obj2 />
      <obj3 />
      <obj4 />
    </VerifyTxn>
  </soap12:Body>
</soap12:Envelope>

The header parameters are being passed correctly.

Wanted to know how i should pass the parameters to VerifyTxn since doing a direct pass by value with strings is not working at all.

link|improve this question

59% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.