Tagged Questions
2
votes
2answers
267 views
Copying with c# in geoserver
Anybody knows about documentation or examples that how copy files (workspaces,shapes,..) in geoserver usinG C#?
2
votes
2answers
2k views
cURL with user authentication in C#
I want to do the following cURL request in c#:
curl -u admin:geoserver -v -XPOST -H 'Content-type: text/xml' \
-d '<workspace><name>acme</name></workspace>' \
...
2
votes
3answers
2k views
Generating Geo-Referenced Images in C#
I want to create some heat-map style tiles to overlay over our base maps using Open Layers. Basically, I want to divide some some bounding box into a grid, and display each square of the grid using a ...
0
votes
1answer
290 views
Error “The remote server returned an error: (501) Not Implemented.” Reloading geoserver with C#.
I´m trying to reload a geoserver directory and I´m getting the following error:
The remote server returned an error: (501) Not Implemented.
This is the code
WebRequest serverRequest ...
0
votes
2answers
181 views
Upload a folder to a directory server
I want to upload an entire folder keeping the same structure (folder, subfolders..) to a remote server. It´s necessary to iterate all folder or is possible to get the folder and upload to the server ? ...
0
votes
1answer
515 views
C# How to solve Web Client Upload file “The remote server returned an error: (405) Method Not Allowed.”?
Hello I want to upload a html file that is in my local to a remote folder in a server that contains a data dir with geoserver elements, and here is my code:
public void CopyWS(string SourcePath, ...
0
votes
1answer
185 views
Delete a workspace (geoserver) using curl and C#
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 ...