[Geoserver-users] SLD PointSymbolizer WellKnownName TTF Support

2012-03-01 Thread Peter Blanchard
Hello, I was wondering if the PointSymbolizer is supposed to be able to support the TTF and PropertyName substitution in a manner similar to the LineSymbolizer. In the LineSymbolizer, I can do the following: LineSymbolizer !-- Draw decoration -- Stroke

Re: [Geoserver-users] SLD PointSymbolizer WellKnownName TTF Support

2012-03-01 Thread Andrea Aime
On Thu, Mar 1, 2012 at 1:20 AM, Peter Blanchard pblanch...@pmatllc.com wrote: Hello, I was wondering if the PointSymbolizer is supposed to be able to support the TTF and PropertyName substitution in a manner similar to the LineSymbolizer. In the LineSymbolizer, I can do the following:  

[Geoserver-users] Problem with multivalued simple types mapping

2012-03-01 Thread alessandro marrone
Hello I have something like this view 'app': id name textdescriptiontime appr.1name_1abcdesc 2011-02-01T12:50:30Z appr.1name_2abcdesc 2011-02-01T12:50:30Z name is a multivalued attribute I need to obtain this:

[Geoserver-users] How to set up geoserver wfs-t security?

2012-03-01 Thread Robert Buckley
hi, I am trying to set up the following senario... ROLE_ADMINISTRATOR full read and write permission to all layers ROLE_USER1 = read access to only one workspace called rropx Eeveryone else = read access to all other workspaces EXCEPT the workspace rropx I have defined the configuration as

[Geoserver-users] geoserver 2.1.3 and postgis raster

2012-03-01 Thread Jean Pommier (IGE)
Hi all, I wondered : is there any postgis raster support yet in geoserver 2.1.3 ? I read a few posts about postgis raster support, but nothing really clear : what's the current status ? Planned for next release, available in trunk, already available but not documented ? Any existing and available

Re: [Geoserver-users] geoserver 2.1.3 and postgis raster

2012-03-01 Thread christian . mueller
There is a first implementation, look here http://docs.geotools.org/latest/userguide/library/coverage/pgraster.html If you want to use it with geoserver, you have to install the imagemosaic-jdbc extensions. Be warned, postgis raster is still a beta version. Cheers Christian Zitat von Jean

[Geoserver-users] Oracle permissions

2012-03-01 Thread Mark Hammond
Hi, We are connecting GeoServer to an Oracle database in order to publish tables. In keeping with good practices, we wanted to create an Oracle user with minimal permissions required to do the job for GeoServer to use. Creating a user with SELECT permissions on the tables we want to

[Geoserver-users] (no subject)

2012-03-01 Thread Olex Filevych
Hi, have a problem by publishing a layer. Following errow occures. Do someone know what it means. Thanks java.lang.RuntimeException: Error occurred while building the resources for the configuration page at org.geoserver.web.data.layer.NewLayerPage.buildLayerInfo(NewLayerPage.java:306) at

Re: [Geoserver-users] Oracle permissions

2012-03-01 Thread Michael Shishcu
Hi Mark, In order to access the databasethe user you create has to have other system grants, such as CONNECT, RESSOURCE etc. Also, probably, the should have to metadata of the layers (* USER_SDO_GEOM_METADATA*). Please check the Oracle Documentation for that regards, michael On Thu, Mar 1, 2012

Re: [Geoserver-users] Oracle permissions

2012-03-01 Thread Mark Hammond
Is there a definitive list anywhere? (Would be jolly useful addition to GeoServer Oracle Plugin documentation) From: Michael Shishcu [mailto:mickl...@gmail.com] Sent: 01 March 2012 14:33 To: Mark Hammond Cc: geoserver-users@lists.sourceforge.net Subject: Re: [Geoserver-users] Oracle

Re: [Geoserver-users] Oracle permissions

2012-03-01 Thread Andrea Aime
On Thu, Mar 1, 2012 at 4:56 PM, Mark Hammond mark.hamm...@bto.org wrote: Is there a definitive list anywhere? (Would be jolly useful addition to GeoServer Oracle Plugin documentation) We don't have one, the list of stuff that the store tries to access actually grew over time. First off, we

[Geoserver-users] GeoRSS style sheet

2012-03-01 Thread David R Robison
Is there a way to attach a style sheet to a GeoRSS so that it can be viewed directly in a browser such as firefox? David -- David R Robison Open Roads Consulting, Inc. 103 Watson Road, Chesapeake, VA 23320 phone: (757) 546-3401 e-mail: drrobi...@openroadsconsulting.com web:

Re: [Geoserver-users] Oracle permissions

2012-03-01 Thread Michael Shishcu
Hi Andrea, Mark an update to this just installed geoserver on my home laptop, with oracle plugin. later, log in into oracle as sysdba and create new user CREATE USER tst IDENTIFIED BY tst DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP; GRANT CREATE TABLE TO tst ; GRANT CREATE VIEW TO tst ;

Re: [Geoserver-users] I have broken my GetCapabilities

2012-03-01 Thread Gordon.Keith
If you have any image pyramids it could be related to https://jira.codehaus.org/browse/GEOS-4755. If geoserver has problems serving an image pyramid (bad image in pyramid or timeout due to overload) it overwrites the image pyramid properties with a version that breaks getcapability requests. I

[Geoserver-users] GeoWebCache geowebcache.xml bug? custom GridSet and applying it to a layer

2012-03-01 Thread cheesybiscuits
I'm having trouble understanding how GeoWebCache and GeoServer fit together when it comes to new GridSets - this may be a bug but I'm not sure. I have defined a new GridSet which seems fine (no more messages in GeoServer's log when I reload geowebcache.xml). I found out here:

Re: [Geoserver-users] App schema mapping gives error casting GeometryTypeImpl to ComplexType

2012-03-01 Thread Andrew Betlehem
Hi Ben, Thanks for the reply. I did what you suggested with the geometry property types and mapped it as (for example): AttributeMapping targetAttribute iso19112:position /targetAttribute sourceExpression OCQLwkb_geometry/OCQL

Re: [Geoserver-users] App schema mapping gives error casting GeometryTypeImpl to ComplexType

2012-03-01 Thread Andrew Betlehem
Hi Ben, We did grab the 2.2 snapshot, but that didn't turn out to solve the issue we were having. What actually happened was that we were including a 'schema.xsd' file in the workspace, which was ignoring gml when loading. This in turn made all our gml cast to the wrong types, which lead to

Re: [Geoserver-users] postgis SQL view - geography column not recognised

2012-03-01 Thread Ben Caradoc-Davies
Joshua, does the user you are connecting with have permission to select from the view geography_columns (introduced when support for geographies was added)? Can you select * from geography_columns as this user? For GeoServer to recognise geometry columns in views, they must be registered in

Re: [Geoserver-users] App schema mapping gives error casting GeometryTypeImpl to ComplexType

2012-03-01 Thread Ben Caradoc-Davies
Ouch. I have not tried using both schema.xsd and app-schema. On 02/03/12 09:53, Andrew Betlehem wrote: Hi Ben, We did grab the 2.2 snapshot, but that didn't turn out to solve the issue we were having. What actually happened was that we were including a 'schema.xsd' file in the workspace,

Re: [Geoserver-users] GeoWebCache geowebcache.xml bug? custom GridSet and applying it to a layer

2012-03-01 Thread Max Stephan
Hi, we experienced problems with our geowebcache.xml-configuration as well and could not make a layer to display on the demo-page of geowebcache. Tried many things till I found out that the order of the different attributes of a wmslayer in the configuration seems to be important. I found that