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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,85e48f338257ff94 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-27 12:31:33 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!west.cox.net!cox.net!p01!news1.central.cox.net.POSTED!53ab2750!not-for-mail Message-ID: <3D42F568.2010807@cox.net> From: "John M. Resler" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Ada -> Java information flow References: <3D414C3C.1050101@cox.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 27 Jul 2002 19:31:32 GMT NNTP-Posting-Host: 68.102.241.220 X-Complaints-To: abuse@cox.net X-Trace: news1.central.cox.net 1027798292 68.102.241.220 (Sat, 27 Jul 2002 15:31:32 EDT) NNTP-Posting-Date: Sat, 27 Jul 2002 15:31:32 EDT Organization: Cox Communications Xref: archiver1.google.com comp.lang.ada:27435 Date: 2002-07-27T19:31:32+00:00 List-Id: Thank you, I'll take a look at it. I appreciate the guidance. -John Stephen Leake wrote: > "John M. Resler" writes: > > >>I am new to Ada and am writing a mixed language application >>in Ada and Java. The java application is the GUI front end and >>the Ada application is an asis based application back end. I have >>used pipes in C\C++ but don't know of an equivalent in Ada. Can >>somebody point me in the correct direction? I'd appreciate it. >> > > When you "used pipes in C\C++", you actually use operating system > pipes, with a binding in C provided by the compiler or operating > system vendor. You can do the same in Ada, but you have to write the > binding yourself, or find one somewhere. > > If you are on Windows, look in one of the several Windows bindings > (see www.adapower.com for a list) to see if they provide pipe > operations. > > Writing the binding yourself is not all that hard. Give it a try and > come back for help! > >