I searched and didn't found how can I delete a workspace using curl and C#,

I can create a workspace with Curl and C# but I don“t know if I can delete the workspace using the same tools

Thanks in advance

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

        request.ContentType = "text/xml";
      request.Method = "DELETE";


        string authInfo = "xxxx:xxxxxxx";

        request.Headers["Authorization"] = "Basic " + Convert.ToBase64String(Encoding.ASCII.GetBytes(authInfo));

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

        WebResponse response = request.GetResponse();
link|improve this question
Show us some code! What works? What doesn't work? – Gabe Jul 29 '11 at 11:55
feedback

1 Answer

up vote 0 down vote accepted

If you can create a workspace programatically, you should be able to delete one (assuming proper credentials).

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 DELETE method to the server for the workspace you want to delete.

Since you have your create working, you should have all the code you need in order to get the DELETE working.

EDIT

After taking a look at the code, I would change the request to use the URL

http://xxxxxxxxxxx:8080/geoserver/rest/workspaces/testWorkspace

and see if you still get a 405 when executing the delete.

link|improve this answer
Thanks Gabe and Brian I´m using request.Method = "DELETE"; but in the WebResponse I get this message "The remote server returned an error: (405) Method Not Allowed." – Joe Jul 29 '11 at 12:16
According to the documentation that I linked, you'll get 405 if you don't specify the workspace to delete in your post. – Brian Dishaw Jul 29 '11 at 12:21
What is the url you are sending the HTTP request to? It should be something like /workspaces/<ws> where <ws> is the workspace you want to delete. – Brian Dishaw Jul 29 '11 at 12:23
Sorry I edit my question with the code Thanks Brian – Joe Jul 29 '11 at 12:36
Updated answer. – Brian Dishaw Jul 29 '11 at 15:29
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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