我正在尝试使用 REST API 上传形状文件。这是我得到的错误:没有这样的数据存储:ws1,nete
我已经安装了 1.7.5 版和 restconfig-1.7.5.jar 插件。
这是我所做的: 1) 创建工作区 ws1
curl -u admin:geoserver -v -XPOST -H 'Content-type: text/xml' -d 'ws1'localhost:8080/geoserver/rest/workspaces
2) 检查工作区
curl -XGET -H '接受:文本/xml' localhost:8080/geoserver/rest/workspaces/ws1
回复正常
3)上传shapefile
curl -u admin:geoserver -XPUT -H 'Content-type: application/zip' --data-binary @roads.zip localhost:8080/geoserver/rest/workspaces/ws1/datastores/roads/file.shp
回复:
警告:无法从文件“roads.zip”中读取数据,这会导致 POST 为空。解压文件时出错:打开 zip 时出错
需要帮助吗!!!