Anybody knows about documentation or examples that how copy files (workspaces,shapes,..) in geoserver usinG C#?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 2 down vote accepted

This C# code will create a new workspace on GeoServer.

using System;
using System.Net;
using System.IO;

...

string url = "http://localhost:8080/geoserver/rest/workspaces";
WebRequest request = WebRequest.Create(url);

request.ContentType = "text/xml";
request.Method = "POST";
request.Credentials = new NetworkCredential("admin", "geoserver");

byte[] buffer = Encoding.GetEncoding("UTF-8").GetBytes("<workspace><name>my_workspace</name></workspace>");
Stream reqstr = request.GetRequestStream();
reqstr.Write(buffer, 0, buffer.Length);
reqstr.Close();

WebResponse response = request.GetResponse();

...

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.

link|improve this answer
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.

link|improve this answer
Thanks but for me the page of Geoserver is not very helpfull. – JMG Aug 9 '11 at 6:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.