Opened 13 years ago
Closed 13 years ago
#92 closed defect (fixed)
SOAP support broken
Reported by: | Dimitar Misev | Owned by: | Dimitar Misev |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | petascope | Version: | |
Keywords: | Cc: | jpass@…, Peter Baumann | |
Complexity: | Medium |
Description
SOAP requests:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="http://www.opengis.net/wcs/2.0" xmlns:ns1="http://www.opengis.net/ows/2.0"> <SOAP-ENV:Header/> <SOAP-ENV:Body> <ns0:GetCapabilities> <ns1:AcceptVersions> <ns1:Version>2.0.0</ns1:Version> </ns1:AcceptVersions> <ns1:Sections> <ns1:Section>WCS</ns1:Section> </ns1:Sections> <ns1:AcceptFormats> <ns1:OutputFormat>text/plain; charset=UTF-8</ns1:OutputFormat> </ns1:AcceptFormats> <ns1:AcceptLanguages> <ns1:Language>en-GB</ns1:Language> </ns1:AcceptLanguages> </ns0:GetCapabilities> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
or
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="http://www.opengis.net/wcs/2.0"> <SOAP-ENV:Header/> <SOAP-ENV:Body> <ns0:DescribeCoverage version="2.0.0"> <ns0:Extension/> <ns0:CoverageId>bgs_rs</ns0:CoverageId> </ns0:DescribeCoverage> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
result in error:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ows:ExceptionReport version="2.0.0" xsd:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsExceptionReport.xsd" xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink"> <ows:Exception exceptionCode="NoApplicableCode"> <ows:ExceptionText>No suitable parser found.</ows:ExceptionText> </ows:Exception> </ows:ExceptionReport>
Note:
See TracTickets
for help on using tickets.
I have just submitted a patch.