BadRomeo
asked on
Declare SoapAction
I see this code at the php soap site:
$client->__soapCall("SomeF unction", array($a, $b, $c),
array('soapaction' => 'some_action',
'uri' => 'some_uri'));
I am trying to pass the action with this code:
$action= array(
'soapaction' => 'http://****.com/SubmitComment'
);
print($client->SubmitComme nt($my_wra pper,$acti on));
but its not working... How do I pass a soapaction with this method?
$client->__soapCall("SomeF
array('soapaction' => 'some_action',
'uri' => 'some_uri'));
I am trying to pass the action with this code:
$action= array(
'soapaction' => 'http://****.com/SubmitComment'
);
print($client->SubmitComme
but its not working... How do I pass a soapaction with this method?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.