tags:

views:

292

answers:

2

Can I add a custom headers to the following headers

POST /InStock HTTP/1.1
Host: www.example.org
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn

<?xml version="1.0"?>
 .....

please any help ?

+1  A: 

Write an HttpModule to intercept WebService Response and add your custom header in the intercepted response stream.

this. __curious_geek
A: 

Yes, see this bug report, the answer is at 2010-07-23 05:59 UTC

http://bugs.php.net/bug.php?id=51551&amp;edit=2

Ed K