views:

80

answers:

1

Hi

I've got a live PHP4.2.x server which I control fully. I'd like to access our companies internal mapping server on 10.1.1.5 They don't want to open up to world, however are happy for my webserver to access it.

The 10.1.1.5 mapping server runs Mapserver 4 Windows. http://www.maptools.org/ms4w/index.phtml?page=home.html

Have looked at cURL.. however proxying requests seems like it could be a nasty :-) Especially with interactivity on the mapping side.. eg dragging maps etc..

Any elegant solutions? Perpahs best one is to have mapping server live to the world with security?

Cheers

Dave

+1  A: 

Apache has a module called mod_proxy that does what I think you're asking for. I've successfully used it for similiar things in the past. This also gives you access to the full range of security measures supported by apache such as HTTP authentication.

Emil H