We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74b2cdd + fd049d8 commit df6db59Copy full SHA for df6db59
proxy.php
@@ -260,6 +260,10 @@
260
// Pass through the Content-Type header
261
array_push($headers, "Content-Type: ".$_SERVER['CONTENT_TYPE'] );
262
}
263
+ if ( isset($_SERVER['HTTP_SOAPACTION']) ) {
264
+ // Pass through the SOAPAction header
265
+ array_push($headers, "SOAPAction: ".$_SERVER['HTTP_SOAPACTION'] );
266
+ }
267
if ( isset($_SERVER['HTTP_X_USER_AGENT']) ) {
268
// Pass through the X-User-Agent header
269
array_push($headers, "X-User-Agent: ".$_SERVER['HTTP_X_USER_AGENT'] );
0 commit comments