> To dynamically divide the load between them, use the following proxy
> autoconfiguration file (for netscape navigator):
> 
> var url;
> var host;
>     function FindProxyForURL(url, host)
>         {
>             if (shExpMatch (url, "your.domain")) return "DIRECT";
>                 today = new Date();
>                     Sec = today.getSeconds() % 2;
>                     if ( Sec == 0 )
>                     return "PROXY rh51:8082;"+"PROXY rh60:8080;" +
>                             "DIRECT";
>                     else
>                     return "PROXY rh60:8080;"+"PROXY rh51:8080;" + "DIRECT";
> 
>                 }
Or:
  
  if(Math.random() > 0.5)
    return "PROXY rh51:8082;"+"PROXY rh60:8080;" + "DIRECT";
  else
    return "PROXY rh60:8080;"+"PROXY rh51:8080;" + "DIRECT";
Best wishes
Rainer
-- ______ /| | Rainer Klier | Wahr sind auch die Erinnerungen, die wir mit / |__ | SBS CS E US | uns tragen, die Traeume, die wir spinnen, | /__/| | 09131/7-31802 | und die Sehnsuechte, die uns treiben. Damit | | ||__| | wollen wir uns bescheiden. H.Spoerl | |__|/ / email : ty@sbs.de oder Rainer.Klier@erl.sbs.de |/______/ rrklier@tychen.franken.de (privat) URL : http://www.franken.de/users/tychen/rrklier/ http://www.erl.sbs.de/personal/rrklier/ (Siemens int.)Received on Mon Jun 14 1999 - 05:50:14 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:46:51 MST