GeoTools wms 模块错误
GeoTools wms module error
我正在使用 GeoTools(12.2) Wms 模块获取一些 wms 信息。当我为不同的 wms 服务器测试我的应用程序时,遇到了一个问题。
Wms 服务器 url : http://wms.geonorge.no/skwms1/wms.stedsnavn_fag
能力url:http://wms.geonorge.no/skwms1/wms.stedsnavn_fag?service=wms&request=getcapabilities
当我像下面这样定义 WebMapServer 对象时
wms = new WebMapServer(url);
收到此错误
错误下载位置:http://dbriap004/cgi-bin/stedsnavn_fag?service=WMS&version=1.3.0&request=GetSchemaExtension
这个不同没有定义link,和我的完全不同,我在capabilities文档中也看不到任何相关记录。你怎么看?我该怎么办?
谢谢
如果您查看 GetCapabilities 响应的第一行
<WMS_Capabilities xmlns="http://www.opengis.net/wms"
xmlns:sld="http://www.opengis.net/sld"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ms="http://mapserver.gis.umn.edu/mapserver" version="1.3.0"
xsi:schemaLocation="http://www.opengis.net/wms
http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd
http://www.opengis.net/sld
http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd
http://mapserver.gis.umn.edu/mapserver
http://dbriap006/cgi-bin/stedsnavn_fag?service=WMS&version=1.3.0&request=GetSchemaExtension">
您会看到服务器的所有者已将此 URL 指定为模式位置,因此 GeoTools 正在尝试下载您可能看不到的模式。我想你需要和服务器的所有者谈谈。
我正在使用 GeoTools(12.2) Wms 模块获取一些 wms 信息。当我为不同的 wms 服务器测试我的应用程序时,遇到了一个问题。
Wms 服务器 url : http://wms.geonorge.no/skwms1/wms.stedsnavn_fag
能力url:http://wms.geonorge.no/skwms1/wms.stedsnavn_fag?service=wms&request=getcapabilities
当我像下面这样定义 WebMapServer 对象时
wms = new WebMapServer(url);
收到此错误
错误下载位置:http://dbriap004/cgi-bin/stedsnavn_fag?service=WMS&version=1.3.0&request=GetSchemaExtension
这个不同没有定义link,和我的完全不同,我在capabilities文档中也看不到任何相关记录。你怎么看?我该怎么办?
谢谢
如果您查看 GetCapabilities 响应的第一行
<WMS_Capabilities xmlns="http://www.opengis.net/wms"
xmlns:sld="http://www.opengis.net/sld"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ms="http://mapserver.gis.umn.edu/mapserver" version="1.3.0"
xsi:schemaLocation="http://www.opengis.net/wms
http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd
http://www.opengis.net/sld
http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd
http://mapserver.gis.umn.edu/mapserver
http://dbriap006/cgi-bin/stedsnavn_fag?service=WMS&version=1.3.0&request=GetSchemaExtension">
您会看到服务器的所有者已将此 URL 指定为模式位置,因此 GeoTools 正在尝试下载您可能看不到的模式。我想你需要和服务器的所有者谈谈。