Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Sven Schroeter
Hi Vladimir, the fastest way is probably the CGI variant. You write your mapfiles and deliver the data via mapserv and the corresponding parameters. In the case of PHP you have to build a wrapper, which is no problem. If your server runs under windows, this is the better variant, because many

Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Vladimir
Thank you very much, Sven. Is it right to use FastCGI for less resource consumption? What language of MapScript is more suitable the best performance? Regards. > >Hi Vladimir, > >the fastest way is probably the CGI variant. You write your mapfiles and >deliver the data via mapserv and the

Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Richard Greenwood
On Fri, Sep 21, 2018 at 3:33 AM Sven Schroeter wrote: > Hi Vladimir, > > the fastest way is probably the CGI variant. You write your mapfiles and > deliver the data via mapserv and the corresponding parameters. > In the case of PHP you have to build a wrapper, which is no problem. If > your

[mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Vladimir
Hi list, There are several tables with a lot of objects in PostGis database. Fields of the tables contain styles(color, width etc) The goal is fast getting a single image(WMS) on client . I am aware about two ways to do it: mapserv as FactCGI and some kind of MapScript(PHP in my case) What is

Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Sven Schroeter
o.k. I just tried that, works great on my Windows 7 development environment under ms4w, thanks! Does it work on all Windows Server operating systems and also under the IIS? Von: Richard Greenwood [mailto:richard.greenw...@gmail.com] Gesendet: Freitag, 21. September 2018 15:00 An:

Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Sven Schroeter
I have no experience with other programming languages at mapserver, so far I only used php and that works well, e.g. I use a wrapper here: https://geodaten.naturschutz.rlp.de/kartendienste_nature_protection/mod_ogc/ I developed this on the basis of this example:

Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Sven Schroeter
wrong URL, this URL for the php mapscript wrapper example: https://geodaten.naturschutz.rlp.de/kartendienste_naturschutz/mod_ogc/ Von: Vladimir [mailto:f...@inbox.ru] Gesendet: Freitag, 21. September 2018 13:50 An: Sven Schroeter; 'mapserver-users' Betreff: Re: AW: [mapserver-users]

Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Sven Schroeter
yep, at this time for me only on a custom build under ubuntu 16.04 using this source: https://github.com/bjoernboldt/mapserver but I hope for the next release and this pull request: https://github.com/mapserver/mapserver/pull/5642 Sven Von: Vladimir [mailto:f...@inbox.ru] Gesendet: Freitag,

Re: [mapserver-users] What is the best way to generate WMS?

2018-09-21 Thread Vladimir
Does it work with PHP 7? Regards. > >I have no experience with other programming languages at mapserver, so far I >only used php and that works well, e.g. I use a wrapper here: >https://geodaten.naturschutz.rlp.de/kartendienste_nature_protection/mod_ogc/ > >I developed this on the basis of this