Re: [mapserver-users] [TinyOWS] Inserting feature and XML schema validation

2012-11-16 Thread Тимур Галиаскарович Суфиев
I found the problem (just in case it may be useful for someone): wfs layers in Javascript were using featureNS: "http://www.tinyows.org"; while all layers in tinyows.xml used ns_uri="http://www.tinyows.org/"; Every symbol matters in deciding whether xml namespaces are the same, so adding tr

Re: [mapserver-users] [TinyOWS] Inserting feature and XML schema validation

2012-11-16 Thread Olivier Courtin
On Fri, Nov 16, 2012 at 12:32 PM, Тимур Галиаскарович Суфиев < t.suf...@acti.ru> wrote: > ** > I found the problem (just in case it may be useful for someone): wfs > layers in Javascript were using > > featureNS: "http://www.tinyows.org"; > > while all layers in tinyows.xml used > > ns_uri="http:/

[mapserver-users] Mapserver 6.2 with proj 4.7

2012-11-16 Thread umn-ms
Hi I tried to compile Mapserver 6.2 with proj 4.7. I'm having a problem with a function called "pj_clear_initcache" As far as I can see, this function was introduced in proj 4.8 and is not part of proj 4.7. In Mapserver 6.2 maputil.c has code # if PJ_VERSION >= 470 pj_clear_initcache(); # e

[mapserver-users] Compile mapserver with custom external libs

2012-11-16 Thread Alberto Asuero
I've compiled mapserver 5.6.7 with a custom version of geos, postgis, gdal and proj4. Here is the configure command: *./configure --prefix=/usr/local/gis/mapserver-5.6.7 --with-pdf--with-freetype --with-agg --with-eppl --with-proj=/usr/local/gis/proj-4.7.0 -

Re: [mapserver-users] Compile mapserver with custom external libs

2012-11-16 Thread Alberto Asuero
What I've done is a wrapper with an export like that before: export LD_LIBRARY_PATH=/export LD_LIBRARY_PATH=/usr/local/gis/postgresql-9.1.2/lib:/usr/local/gis/geos-3.3.2/lib:/usr/local/gis/proj-4.7.0/lib:/usr/local/gis/gdal-1.9.0/lib/ How can I tell mapserver to do it automatically in mapserv exe

Re: [mapserver-users] Compile mapserver with custom external libs

2012-11-16 Thread Jeff Lake
I may be mistaken here, But when you compiled geos, gdal,and pgsql you specified the install path of the program. the libraries will go where libraries are suppose to go eg '/usr/lib' '/usr/local/lib' etc... so other programs can find them.. -Jeff Lake MichiganWxSystem.com AllisonHouse.com T

Re: [mapserver-users] Mapserver 6.2 with proj 4.7

2012-11-16 Thread thomas bonfort
Benedikt, please open an issue for this. thanks, thomas On Fri, Nov 16, 2012 at 12:28 PM, wrote: > > Hi > > I tried to compile Mapserver 6.2 with proj 4.7. I'm having a problem with a > function called "pj_clear_initcache" > As far as I can see, this function was introduced in proj 4.8 and is

Re: [mapserver-users] Mapscript java 6.2

2012-11-16 Thread Umberto Nicoletti
Did you run make install after make in the mapserver top-level directory? On Fri, Nov 16, 2012 at 3:56 PM, Gaston Lucero wrote: > I get this error > > root@Gaston:/home/gaston/mapserver-6.2.0/mapscript/java# make install > /bin/bash ../../libtool --mode=install /usr/bin/install -c > libjavamapsc

[mapserver-users] WMS layer image format parameters

2012-11-16 Thread Ian Walberg
Folks, I can only see the image type in the WMS request, say png or jpeg. Can we configure the compression level of the images in the wms server map file? I cannot see any mention of how to do this anywhere. Thanks Ian ___ mapserver-u

[mapserver-users] Mapserver 6.2.0 undefined reference to `__sync_sub_and_fetch_4'

2012-11-16 Thread Stephen Davies
I have found the discussion of this issue from mid-October but the source code that I downloaded from mapserver.org yesterday still gives the error. Where can I get a version that does not give this error? I am trying to build on Linux with GCC 4.4.3. Cheers and thanks, Stephen --

Re: [mapserver-users] WMS layer image format parameters

2012-11-16 Thread Rahkonen Jukka
Hi, You can define your own outputformat for AGG/JPEG and use formatoption "quality" http://www.mapserver.org/mapfile/outputformat.html I do not know if variable substitution works in this place so that users could add an extra parameter to the request as &QUALITY=100 but you can have a try. At