You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Executing a GetRecordById, including the Id element, request via HTTP POST throws an exception with the text: CSW: The Id parameter is missing.
To Reproduce
Steps to reproduce the behavior:
Send a HTTP POST request with a valid Id to your CSW instance, e.g. <GetRecordById service="CSW" version="2.0.2" xmlns="http://www.opengis.net/cat/csw/2.0.2" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:ogc="http://www.opengis.net/ogc" xmlns:ows="http://www.opengis.net/ows" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>yourID</Id> <ElementSetName>full</ElementSetName> </GetRecordById>
Expected behavior
If the Id element is in the request and is valid, I expect to get a GetRecordByIdResponse instead of an Exception Report
The text was updated successfully, but these errors were encountered:
Hi and thanks for the quick response.
The problem here is that the HTTP POST body is not processed, the HTTP GET request you mentioned is working well. We want/have to provide the HTTP POST method, only providing HTTP GET is not working on the client side
Describe the bug
Executing a GetRecordById, including the Id element, request via HTTP POST throws an exception with the text: CSW: The Id parameter is missing.
To Reproduce
Steps to reproduce the behavior:
Send a HTTP POST request with a valid Id to your CSW instance, e.g.
<GetRecordById service="CSW" version="2.0.2" xmlns="http://www.opengis.net/cat/csw/2.0.2" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:ogc="http://www.opengis.net/ogc" xmlns:ows="http://www.opengis.net/ows" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>yourID</Id> <ElementSetName>full</ElementSetName> </GetRecordById>
Expected behavior
If the Id element is in the request and is valid, I expect to get a GetRecordByIdResponse instead of an Exception Report
The text was updated successfully, but these errors were encountered: