5

我有一个地理服务器实例,其中包含我们的数据。通过 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'

这将返回预期的结果。

4

1 回答 1

4

我试图调查你的情况,但我没有服务器,所以我使用了http://demo.opengeo.org/geoserver/web/

获取测试: http://demo.opengeo.org/geoserver/wfs?service=wfs&version=1.1.0&request=GetCapabilities

我和你一样得到了完整的回应。

POST 测试:我使用http://www.hurl.it/的是因为我在 Windows 计算机上。使用以下参数:

<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"/>

我得到了与 GET 版本相同的响应。

你能用这个演示服务器尝试相同的测试吗?


更新

经过几条评论聊天,OP找到了自己的解决方案。POST 调用缺少必填的 Content-Type-Header 信息。

于 2014-07-28T21:12:06.797 回答