|
Posted by Johnny on 05/10/05 08:03
Searched on google for any info relating to this before posting here but
found none.
I set up a web service using nusoap on apache php 4.3.8 on windows with
error_reporting = E_ALL and had that service set a cookie in the client
browser as the first output.
Works fine in IE6 and the service returns the state of the cookie in the
client browser but in firefox 1.0 the exact same service gives a notice
error about an undefined variable like so:
<b>Notice</b>: Undefined index: Content-Type in <b>i:program filesapache
groupapachehtdocs nusoaplib
nusoap.php</b> on line <b>2468</b>
took a look at line 2468 in nusoap.php and as the notice says it's about the
content type header:
2468 if(strpos($this->headers['Content-Type'],'=')){
so since the exact same string, as follows, was sent from both IE and
firefox:
<?xml version="1.0" encoding="UTF-8"?><soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:n="urn:getsetcookie7wsdl"><soap:Body
soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n:getsetcook
ie7><name xsi:type="xsd:string">Department
4</name></n:getsetcookie7></soap:Body></soap:Envelope>
I'm wondering if anyone can shed light on why there would be a difference
in the response from nusoap.
It mystifies me. It is the exact same code running on the server
(apparently) processing the exact same input (windiff shows it to be
identical).
I can see from the input that neither sends the content type header so why
the different response to a message from IE to one from Firefox?
Thanks for your insight,
Johnny
Navigation:
[Reply to this message]
|