Anybody knows about documentation or examples that how copy files (workspaces,shapes,..) in geoserver usinG C#?
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|