[Geoserver-users] Openlayers + geoserver WFS-T

2010-08-18 Thread apogliaghi
Hi all, I'm trying to use openlayers to edit features exported by geoserver via WFS-T. I was able to install and configure geoserver, I enabled wfs-t support (by setting WFS type to "transactional" in the admin gui page). To make sure everything was working fine before starting to play with op

Re: [Geoserver-users] Re st Configuration

2010-08-18 Thread Spirifer
Hi, Have a look at this extension in Java : http://svn.codehaus.org/geoserver/branches/2.0.x/src/extension/restconfig/ Spirifer KubaKuba wrote: > > Hi, > > I am using REST Configuration Plugin and curl software. It works pretty > smooth. The thing is that i would like to write java program

Re: [Geoserver-users] NullPointerException with strToUpperCase

2010-08-18 Thread Andrea Aime
alyssa wright ha scritto: > Hi, > > I am using the strToUpperCase function in my SLD. My SLD is valid and > displays appropriately in OpenLayers and the Styler module. However, if > I do a GetLegendGraphic request, I get a NullPointerException. If I > remove the strToUpperCase function fro

Re: [Geoserver-users] REST not able to edit style? (rest config example incorrect)

2010-08-18 Thread Perkola Paula
Hi Babi, I ran into similar difficulties when setting up raster coverages on GeoServer 2.0.2 via the REST API and found the following to solve the problem. Try adding 'true' to the style update command, so that it looks like this: "curl -u admin:geoserver -XPUT -H 'Content-type: text/xml' -d

Re: [Geoserver-users] Geoserver REST Question

2010-08-18 Thread christian . mueller
My Java application runs in its own VM and uses the Java URL class. I am testing against 2.0.x at the moment, works fine. I will switch to geoserver-trunk because of the new Virtual Table feature, doing it the same way. What the hell are you doing with a packet sniffer ?. I simply looked a

[Geoserver-users] REST not able to edit style? (rest config example incorrect)

2010-08-18 Thread Jody Garnett
Next suggestion is to title the message so that it gets the attention of REST developers :-) Barbara I have not personally used the REST api so I am going to drop out of the conversation at this point. Jody On 18/08/2010, at 10:13 PM, Barbara Cintoli wrote: > Hello, > > I am trying to change

Re: [Geoserver-users] Geotools error when getting feature

2010-08-18 Thread Jody Garnett
Hey Ben An update on this one; the schema ended up being GML2 based (and thus conflicting with the WFS 1.1/GML3 examples Linden found). For now we are reverting to GeoServer 1.3. Do you have any GML2 based tests for app-schema? Or is that outside of your testing. Jody On 16/08/2010, at 5:54 PM

Re: [Geoserver-users] Geoserver REST Question

2010-08-18 Thread Luca Morandini
On 18/08/10 18:18, Robert Hicks wrote: > Luca, thanks for the response. Actually my mail client put those in > separate lines, I ran everything in on one line. As far as the second > failed call goes, that is kind of what I figured, but just wanted to > try using an existing datastore. OK, but did

Re: [Geoserver-users] REST Setup on Ubuntu 10/Tomcat

2010-08-18 Thread James Beaudoin
Thanks for your response Ian. I am not running any proxying from apache. Is there a setting in Apache or Tomcat that I may be missing? Thanks, Jim Ian Turton wrote: > On Wed, Aug 18, 2010 at 12:54 AM, James Beaudoin wrote: > >> Geoserver is working fine except for REST. I was able to succ

Re: [Geoserver-users] Geoserver REST Question

2010-08-18 Thread Robert Hicks
Luca, thanks for the response. Actually my mail client put those in separate lines, I ran everything in on one line. As far as the second failed call goes, that is kind of what I figured, but just wanted to try using an existing datastore. Christian, did you write a java application to interface w

[Geoserver-users] Can I reduce the number of legend entries when using MaxScaleDenominator?

2010-08-18 Thread Robert Buckley
Hi, if my map shows vector data which is using Max/MinScaledenominator in it´s SLD file, the Legend entry appears once for every scale. This means that for even simple maps with just 10 layers the legend has 30 entries. Is it possible to reduce the Legend entries to just one...preferably just t

Re: [Geoserver-users] Rest Configuration

2010-08-18 Thread Jakub Rojek
hi, I have found out that one can create rest client automatically, but one need resource file to do so. Unfortunately I am not able to find it. does anyone have a clue where I can find it. Cheers Kuba On Aug 18, 2010, at 2:15 PM, christian.muel...@nvoe.at wrote: > First, please stay on

Re: [Geoserver-users] REST Setup on Ubuntu 10/Tomcat

2010-08-18 Thread Ian Turton
On Wed, Aug 18, 2010 at 12:54 AM, James Beaudoin wrote: > Geoserver is working fine except for REST.  I was able to successfully > send a curl command using php to a Geoserver REST instance on Windows. > When I try to send the same script to a Ubuntu 10 server with Tomcat 6 I > get this. > Are yo

Re: [Geoserver-users] NullPointerException with strToUpperCase

2010-08-18 Thread alyssa wright
If at all relevant, I have some other styles that use a centroid function that don't throw a NullPointerException. Thanks, Alyssa. On 8/18/10 10:29 AM, alyssa wright wrote: > Hi, > > I am using the strToUpperCase function in my SLD. My SLD is valid and > displays appropriately in OpenLayers

[Geoserver-users] NullPointerException with strToUpperCase

2010-08-18 Thread alyssa wright
Hi, I am using the strToUpperCase function in my SLD. My SLD is valid and displays appropriately in OpenLayers and the Styler module. However, if I do a GetLegendGraphic request, I get a NullPointerException. If I remove the strToUpperCase function from my SLD, I am error free. Following

Re: [Geoserver-users] Rest Configuration

2010-08-18 Thread christian . mueller
First, please stay on the mailing list, otherwise we would miss some hints from others. Same situation for me, I have about 900 layers/style sheets which I have to configure. Google "java url tutorial", I found http://download.oracle.com/javase/tutorial/networking/urls/readingWriting.html as

Re: [Geoserver-users] Layer Style

2010-08-18 Thread Barbara Cintoli
Hello, I am trying to change the style associated with a Shapefile. I created a new style using graphical interface and I entered it in the list of styles. The steps to add a new style in Geoserver, using graphics interface are: - Select "Style"; - "Add new style"; - Insert name and its text; - P

Re: [Geoserver-users] Geoserver REST Question

2010-08-18 Thread christian . mueller
I configure geoserver with a java utility, no curl needed at all, Java has all you need :-) If you have problems coding with Java, please ask, I have simple to look up in my code. Quoting Robert Hicks : > Thanks for the responses everyone! I am on Windows using DOS, sorry > should have said

Re: [Geoserver-users] Serving JPEG2000 image tiles from geoserver

2010-08-18 Thread Simone Giannecchini
Dear Suvajit, please, read below --- Ing. Simone Giannecchini GeoSolutions S.A.S. Founder Via Carignoni 51 55041  Camaiore (LU) Italy phone: +39 0584983027 fax:      +39 0584983027 mob:    +39 333 8128928 http://www.geo-solutions.it http:/

Re: [Geoserver-users] Rest Configuration

2010-08-18 Thread christian . mueller
If you need a GUI, why do you not use the Geoserver Admin GUI ? REST configuration is useful in scripts and for batch configurations (that is what I do using Java). Why do you want to create an additional GUI for admin actions ?. Quoting Jakub Rojek : > Hi, > > I am using REST Configuration Pl

Re: [Geoserver-users] which is the best method to create raster base map?

2010-08-18 Thread christian . mueller
Hi Robert, I had a similar problem serving maps of Austria. (The whole country) Since I am the maintainer of the imagemosaic jdbc module, I can assist you if you want to store your image data in a jdbc database. If you feel better to use files, Simone should assist you. 1) Do you have the i

[Geoserver-users] Rest Configuration

2010-08-18 Thread Jakub Rojek
Hi, I am using REST Configuration Plugin and curl software. It works pretty smooth. The thing is that i would like to write java program that would do the same as curl, but would have gui for the people that do not really like to write scripts in Shell. Do you know how I can do it? Thanks in