Re: [Geoserver-users] data directory

2012-05-13 Thread Charles Galpin
If you have been using the deployed geoserver without configuration, then the data dir is under tomcat/webapps/geoserver/data. Copy that somewhere on the new machine and see the link Imran gave. hth charles On May 13, 2012, at 1:14 PM, Shad wrote: hi i cannot find the data-dir of the

Re: [Geoserver-users] data directory

2012-05-13 Thread Charles Galpin
I recommend you try setting up a new server and see what happens - it should become very clear. Everything that is not in the database (which means all your geoserver configuration and store/workspace/layer meta data and styles) is in the data dir. charles On May 13, 2012, at 2:03 PM, Shad

Re: [Geoserver-users] Another CSS question

2012-05-11 Thread Charles Galpin
Hi Chris You take advantage of the cascading rules in CSS so you would default it to zero, then add a rule to rotate. I believe something like this will work * { mark-rotation: 0 ... } [fixedspeed != 0] { mark-rotation: [toDegrees(angle)]; } hth charles On May 11, 2012, at 8:23 AM,

Re: [Geoserver-users] Sorry, You session timed out....

2012-05-10 Thread Charles Galpin
Check your logs - this happened to me when I ran out of permgen space. hth charles On May 10, 2012, at 11:27 AM, Mustafa646 wrote: I have published 50+ layers in GeoServer. Its working perfect. But when I click on Layers. I can see all the layers on first page. But when i click on next

[Geoserver-users] Cloning a workspace

2012-04-27 Thread Charles Galpin
I know I have asked this before, but far more often than I'd like I have the need to clone a workspace. Yes, essentially everything is identical except the DB name on the store (and the name of the workspace of course). I know there is a rest api but haven't been given time to automate this,

Re: [Geoserver-users] Cloning a workspace

2012-04-27 Thread Charles Galpin
considering adding more virtual “iron” to our setup should this be necessary. This is when the request from Charles Galpin becomes relevant. What if we suddenly wanted to copy our complete setup to another server? I would suggest two command line level functions: exportsetup –f filename.zip

Re: [Geoserver-users] Installing JAI on x64 Machine

2012-04-26 Thread Charles Galpin
Filipe I haven't compared both ways, but I asked this at FOSS4GNA and Andrea said he expected the x86 JRE with the JAI stuff would be faster than the 64 bit JRE alone. hth charles On Apr 23, 2012, at 5:31 PM, Filipe wrote: Hello everyone. im installing a geoserver in a prodution Environment.

Re: [Geoserver-users] Quick easy? Question

2012-04-03 Thread Charles Galpin
this is how to stack symbolizers in CSS. Don't forget a repeated z-index property if you need to control render order. -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Apr 2, 2012 at 11:50 AM, Charles Galpin cgal...@lhsw.com wrote: My use case might be different, but here is what I

Re: [Geoserver-users] Quick easy? Question

2012-04-02 Thread Charles Galpin
Haha, you beat me to it! I tried this once and couldn't get it to work so I'd love to see this too (and I'm also a big fan of the CSS module). Thanks, charles On Apr 2, 2012, at 9:46 AM, Chris Haste wrote: Thank you David, Ok, as an avid fan of your CSS module my next question would be

Re: [Geoserver-users] Quick easy? Question

2012-04-02 Thread Charles Galpin
] { mark: symbol('circle'); } [@scale 10] { stroke: black; fill: grey; } Please let me know if you run into problems with it. -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Apr 2, 2012 at 9:48 AM, Charles Galpin cgal...@lhsw.com wrote: Haha, you beat me

Re: [Geoserver-users] Geoserver and SQL Server 2008

2012-03-29 Thread Charles Galpin
Did you download and install the sql server plugin as well? http://downloads.sourceforge.net/project/geoserver/GeoServer%20Extensions/2.1.3/geoserver-2.1.3-sqlserver-plugin.zip charles On Mar 28, 2012, at 10:41 AM, Tsunanya wrote: The scope is query data from sql db inside Geoserver. I

[Geoserver-users] UOM and CSS (was Re: SLD Geometry Offset Transform in Pixels ?)

2012-03-22 Thread Charles Galpin
Oooh, I haven't seen UOM before - can this be used from the css module? On Mar 22, 2012, at 5:27 AM, Andrea Aime wrote: Check out the Unit Of Measurement attribute (http://docs.geoserver.org/latest/en/user/styling/sld-extensions/uom.html). Not sure whether it can be applied to your filter,

Re: [Geoserver-users] css Question

2012-03-16 Thread Charles Galpin
Chris, I'm not sure if you got an answer or not, but this works today. In fact the snippet he shows below should do exactly what you asked for - notice the line break is quoted so it is retained. hth charles On Mar 15, 2012, at 1:16 PM, Chris Haste wrote: Thanks for the quick response

Re: [Geoserver-users] css Question

2012-03-16 Thread Charles Galpin
Is the text positioned ok when you use SLD? The CSS module just generates SLD so if it works with hand generated SLD, then perhaps it is not in GeoTools but a difference between the SLD. charles On Mar 16, 2012, at 9:23 AM, Andrea Aime wrote: On Fri, Mar 16, 2012 at 1:57 PM, Chris Haste

Re: [Geoserver-users] The best tool for editing SLD XML text

2012-03-06 Thread Charles Galpin
I don't have an answer for this, but wanted to make sure you knew about the CSS styling module if you haven't tried it. http://docs.geoserver.org/stable/en/user/community/css/index.html I found the SLD very verbose and hard to manage (my styles grew over 1000 lines). The CSS module allows you

Re: [Geoserver-users] GeoServer 2.1.2 - Out of Memory

2011-12-05 Thread Charles Galpin
On Dec 5, 2011, at 4:03 AM, wwsmith wrote: No - the log stands on PRODUCTION_LOGGING - I have to change it to DEAFULT_LOGGING first In case you didn't know, you can do this without restarting the server. hth charles

[Geoserver-users] copy store (and it's layers)

2011-11-30 Thread Charles Galpin
I'd like to copy/clone a datastore to give access to a copy of my database for testing with all the same layers I have defined. Looking at datastore.xml it seems I'd need to simply 1. Shutdown geoserver 2. recursively copy the store directory to the new store name 3. In the new store, a)

Re: [Geoserver-users] copy store (and it's layers)

2011-11-30 Thread Charles Galpin
invest some time to create REST scripts/clients, exercises like deep copying a datastore are quite easy and you do not have to bother about the ids. Christian Zitat von Charles Galpin cgal...@lhsw.com: I'd like to copy/clone a datastore to give access to a copy of my database

Re: [Geoserver-users] GML in GeoServer?

2011-11-21 Thread Charles Galpin
Andrea, are there any example data stores you'd recommend looking at to use as a guide/skeleton for implementing a pure java datastore? We are considering doing this for one of our data sets. Thanks, charles On Nov 21, 2011, at 8:57 AM, Andrea Aime wrote: As another option one could use the

Re: [Geoserver-users] GML in GeoServer?

2011-11-21 Thread Charles Galpin
Thanks! On Nov 21, 2011, at 9:36 AM, Andrea Aime wrote: On Mon, Nov 21, 2011 at 3:14 PM, Charles Galpin cgal...@lhsw.com wrote: Andrea, are there any example data stores you'd recommend looking at to use as a guide/skeleton for implementing a pure java datastore? We are considering doing

Re: [Geoserver-users] Help me get started

2011-11-17 Thread Charles Galpin
Go to whatismyip.com from your desktop and try the IP it shows. But you may have windows firewall blocking port 8080 or an upstream router needing configuration to forward this port to your machine. None of this is geoserver related though. hth charles On Nov 17, 2011, at 6:50 AM, steff

Re: [Geoserver-users] geometry table

2011-10-12 Thread Charles Galpin
On Oct 12, 2011, at 4:52 AM, Ben wrote: I have a PostGIS database that has two tables. The first table contains geometry, and the second table is connected to the first with a many to many relationship. I would like to expose the second table to GeoServer, and I am wondering what the best

Re: [Geoserver-users] [geowebcache-users] Memory Leak

2011-10-10 Thread Charles Galpin
, but if it is not jvm, where does it come from ? Postgres 9.1 ? What should I do ? On Mon, Oct 10, 2011 at 3:24 PM, Charles Galpin cgal...@lhsw.com wrote: On Oct 10, 2011, at 9:21 AM, Micka wrote: and the actual memory state of the server : http://imageshack.us/photo/my-images/571/memoryleak4.png

Re: [Geoserver-users] Migrating to 2.1.2 without the pain.

2011-10-07 Thread Charles Galpin
Tony, it's been a while since I looked, but when I started I too got the same impression. However it's pretty straight forward. 1. Use an external data directory. The docs cover how to do this and test it works before upgrading 2. Backup your data dir. When you upgrade it makes changes that may

Re: [Geoserver-users] Geoserver jetty behind IIRF

2011-10-07 Thread Charles Galpin
Hi Lucas On Oct 7, 2011, at 4:30 AM, Lucas Heezen - Covadis wrote: Hello, I’m trying to get Geoserver windows service to work behind a proxy (IIRF). It works with IIRF but when I submit a form I get a 404 error. Here is my IIRF.ini: ProxyPass ^/geoserver(.*)$

Re: [Geoserver-users] Geoserver Windows Service in 64-bit

2011-10-05 Thread Charles Galpin
Your problem looked to be simply oracle setup related, which I know nothing about. But I just wanted to point out that we run geoserver just fine here on Windows Server 2008 R2 Standard (64bit) without oracle. I also wanted to mention that when you go to production, everything I have read

Re: [Geoserver-users] Troubleshooting malformed layers

2011-10-05 Thread Charles Galpin
On Oct 5, 2011, at 8:24 AM, John Brisbin wrote: 8. We go to Layer Preview, and choose to view the layer as OpenLayers, and get not the preview map, but a download dialog asking if we want to save an xml file. This response is the same for all the WMS formats. The WFS format at least

Re: [Geoserver-users] Troubleshooting malformed layers

2011-10-05 Thread Charles Galpin
On Oct 5, 2011, at 8:49 AM, John Brisbin wrote: java.lang.NullPointerException Time to look at the logs. If you don't see enough detail increase the level http://docs.geoserver.org/latest/en/user/webadmin/server/globalsettings.html Regarding the single layer vs 30 layers...this

Re: [Geoserver-users] Troubleshooting malformed layers

2011-10-05 Thread Charles Galpin
On Oct 5, 2011, at 10:11 AM, John Brisbin wrote: I'm not sure how to expose all the attributes? Following my original scenario, I added a new resource, which allowed me to select the one shapefile table from the PostGIS store. At what point am I able to expose all the attributes? Do you

Re: [Geoserver-users] Troubleshooting malformed layers

2011-10-05 Thread Charles Galpin
On Oct 5, 2011, at 10:44 AM, John Brisbin wrote: (1) malformed layer: after setting the log levels, then shutting down tomcat, shifting the logs, and re-starting tomcat...voila! the layer simply displays in preview...nothing else has been changed.

Re: [Geoserver-users] Production server specs for GeoServer?

2011-09-19 Thread Charles Galpin
On Sep 19, 2011, at 9:02 AM, Tito, Joseph wrote: I was wondering if anyone here had any tips/documentation/links on how much server power is required to run GeoServer in a production environment with 500+ users. I’m currently close to implementing GeoServer into production, and I want to

[Geoserver-users] GWC grid sets and expiring tiles with GeoRSS

2011-09-15 Thread Charles Galpin
Hi all I'd like to use the built in geowebcache integration with geoserver if I can, but either way I have a few questions. I asked on the geowebcache list a few days ago and didn't get any bites so I figured I'd try here. Some background: I have a layer that has it's data refreshed every

[Geoserver-users] Advanced logging questions

2011-09-08 Thread Charles Galpin
For some reason I didn't see the production logging profile under the logging profiles on the global settings page which sent me looking for the log4J files so I could add one because they were not under $GEOSERVER_DATA_DIR/logs (this is a .war deployment) . I finally found them under the

Re: [Geoserver-users] Advanced logging questions

2011-09-08 Thread Charles Galpin
I started tomcat using the startup script (instead of as a service) and it did indeed copy the logging profiles to the $GEOSERVER_DATA_DIR/logs directory so it seems it's a difference in working directory on startup as a service. On Sep 8, 2011, at 11:13 AM, Charles Galpin wrote: 1. Do

Re: [Geoserver-users] Re-quest for advice on basic data management strategies in GeoSever

2011-09-07 Thread Charles Galpin
I haven't used the rest api but that sounds like what you want. However I wanted to mention two things. 1. I'd be interested in seeing a layer copy feature to be able to quickly setup a new layer that was very similar to an existing one, but change some attributes (including store/layer) 2.

Re: [Geoserver-users] [postgis-users] simple puffer script

2011-08-23 Thread Charles Galpin
it interactively..ie the user does it from my geoext viewport? I was looking for examples of such apps if there are any? thanks, Rob Von: Charles Galpin cgal...@lhsw.com An: PostGIS Users Discussion postgis-us...@postgis.refractions.net Gesendet: Dienstag, den 23. August 2011, 19:49

[Geoserver-users] 502 Proxy error on large responses

2011-08-19 Thread Charles Galpin
I know this is not directly geoserver related but I am hoping someone has run into this. I am using apache httpd as a reverse proxy in front of geoserver and everything normally works fine except for one request which fails with a i have tried increasing the Timeout and ProxyTimeout but I

Re: [Geoserver-users] Problem Layer preview with Qgis shp

2011-08-11 Thread Charles Galpin
This file contains an exception message. Open it in a text editor and see what it says, or check the logs for even more detail. If it's not clear what's wrong after looking at that, then post the message here and I am sure someone can assist. hth charles On Aug 11, 2011, at 6:45 AM, del

Re: [Geoserver-users] org.geoserver.platform.ServiceException: 1 feature types requested, but found 2 view params specified.

2011-08-04 Thread Charles Galpin
On Aug 4, 2011, at 3:38 AM, Andrea Aime wrote: On Wed, Aug 3, 2011 at 9:40 PM, Charles Galpin cgal...@lhsw.com wrote: I have a OWS/WFS query to a sql view based layer that works fine on a 2.1-RC2 system but not on a 2.1.1 system which was setup using the same layer config copied over from

Re: [Geoserver-users] org.geoserver.platform.ServiceException: 1 feature types requested, but found 2 view params specified.

2011-08-04 Thread Charles Galpin
I have created an issue with a patch for this page with a few improvements. Please let me know if I should have done anything differently, as I plan to try help supplement the docs as I can, especially the CSS styling module. GEOS-4700 thanks, charles On Aug 4, 2011, at 3:38 AM, Andrea Aime

[Geoserver-users] org.geoserver.platform.ServiceException: 1 feature types requested, but found 2 view params specified.

2011-08-03 Thread Charles Galpin
I have a OWS/WFS query to a sql view based layer that works fine on a 2.1-RC2 system but not on a 2.1.1 system which was setup using the same layer config copied over from the 2.1-RC2 system. I have no idea if the version is an issue other than this is the only difference I can tell. I don't

Re: [Geoserver-users] How to publish whole SQL Server table to Geoserver

2011-07-01 Thread Charles Galpin
This happened to me a while back and it was the column type (nvarchar). http://osgeo-org.1803224.n2.nabble.com/Problem-with-geoserver-2-1-and-sql-server-data-store-td6104028.html Perhaps this is your issue too. charles On Jul 1, 2011, at 7:08 AM, David Collins wrote: Do you have any fields

Re: [Geoserver-users] Help needed to reorganise my geoserver setup

2011-06-30 Thread Charles Galpin
It's probably clear from your other thread now that as long as you make a backup of the data dir you can't go wrong, and what you describe looks fine. I recommend switching to the .war version and deploy it under tomcat if you are prepping for production use as well. charles On Jun 30, 2011,

Re: [Geoserver-users] Help needed to reorganise my geoserver setup

2011-06-30 Thread Charles Galpin
GEOSERVER_DATA_DIR is in apache2´s root directory so that I can use php on my web apps, how can all this work together with geoserver serving data through port 8080?? I´m rather confused. Rob Von: Charles Galpin cgal...@lhsw.com An: Robert Buckley robertdbuck...@yahoo.com CC

Re: [Geoserver-users] Publishing Shapefile Layer from remote SQL Server

2011-06-29 Thread Charles Galpin
I'm not sure I understand your question but 1. Yes you can load a shapefile into sql server 2. Yes you can use sql server as a data store with geoserver using an additional module. I can tell you there are limitations to the sql server support (like geoserver sql views don't work) and the best

Re: [Geoserver-users] geoserver mapping

2011-06-29 Thread Charles Galpin
but request.responseXML is null. any idea? - Antonio On Wed, Jun 29, 2011 at 2:52 PM, Charles Galpin cgal...@lhsw.com wrote: Antonio, there is a geoserver gui config setting for the proxy base url that you need to set, but I had a proxy problem and also needed to make a container change

Re: [Geoserver-users] Problem while deploying GeoServer 2.1.1 on Tomcat 6.0

2011-06-29 Thread Charles Galpin
:51:36 +0200, gbrun gb...@myopera.com wrote: You're the best, Charles! Problem solved! My Java was a JRE 6 - build 21 ; I installed the most recent version, JRE 6 - build 26! Thanks a lot! Geoffrey On Tue, 28 Jun 2011 14:14:15 +0200, Charles Galpin cgal...@lhsw.com wrote: I think

Re: [Geoserver-users] Geoserver Architecture: How to assess effectiveness

2011-06-28 Thread Charles Galpin
Robert, search the archives as there was a recent post about profiling which will help you identify the bottlenecks. But based on your description and the fact I know you are on the openlayers list, I suggest you ask there or at least focus some attention there. I know at the very least you

Re: [Geoserver-users] Problem while deploying GeoServer 2.1.1 on Tomcat 6.0

2011-06-28 Thread Charles Galpin
Let's start somewhere. Show us the earliest errors in the logs that can be pasted here in a few dozen lines. You can stop tomcat, change the .war to .zip and unzip it in the webapps directory, remove the zip file, delete the logs and start tomcat for a fresh start. charles On Jun 28, 2011,

Re: [Geoserver-users] Sorry, your session timed out...

2011-06-22 Thread Charles Galpin
Dan this is common, and permgen space is not the same as heap space. You need to tell the JVM to increase the permgern space from the default 64m but it varies depending on how you are running geoserver. Just google it. hth charles On Jun 22, 2011, at 7:55 AM, DanLear wrote: Hi, Just

Re: [Geoserver-users] moving geoserver configurations from one server to another

2011-06-22 Thread Charles Galpin
+1 here too. -- charles On Jun 22, 2011, at 2:20 PM, Brett Antonides banto...@gmail.com wrote: Andrea, I also like to see this functionality. +1 if anyone is keeping track. Brett On Wed, Jun 22, 2011 at 1:42 PM, Andrea Aime andrea.a...@geo-solutions.it wrote: On Wed, Jun 22, 2011

Re: [Geoserver-users] complex labels using css module

2011-06-08 Thread Charles Galpin
concatenation scheme doesn't work out (and it does prevent some forms of CSS shorthand in the future) then we can try it as a second alternative. -- David Winslow OpenGeo - http://opengeo.org/ On Thu, May 26, 2011 at 12:46 PM, Charles Galpin cgal...@lhsw.com wrote: Damn, you are fast David

[Geoserver-users] complex labels using css module

2011-05-26 Thread Charles Galpin
I can't seem to figure out how to use multiple attributes in a label. The tutorial says you can use a CQL expression but I am not sure how to concatenate strings. I'd like to do something like, although this just makes it a literal. label: [attr1] ([attr2]); thanks, charles

Re: [Geoserver-users] complex labels using css module

2011-05-26 Thread Charles Galpin
, 2011 at 12:20 PM, Charles Galpin cgal...@lhsw.com wrote: I can't seem to figure out how to use multiple attributes in a label. The tutorial says you can use a CQL expression but I am not sure how to concatenate strings. I'd like to do something like, although this just makes it a literal

[Geoserver-users] fuzzy/blurred/frosted style?

2011-05-04 Thread Charles Galpin
I'd like to apply a style that gives a frosted glass or fuzzy/blurring effect over my map (overlay - i can't apply this to the map itself). Other than finding an image that has this effect and adjusting the opacity as needed, is there another way of achieving this? thanks, charles

Re: [Geoserver-users] fuzzy/blurred/frosted style?

2011-05-04 Thread Charles Galpin
Yup I have a polygon layer which I am filling with an image right now already, but have been asked to add the frosted look. I was hoping I could do it some other way, but I'll just find another image or tweak this one. I suck at gimp/photoshop stuff though :) Thanks anyway, charles On May 4,

[Geoserver-users] external graphic in css style

2011-05-03 Thread Charles Galpin
Hi All I am trying to use an external graphic to fill a polygon but I get the error java.lang.Error: SOMEONE CODED THE X LINK NAMESPACE WRONG Can anyone tell me what's wrong with the following style? * { fill: url(grass_fill.png); fill-mime: 'image/png'; stroke: black; } The image

Re: [Geoserver-users] external graphic in css style

2011-05-03 Thread Charles Galpin
Done, although I can't see how to assign it to you (GEOS-4532) Thanks a bunch, charles - Original Message - From: David Winslow dwins...@opengeo.org To: Charles Galpin cgal...@lhsw.com Cc: geoserver-users geoserver-users@lists.sourceforge.net Sent: Tuesday, May 3, 2011 6:39:24 PM GMT -05

Re: [Geoserver-users] sql view and zoom level (scale) as parameter

2011-04-13 Thread Charles Galpin
On Apr 13, 2011, at 5:31 PM, David Winslow wrote: Do you control the client? I imagine you could have it add a parameter with its current scale. I don't think that your SQL view has access to the scale by default (what would happen for such a view when making WFS requests?) Good point. We

Re: [Geoserver-users] CSS module questions

2011-04-05 Thread Charles Galpin
module is still a spare-time project for me. -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Apr 4, 2011 at 3:13 PM, Charles Galpin cgal...@lhsw.com wrote: Yes I was trying to keep it brief. I have similar statements for each color as well. I had gone down the path of entries

Re: [Geoserver-users] CSS module questions

2011-04-05 Thread Charles Galpin
, Charles Galpin cgal...@lhsw.com wrote: Yes that's pretty interesting. Ok, I've got one more for you. Even though I am listing my styles in order, the generated SLD seems to re-arrange them so that I see interesting overlap order - like a weaving effect. I have something like

Re: [Geoserver-users] CSS module questions

2011-04-04 Thread Charles Galpin
://opengeo.org/ On Mon, Apr 4, 2011 at 2:01 PM, Charles Galpin cgal...@lhsw.com wrote: I'm having trouble with the CSS module. My ultimate goal is to filter out data with the attribute data_type = 5, and use a different style for data_type = 4 (while displaying a different line color based

Re: [Geoserver-users] CSS module questions

2011-04-04 Thread Charles Galpin
it to either of your previous examples in this thread that shouldn't be a problem though. -- David Winslow OpenGeo - http://opengeo.org/ On Mon, Apr 4, 2011 at 3:06 PM, Charles Galpin cgal...@lhsw.com wrote: On Apr 4, 2011, at 2:26 PM, David Winslow wrote: A rule like: [data_type 4

Re: [Geoserver-users] Problems with adding layers to layer groups

2011-04-02 Thread Charles Galpin
On Apr 1, 2011, at 10:45 AM, Jeff Dege wrote: How do I determine, within the GeoServer admin tool, the name of a layer’s underlying file/table? The name of the layer can be changed, so we can’t count on that. We can see the name of the fields (Feature Type Details) on the layer page.

Re: [Geoserver-users] SLD stroke-opacity problems

2011-04-01 Thread Charles Galpin
On Apr 1, 2011, at 7:21 AM, Andrea Aime wrote: On Fri, Apr 1, 2011 at 1:19 PM, Andrea Aime andrea.a...@geo-solutions.it wrote: I can imagine ways to avoid that effect applying some image processing tecniques, but they would be hard to implement and would slow down the rendering a bit and

Re: [Geoserver-users] Problems with adding layers to layer groups

2011-04-01 Thread Charles Galpin
On Mar 31, 2011, at 8:10 PM, Jeff Dege wrote: In the “Choose new layer” dialog, I see the layers from all three of my stores and all three of my workspaces. Many of the layer names are the same, of course, because the layers had the same name in the data stores. But the stores and the

Re: [Geoserver-users] enable php for geoserver document root

2011-04-01 Thread Charles Galpin
figured out it was this. Setting the reverse proxy filter back to false fixed my app. Just FYI. Thanks, charles On Mar 9, 2011, at 2:24 PM, Charles Galpin wrote: Thanks Ian That did it! Although in my case I am running the standalone geoserver which is Jetty based. I edited geoserver/WEB

[Geoserver-users] SLD stroke-opacity problems

2011-03-31 Thread Charles Galpin
I made a stylesheet that rendered linestrings quite nicely with solid colors (showing congestion on roads). I drew a thicker line in black below the colored line and used a round line cap to give them a nice look. We'll these lines have the drawback that they cover the road details below them,

Re: [Geoserver-users] enable php for geoserver document root

2011-03-09 Thread Charles Galpin
Robert, you usually put apache httpd in front of geoserver/tomcat and use mod_proxy (and mod_proxy_http) or mod_jk to pass the geoserver URLs through to geoserver. If for example you are running a standalone geoserver on port 8080 and apache on port 80, you could setup your apache virtual host

Re: [Geoserver-users] enable php for geoserver document root

2011-03-09 Thread Charles Galpin
mod_proxy, mod_jk,.. under linux or windows? Thanks. Sarah Von: Charles Galpin cgal...@lhsw.com An: Robert Buckley robertdbuck...@yahoo.com CC: geoserver-users@lists.sourceforge.net Gesendet: Mittwoch, den 9. März 2011, 14:44:55 Uhr Betreff: Re: [Geoserver-users] enable php for geoserver

Re: [Geoserver-users] enable php for geoserver document root

2011-03-09 Thread Charles Galpin
On Mar 9, 2011, at 11:37 AM, Robert Buckley wrote: sorry for being dumbbut what you´re saying is that I should move my phpfiles from /var/lib/tomcat6/webapps/geoserver/www to the apache document root under /var/www/? ...and php can only have one root? Von: Charles Galpin cgal...@lhsw.com

Re: [Geoserver-users] enable php for geoserver document root

2011-03-09 Thread Charles Galpin
: On 9 March 2011 08:44, Charles Galpin cgal...@lhsw.com wrote: I am using this and the only negative side effect I can see is that the layer preview doesn't work unless I access geoserver locally. You need to set the proxy base url (http://docs.geoserver.org/latest/en/user/webadmin/server

Re: [Geoserver-users] GeoServer on mac

2011-03-09 Thread Charles Galpin
Hi Ahmad You can change the location of it, but the default directory is bundled up under the app. If you go to Applications and right click on Geoserver.app and choose Show Package Contents you will find it under Contents/Resources/Java/data_dir hth charles On Mar 9, 2011, at 4:00 PM, Ahmad

Re: [Geoserver-users] MS SQL Server 2008 geometry/geography/byte[]

2011-03-07 Thread Charles Galpin
and SQL Server with the same data, I am interested in any performance comparison. How do they compare to each other, when used with Geoserver ? Regards, David On Sat, Mar 5, 2011 at 12:13 AM, Charles Galpin cgal...@lhsw.com wrote: Thanks David Yes geometry seems to work and that's

Re: [Geoserver-users] Nested SLD rules?

2011-03-07 Thread Charles Galpin
On Mar 4, 2011, at 1:34 PM, David Winslow wrote: Yes, bug reports for docs are great. If you are feeling particularly helpful you can even create a patch and attach it to the ticket - we maintain the manual in a simple text markup format in SVN just like the source code for GeoServer.

Re: [Geoserver-users] MS SQL Server 2008 geometry/geography/byte[]

2011-03-04 Thread Charles Galpin
complex query joining many tables. Maybe you could try restarting the Geoserver service - I think that might be required when database tables or views are changed in any way. Regards, David On Fri, Mar 4, 2011 at 4:01 AM, Charles Galpin cgal...@lhsw.com wrote: I have been using postgresql

Re: [Geoserver-users] Nested SLD rules?

2011-03-04 Thread Charles Galpin
Hi David Yes this looks like it would be very useful. I went to give it a try but don't see the extension built for 21.RC2. Would it be safe to use the one here with 2.1RC2? http://gridlock.opengeo.org/geoserver/2.1.x/community-latest/ charles On Mar 3, 2011, at 10:15 AM, David Winslow

[Geoserver-users] Nested SLD rules?

2011-03-03 Thread Charles Galpin
I apologize in advance for not finding the spec and reading it, but I fear it would be a waste of time and an easy one for someone to answer anyway (probably with 2 letters). Is there a way to nest rules, or otherwise use more advanced control logic in SLD? I am making a stylesheet which

Re: [Geoserver-users] Nested SLD rules?

2011-03-03 Thread Charles Galpin
-width: 10, 8, 6, 4; } * [@scale 1e8] [@scale 1e7] { stroke-width: 12, 10, 8, 6 } -- David Winslow OpenGeo - http://opengeo.org/ On Thu, Mar 3, 2011 at 8:55 AM, Charles Galpin cgal...@lhsw.com wrote: I apologize in advance for not finding the spec and reading it, but I fear

[Geoserver-users] MS SQL Server 2008 geometry/geography/byte[]

2011-03-03 Thread Charles Galpin
I have been using postgresql as a data store and although I am very happy with it, I need to use sql server if at all possible. I have run into a couple of problems that I am hoping there are solutions for 1. Geography vs Geometry types. Afaik geography is preferred in sql server so I

Re: [Geoserver-users] geoserver and postgis: inconsistant

2011-03-02 Thread Charles Galpin
Robert, unless it's a cut/paste or conversion issue in your email, the XMl looks invalid. From here, I see no start feature:points tag for example. hth, charles On Mar 1, 2011, at 8:11 AM, Robert Buckley wrote: my xml insert looks like this... wfs:transaction

Re: [Geoserver-users] Dynamic generation of WMS from backend PostGIS queries?

2011-02-07 Thread Charles Galpin
Darrell, If you needs are modest, you can use the new sql view feature of the 2.1 series and implement you logic in a postgres function. Very easy to do and you get all the geoserver goodness for free (so use wms/wfs/kml/geojson/whatever). This assumes you can pass in any parameters you need

Re: [Geoserver-users] Running Geoserver on a VPS

2011-02-07 Thread Charles Galpin
On Feb 7, 2011, at 1:33 PM, Ian Turton wrote: On Mon, Feb 7, 2011 at 1:23 PM, Charles Galpin cgal...@lhsw.com wrote: By test file do you mean the layer preview? That only works on localhost for me, and I haven't seen a way to specify the server anme in the settings. LayerPreview should

Re: [Geoserver-users] Error in sld ogc:function

2010-12-31 Thread Charles Galpin
Andrea, I am using 2.1 beta1 or 2 and I'm getting Unable to find function Endangle too. I am trying your example on page 30 of the presentation below. What could I be doing wrong? Happy New Year in advance to everyone, charles On Dec 22, 2010, at 7:16 AM, Andrea Aime wrote: 2010/12/22 marwa

Re: [Geoserver-users] Error in sld ogc:function

2010-12-31 Thread Charles Galpin
On Dec 31, 2010, at 3:18 PM, Charles Galpin wrote: Andrea, I am using 2.1 beta1 or 2 and I'm getting Unable to find function Endangle too. I am trying your example on page 30 of the presentation below. What could I be doing wrong? Happy New Year in advance to everyone, charles On Dec 22

Re: [Geoserver-users] HELP, Setting up a Linux based GeoServer..

2010-12-24 Thread Charles Galpin
Andy the log messages say something is already running on port 8080. It might be your previous attempt. If you get stuck, just reboot and try again, but something like ps -auxww | grep java or ps -auxwww | grep geoserver Should show you the process id and you can kill it with kill process

Re: [Geoserver-users] popups and FTL files question.

2010-12-13 Thread Charles Galpin
Robert I have not looked into the templates, but know that if you return the info in a vector format you can then create the popup contents in js and format it any way you like there. charles On Dec 13, 2010, at 2:53 AM, Robert Buckley wrote: Hi, I am trying to format and present a

Re: [Geoserver-users] pass view params in WFS call?

2010-12-03 Thread Charles Galpin
, Charles Galpin cgal...@lhsw.com wrote: I was hoping I could move forward using GML3, but the output says 0 features despite then including them! wfs:FeatureCollection numberOfFeatures=0 ... gml:featureMembers gml:boundedBy/ myns:test_sql_view gml:id=test_sql_view.fid

Re: [Geoserver-users] pass view params in WFS call?

2010-12-02 Thread Charles Galpin
) tia, charles - Original Message - From: Andrea Aime andrea.a...@geo-solutions.it To: Charles Galpin cgal...@lhsw.com Cc: geoserver-users@lists.sourceforge.net Sent: Thursday, December 2, 2010 9:32:29 AM GMT -05:00 US/Canada Eastern Subject: Re: [Geoserver-users] pass view params in WFS call

Re: [Geoserver-users] pass view params in WFS call?

2010-12-02 Thread Charles Galpin
I was hoping I could move forward using GML3, but the output says 0 features despite then including them! wfs:FeatureCollection numberOfFeatures=0 ... gml:featureMembers gml:boundedBy/ myns:test_sql_view gml:id=test_sql_view.fid-7b81134_12ca359e616_db5/ myns:test_sql_view

Re: [Geoserver-users] pass view params in WFS call?

2010-12-01 Thread Charles Galpin
I expect except the kml doesn't have all the attributes like you'd get from a wfs call which is going to be a hassle to work with. If my problem is not clear, please let me know! thanks, charles On Nov 30, 2010, at 10:13 AM, Charles Galpin wrote: I have been using the new 2.1 sql view

[Geoserver-users] pass view params in WFS call?

2010-11-30 Thread Charles Galpin
I have been using the new 2.1 sql view with a WMS layer from openlayers and would like to convert it to a WFS call to get the actual features instead. However I can't figure out how to pass the viewparams in the call and the WFS layer seems to expect a feature filter which I can't see how I'd

Re: [Geoserver-users] Re moval of Pink tiles

2010-11-19 Thread Charles Galpin
I have not actually seen the tiles so I am not sure if this works or not, but I have seen this in examples out there // avoid pink tiles OpenLayers.IMAGE_RELOAD_ATTEMPTS = 3; OpenLayers.Util.onImageLoadErrorColor = transparent; hth charles On Nov 19, 2010, at 3:32 AM, adityakumar529 wrote:

[Geoserver-users] Problem with geoserver 2.1 and sql server data store

2010-11-10 Thread Charles Galpin
Hi All Hopefully I have just setup something wrong, but I am attempting to use a sql server 2008 data store and can't create a layer properly. Geoserver 2.1-beta1 geoserver-2.1-beta1-sqlserver-plugin sqljdbc4.jar from sqljdbc_3.0 download from MS sql server 2008 java 1.6.0_21 on centos 5.5 I

Re: [Geoserver-users] 2.1-beta1 SQL view problem

2010-10-08 Thread Charles Galpin
Hi Andrea Ok, I had not chosen the VERBOSE_LOGGING.properties log4j file. Once I did, I got 2010-10-08 14:30:53,997 DEBUG [geotools.jdbc] - Gathering sql view result structure: select * from (select * from myfunc(,'')) as vtable LIMIT 0 So I put in defaults and then it worked. But I swear I

Re: [Geoserver-users] dateline issue and JVM options

2010-10-07 Thread Charles Galpin
restart also but Geoserver still out. I definitely think you're on the right track but is there something else missing that might have been required. Any ideas? No harm done. Only in development phase. Can always reinstall. Abe On 10/7/2010 11:00 AM, Charles Galpin wrote

Re: [Geoserver-users] Question about GeoServer and Google Maps

2010-10-05 Thread Charles Galpin
Dan, you should just be able to use 'image/png' hth charles On Oct 5, 2010, at 7:29 AM, Dan MacLeod wrote: I'm currently using GeoServer 2.0.2 to host layers that I display on Google Earth. I do this by using NetworkLinks and call GeoServer using the link below. If I wanted to display the

Re: [Geoserver-users] Question about GeoServer and Google Maps

2010-10-05 Thread Charles Galpin
), hth charles On Oct 5, 2010, at 8:50 AM, Charles Galpin wrote: Dan, you should just be able to use 'image/png' hth charles On Oct 5, 2010, at 7:29 AM, Dan MacLeod wrote: I'm currently using GeoServer 2.0.2 to host layers that I display on Google Earth. I do this by using

[Geoserver-users] Geometry transformations in SLD not working

2010-09-24 Thread Charles Galpin
Hi all I'm trying to create some styles using geometry transformations, specifically functions. I can't get any of the examples from the following page: http://docs.geoserver.org/stable/en/user/styling/sld-extensions/geometry-transformations.html Using functions I get the error