SOAP server unable to handle request with references
| Bug #30994 | SOAP server unable to handle request with references | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2004-12-06 08:00 UTC | Modified: | 2004-12-14 15:04 UTC |
|
||||||||||
| From: | mirek dot novak at gmail dot com | Assigned: | dmitry (profile) | |||||||||||
| Status: | Closed | Package: | SOAP related | |||||||||||
| PHP Version: | 5.0.2 | OS: | Linux | |||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2004-12-06 08:00 UTC] mirek dot novak at gmail dot com
Description: ------------ SOAP server unable to handle request with references inside. -- SOAP request example -- <?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:tns="urn:anima:partner" xmlns:types="urn:anima:partner/encodedTypes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <tns:setPoznamka> <data href="#id1" /> </tns:setPoznamka> <q1:PoznamkaType id="id1" xsi:type="q1:PoznamkaType" xmlns:q1="urn:anima:partner:schema"> <kid xsi:type="xsd:string">1310</kid> <pozn xsi:type="xsd:string">jhgjfhfg</pozn> </q1:PoznamkaType> </soap:Body> </soap:Envelope> -- end of ex. -- problem is <data href="#id1" /> which is not properly handled. Server responded with SOAP error and additional message "looks like we got "Body" with several functions call".
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2004-12-06 09:16 UTC] danne at dotvoid dot com