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-26 09:52:12 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Ada -> Java information flow Date: 26 Jul 2002 12:46:09 -0400 Organization: NASA Goddard Space Flight Center (skates.gsfc.nasa.gov) Message-ID: References: <3D414C3C.1050101@cox.net> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 1027702493 26279 128.183.220.71 (26 Jul 2002 16:54:53 GMT) X-Complaints-To: usenet@news.gsfc.nasa.gov NNTP-Posting-Date: 26 Jul 2002 16:54:53 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:27424 Date: 2002-07-26T16:54:53+00:00 List-Id: "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! -- -- Stephe