From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00,FREEMAIL_FROM, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5439c15172a5d16d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-01-18 09:47:09 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news.tele.dk!small.news.tele.dk!193.213.112.26!newsfeed1.ulv.nextra.no!nextra.com!news2.ulv.nextra.no.POSTED!53ab2750!not-for-mail Reply-To: "Frank" From: "Frank" Newsgroups: comp.lang.ada References: <3C45556F.CE05AD1F@labe.felk.cvut.cz> <3C485758.F69BC3BE@labe.felk.cvut.cz> Subject: Re: Client connected to two servers in Glade X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Message-ID: NNTP-Posting-Host: 130.67.136.237 X-Complaints-To: news-abuse@nextra.no NNTP-Posting-Date: Fri, 18 Jan 2002 18:47:08 MET X-Trace: news2.ulv.nextra.no 1011376028 130.67.136.237 Date: Fri, 18 Jan 2002 17:47:08 GMT Xref: archiver1.google.com comp.lang.ada:19059 Date: 2002-01-18T17:47:08+00:00 List-Id: > > But how the client find out what is the address of the second server? > What is the boot location then? Should be there one boot location for > both servers? > > Thank you. I'll think about it. > > Tomas Hi! I believe you can put each of your servers into a partition, probably as tasks in packages in each package. A package can be assigned to a Partition, these partition can be located at different computers, this is done in the configuration file to the distributed application (check: "Glade user guide") The aprx syntax: .... Partition_A, Partition_B : Partition for Partition_A'Host use "this.that.there" for Partition_B'Host use "some.where.else" procedure Server_A is in Partition_A; procedure Server_B is in Partition_B; .... Boot server is described in the "Glade user guide" p.53. (In short I agree with Obry.) Frank