When consuming a .NET WCF webservice I get the following response (error):
Unsupported HTTP response status 415 Cannot process the message because t
i know this is an old post, but i ran in to this page looking for an answer.
application/soap+xml is the content-type passed when using SOAP 1.2, text/xml is used with SOAP 1.1,
application/soap+xml
text/xml
something like this should do the trick,
$client = new SoapClient("some.wsdl", array('soap_version' => SOAP_1_1));