我有一个地理服务器实例,其中包含我们的数据。通过 GET 请求这个可以正常工作并返回预期的结果。但遗憾的是它不适用于 POST。
准确地说,这里是使用 GET 的 Capabilities 请求,它返回一个有效的 GetCapabilities-Response:
http://myserver:8080/geoserver/wfs?service=wfs&version=1.1.0&request=GetCapabilities
我用 wget 对此进行了测试,因此命令如下所示:
wget -O wfs 'http://myserver:8080/geoserver/wfs?service=wfs&version=1.1.0&request=GetCapabilities'
现在我尝试使用 POST 的 Capabilities-request。我创建了一个包含以下内容的请求(命名请求)文件:
<GetCapabilities
service="WFS"
xmlns="http://www.opengis.net/wfs"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wfs
http://schemas.opengis.net/wfs/1.1.0/wfs.xsd"/>
我使用以下 wget 对 Geoserver 运行:
wget -O wfs --post-file=request 'http://myserver:8080/geoserver/wfs'
但现在我得到一个 OWS 异常:
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.0" xsi:schemaLocation="http://www.opengis.net/ows/1.1 http://moa:8080/geoserver/schemas/ows/1.1.0/owsAll.xsd">
<ows:Exception exceptionCode="MissingParameterValue" locator="request">
<ows:ExceptionText>Could not determine geoserver request from http request org.geoserver.platform.AdvancedDispatchFilter$AdvancedDispatchHttpRequest@1e5c2cc</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
这看起来没有 POST 正文已发送或被忽略。我在这里错了什么?
编辑:好的,我解决了这个问题。问题是 Geoserver 需要一个 Content-Type-Header 来发布 XML 文件。所以正确的请求如下所示:
wget -O wfs --header='Content-Type: text/xml' --post-file=request.xml 'http://myserver:8080/geoserver/wfs'
这将返回预期的结果。