Changes between Version 1 and Version 2 of MapGuideRfc3


Ignore:
Timestamp:
May 7, 2007, 1:24:06 PM (17 years ago)
Author:
chrisclaydon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc3

    v1 v2  
    6767v) The Server Admin PHP pages are currently dependent upon the 1:1 relationship between the web tier and site server. The login page would need to be updated to present a dropdown list of available site servers to configure. In the case where the web tier is only configured to access one site server, this field could be hidden or disabled. The login process would create a new session on the selected site server, and all subsequent interactions from the pages would be locked to that site via the session ID.
    6868
     69== Example ==
     70The default web tier configuration file, webconfig.ini contains the following settings (comments have been removed for conciseness):
     71
     72{{{
     73[AdministrativeConnectionProperties]
     74Port                               = 2810
     75
     76[ClientConnectionProperties]
     77Port                               = 2811
     78
     79[SiteConnectionProperties]
     80IpAddress                          = 127.0.0.1
     81Port                               = 2812
     82}}}
     83
     84To set up the web tier to access two site servers, with ip addresses 111.111.111.111 and 111.111.111.222 using the standard ports, only the !IpAddress setting needs to be modified:
     85
     86{{{
     87[AdministrativeConnectionProperties]
     88Port                               = 2810
     89
     90[ClientConnectionProperties]
     91Port                               = 2811
     92
     93[SiteConnectionProperties]
     94IpAddress                          = 111.111.111.111,111.111.111.222
     95Port                               = 2812
     96}}}
     97
     98It is also possible to use different port settings for each server. So if server 111.111.111.111 uses the standard ports, and 111.111.111.222 uses 2820, 2821 and 2822, the settings should look like this:
     99
     100{{{
     101[AdministrativeConnectionProperties]
     102Port                               = 2810,2820
     103
     104[ClientConnectionProperties]
     105Port                               = 2811,2821
     106
     107[SiteConnectionProperties]
     108IpAddress                          = 111.111.111.111,111.111.111.222
     109Port                               = 2812,2822
     110}}}
     111
    69112== Implications ==
    70113