Closed (duplicate)
Project:
Web service client
Version:
7.x-1.0-beta2
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
6 Feb 2013 at 12:58 UTC
Updated:
11 Aug 2013 at 07:44 UTC
When you need to get SOAP headers from request the module does not implement this feature.
A possible solution would be (in wsclient_soap.module):
$output_headers = array();
$body = $client->__soapCall($operation, $arguments,$options = NULL,$input_headers = NULL,$output_headers);
$response = new stdClass;
$response->body = $body;
$response->header = $output_headers;
return $response;Then you could handle the header and body wherever you want.
Thoughts about this?
Comments
Comment #1
druvision commentedThis is duplicate of Issue #1250914 - Setting SOAP headers