I need to automatically (using python) upload a shapefile into my geoserver.
I'm trying to do as described in here but i'm getting this error:
java.io.IOException: Wrong magic number, expected 9994, got 1347093252* Connection #0 to host localhost left intact
I'm sending this:
curl -u admin:geoserver -v -XPUT -H 'Content-type: application/zip' --data-binary @C:/x/test_data/localfile.zip http://localhost:8081/geoserver/rest/workspaces/test_VN/datastores/maisum/file.shp
-
what is the actual request you are sending?Ian Turton– Ian Turton2012年11月27日 10:45:35 +00:00Commented Nov 27, 2012 at 10:45
-
iant, check my edit in the question.vascobnunes– vascobnunes2012年11月27日 10:53:16 +00:00Commented Nov 27, 2012 at 10:53
2 Answers 2
I take it you're using Windows? Could you try using double quotes instead of single quotes?
curl -u admin:geoserver -v -XPUT -H "Content-type: application/zip" \
--data-binary @C:/x/test_data/localfile.zip \
http://localhost:8081/geoserver/rest/workspaces/test_VN/datastores/maisum/file.shp
I think the problem is that Windows is ignoring the Content type as it's enclosed in single quotes. Therefore, Geoserver does not treat the file as zip. From the Windows command shell documentation:
... any argument that contains spaces or begins or ends with spaces must be enclosed in double quotes. This is particularly important when using long file and directory names, which frequently contain one or more spaces. If a double-quoted argument itself contains a double quote character, the double quote must be doubled. For example, enter "Quoted" Argument as """Quoted"" Argumen
(削除)
Found this at the Geoserver mailing list.
Sometimes after repeated failed uploads some files can linger around on the server that cause problems. Go to your GEOSERVER_DATA_DIRECTORY and remove any lingering files from the "data" directory under it. Then try again.
Hopefully, that should help solve your problem.
(削除ここまで)
-
hmm, no luck. I still got the same problem.vascobnunes– vascobnunes2012年11月27日 12:15:01 +00:00Commented Nov 27, 2012 at 12:15
-
Oh, what version of Geoserver are you using btw? And have you ever successfully uploaded a file or is this your first attempt?R.K.– R.K.2012年11月27日 12:24:23 +00:00Commented Nov 27, 2012 at 12:24
-
I uploaded a lot of files but not programaticaly. first time with that. My geoserver is v2.2.2vascobnunes– vascobnunes2012年11月27日 12:26:47 +00:00Commented Nov 27, 2012 at 12:26
-
Updated my answer. I think it's the quotes that did it.R.K.– R.K.2012年11月27日 12:35:35 +00:00Commented Nov 27, 2012 at 12:35
-
even if the answer is already found i would like to point to an nice article about adding layers to Geoserver using curl for the users who are still searching for some more information about that: http://boundlessgeo.com/2012/10/adding-layers-to-geoserver-using-the-rest-api/