RE: [mapserver-users] Dynamin SQL with mapserver CGI?

2009-01-27 Thread umn-ms
I think validation patterns are a real solution to the problem and minimizing access-priviliges is not. When filter with URL-substitution is used without validation patterns, one relies on the security-system of postgres. This is acceptable in most intranets but hazardous in the internet. Look

RE: [mapserver-users] Dynamin SQL with mapserver CGI?

2009-01-27 Thread umn-ms
I think validation patterns are a real solution to the problem and minimizing access-priviliges is not. When filter with URL-substitution is used without validation patterns, one relies to heavily on the security-system of postgres. This is acceptable in most intranets but hazardous in the

RE: [mapserver-users] GIS and GPS

2009-01-27 Thread pcreso
The script/program that inserts the points needs to check for the distance from such features. How you do this is very much up to you. Custom Postgis functions Postgres triggers, or entirely in your script. This process is pretty simple, but the code wrapped around it to implement a useful

[mapserver-users] shapefile location

2009-01-27 Thread Valeria Muñoz
Hi... I have a problem. can i call the shapes file from other server?, example: SHAPEPATH http://192.168.51.188/shapes/; RG. ___ mapserver-users mailing list mapserver-users@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/mapserver-users

RE: [mapserver-users] shapefile location

2009-01-27 Thread Venkat Rao Tammineni
Hi, As per knowledge it is not possible. Or you may try by computer name... Thanks Venkat. From: mapserver-users-boun...@lists.osgeo.org [mailto:mapserver-users-boun...@lists.osgeo.org] On Behalf Of Valeria Muñoz Sent: Tuesday, January 27, 2009 5:57 PM To: mapserver-users Subject:

[mapserver-users] Number of users are connected

2009-01-27 Thread Venkat Rao Tammineni
Dear All, I have developed web application using C# asp.net and postgresql/postgis. I have deployed in IIS .if my 10 people connected my url. I am getting error called More number users are connected .I don't know, how to solve the problem. And sometimes I am getting error called

Re: [mapserver-users] shapefile location

2009-01-27 Thread Alan Boudreault
Hi, badly, I don't think it's possible. I'd suggest you to make a local network share (with NFS in Unix), and mount this share. At this point, you'll be able to access the remote server share like a normal local path. Regards, Alan Valeria Muñoz wrote: Hi... I have a problem. can i

RE: [mapserver-users] Dynamin SQL with mapserver CGI?

2009-01-27 Thread Steve Lime
Thanks for the research, I hope folks will take it to heart and use the validation options. That's why they're there. Of course, one needs to write good patterns. I'm planning a how-to accompanying the new validation support in 5.4. Steve umn...@hydrotec.de 01/27/09 2:20 AM I think validation

Re: [mapserver-users] Number of users are connected

2009-01-27 Thread Tamas Szekeres
Hi, IIS on Windows XP is limited to 10 concurrent users, however you shouldn't find such problems with a Windows Server OS. Best regards, Tamas 2009/1/27 Venkat Rao Tammineni vtammin...@roulacglobal.com Dear All, I have developed web application using C# asp.net and

RE: [mapserver-users] Dynamin SQL with mapserver CGI?

2009-01-27 Thread Fawcett, David
Right. I believe that several layers to the onion are good. In other words, I wouldn't have my Web application logging into my db as the admin user even if I was using validation on my input. David. -Original Message- From:

[mapserver-users] Re: OGR problem connecting to mdb using ovf - SOLVED

2009-01-27 Thread Dejan . Gambin
I have solved the problem by using System DSN correctly and removing user dsn Thanks very much regards, dejan Dejan Gambin/GradPula wrote on 27.01.2009 16:23:16: Hi, I need to connect to Access database that has (among the other columns) spatial data in two columns named x coord and y

Re: [mapserver-users] shapefile location

2009-01-27 Thread Rahkonen Jukka
Hi, I cannot start Apache as Windows service if I add network shares. However, it does start as executable program. Is there some simple way to get both the network shares and Apache running as a service? -Jukka Rahkonen- -Alkuperäinen viesti- Lähettäjä:

[mapserver-users] create attributes for dynamic polygon layer

2009-01-27 Thread Mathias Tobler
I sent this (probably wrongly) to the mapserver-dev list a couple about a week ago and have not heard back from anyone. So I am trying my luck here. I am using PHP MapScript to create a polygon layer based on data stored in a MySQL database. The layer will show 1x1 degree grid cells and each

[mapserver-users] OGR problem connecting to mdb using ovf

2009-01-27 Thread Dejan . Gambin
Hi, I need to connect to Access database that has (among the other columns) spatial data in two columns named x coord and y coord. I am trying to implement Virtual Spatial Data according to http://www.mapserver.org/input/vector/VirtualSpatialData.html. I have made ovf file like this:

[mapserver-users] Search

2009-01-27 Thread Jay Kapalczynski
I am trying to use this filter to act as a wild card and am not having any successincorrect syntax??? Any thoughts? Thanks THIS WORKS: but not a wild card search FILTER /^%idOwner%/ THIS NOT WORKING: FILTER /.%idOwner%./ LAYER # Parcels Owner Layer NAME 'Parcels'

[mapserver-users] copyright annotation problem

2009-01-27 Thread Kirk Webb
I am inserting the copyright annotation provided on the Mapserver web site FAQ's. here it is LAYER NAME copyright STATUS ON TYPE annotation TRANSFORM ll #set the image origin to be lower left FEATURE POINTS 60 -10 #set the offset from lower left position in pixels END

Re: [mapserver-users] copyright annotation problem

2009-01-27 Thread Frode Wiseth Jørgensen
Hi Seems like there is a typo. The letter i at the END statement of the CLASS. Frode kirkwebb2 wrote: I am inserting the copyright annotation provided on the Mapserver web site FAQ's. here it is LAYER NAME copyright STATUS ON TYPE annotation TRANSFORM ll #set the

Re: [mapserver-users] getFeatureInfo() Only Works on One Layer?

2009-01-27 Thread Michael Smith
Bill, Try separating the QUERY_LAYERS with a space rather than a comma. MapServer uses space delimited values (gets changed to + separated in the URL). Mike -- Michael Smith RSGIS Center ERDC - CRREL US Army Corps of Engineers On 1/27/09 6:13 PM, Bill Thoen bth...@gisnet.com wrote: I

Re: [mapserver-users] getFeatureInfo() Only Works on One Layer?

2009-01-27 Thread Bill Thoen
No, that's not it. I tried both a space and a '+' instead of the comma, but neither worked. Michael Smith wrote: Bill, Try separating the QUERY_LAYERS with a space rather than a comma. MapServer uses space delimited values (gets changed to + separated in the URL). Mike

Re: [mapserver-users] getFeatureInfo() Only Works on One Layer?

2009-01-27 Thread Christopher Schmidt
On Tue, Jan 27, 2009 at 05:36:12PM -0700, Bill Thoen wrote: No, that's not it. I tried both a space and a '+' instead of the comma, but neither worked. Bill, As I suggested before, I highly recommend taking the *actual URL*, and tweaking that, without the interference of OpenLayers in the

Re: [mapserver-users] getFeatureInfo() Only Works on One Layer?

2009-01-27 Thread Yewondwossen Assefa
Bill, You might try setting the layers in the QUERY_LAYERS parameter without any space: QUERY_LAYERS: us_interstate,us_states. If that does not work, as suggested you might give the full URL sent to Mapserver. From what I can see, query on more that one layer is possible (URL using the

Re: [mapserver-users] getFeatureInfo() Only Works on One Layer?

2009-01-27 Thread Bill Thoen
Well, when I moved the application to a publicly-accessible server to show you all, it worked as it should. Turns out my server has the latest version of MapServer installed, but my workstation is running an older one, and so I guess the problem got fixed in the newer release. Yewondwossen

RE: [mapserver-users] Number of users are connected

2009-01-27 Thread Venkat Rao Tammineni
Sir, I am using C# npgsql.dll I am getting this errorTimeout while getting a connection from pool sometimes. but not every time. Here is my code to connect database My connection string in web config add key=ConnectionString value=Server=localhost;port=5432;User

[mapserver-users] data handling capacity of map server

2009-01-27 Thread cemre yilmaz
Hi everybody I search about the data handling capacity and also the performance of umn mapserver in the mailing list but I can't find an exact answer to my question. I want to execute a database nearly 5 GB and only the vector data (shapefiles) and may be one raster map will be in my database.