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.4 required=5.0 tests=AC_FROM_MANY_DOTS,BAYES_00 autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,bffcdbd805329ff8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-08-31 11:26:13 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!sunqbc.risq.qc.ca!14336336!news.imp.ch!psinet-eu-nl!psiuk-p4!uknet!psiuk-n!news.pace.co.uk!nh.pace.co.uk!not-for-mail From: "Marin David Condic" Newsgroups: comp.lang.ada Subject: Re: Ada and Internet stuff Date: Fri, 31 Aug 2001 14:09:22 -0400 Organization: Posted on a server owned by Pace Micro Technology plc Message-ID: <9mojsk$9j6$1@nh.pace.co.uk> References: <9mo3p9$22t$1@nh.pace.co.uk> NNTP-Posting-Host: dhcp-200-133.miami.pace.co.uk X-Trace: nh.pace.co.uk 999281364 9830 136.170.200.133 (31 Aug 2001 18:09:24 GMT) X-Complaints-To: newsmaster@news.cam.pace.co.uk NNTP-Posting-Date: 31 Aug 2001 18:09:24 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Xref: archiver1.google.com comp.lang.ada:12621 Date: 2001-08-31T18:09:24+00:00 List-Id: The scenario you describe is kind of where I was going with communications links. Probably the most popular link today would be TCP/IP - although I hesitate to make the claim because someone will come out of the woodwork challenging that. Certainly, its *one* of the most popular. Throw on top of that Sockets and you have a very common way of building distributed apps. Streams would be a natural way to connect to Sockets and you'd quite often be building a Socket system with the same compiler on the same or similar machines. So even though streams aren't highly portable (at least in terms of using 'Input and 'Output - but that is by far not the only means of getting data into a stream) in all communications apps, you could still see that a lot of communications could be 8-bit byte oriented and streams would want to hook up to that. MDC -- Marin David Condic Senior Software Engineer Pace Micro Technology Americas www.pacemicro.com Enabling the digital revolution e-Mail: marin.condic@pacemicro.com Web: http://www.mcondic.com/ "Ted Dennison" wrote in message news:v9Qj7.886$F4.5311@www.newsranger.com... > > Well, I'd actually throw out the "data along communication links" one. Data put > in streams is just *not* portable, unless extreme efforts are put forth to make > it so (eg: GLADE). > > Without a lot of effort, streams are really only useful for dealing with data > that is going to be read and written from Ada code on the same type of platform > compiled with the same compiler. >