在geoserver中用c#复制
有人知道如何使用 G C# 在地理服务器中复制文件(工作空间、形状等)的文档或示例吗?
Anybody knows about documentation or examples that how copy files (workspaces,shapes,..) in geoserver usinG C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此 C# 代码将在 GeoServer 上创建一个新工作区。
GeoServer 有关于如何使用 cURL 创建工作区、存储、图层和样式的示例: GeoServer cURL REST 配置示例。
然后您可以使用上面的代码转换 cURL 示例。
This C# code will create a new workspace on GeoServer.
GeoServer has examples on how to do create workspaces, stores, layers and styles using cURL: GeoServer cURL REST Configuration Examples.
Then you can convert the cURL examples using the code above.
查看 geoerver 的 REST API。向下滚动一点到“工作区”部分,您会注意到您需要将 GET/POST/PUT 方法发送到要创建/复制的工作区的服务器。
Take a look at the docs for geoerver's REST API. Scroll down a bit to the Workspaces section and you'll notice that you need to send a GET/POST/PUT method to the server for the workspace you want to create/copy.