CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 1999
    Posts
    2

    Interprocess communication

    I'm trying to write a GUI in JAVA, using SWING, and I will need this GUI to communicate with C++ client code (probably through a Scheme interface if Java and C++ cannot communicate directly) and with a 3D graphics rendering program, probably Open Inventor. Could someone please direct me to a place where I can find information on how to get interprocess communications (sockets and pipes) going between Java and scheme and/or C++? I would really appreciate any help you can give.


  2. #2
    Join Date
    Jul 1999
    Posts
    21

    Re: Interprocess communication

    use socket is a way.
    jni may also be useful.

    This is from david dong.

  3. #3
    Join Date
    Aug 1999
    Posts
    2

    Re: Interprocess communication

    It was my understanding that sockets vary from UNIX machine to UNIX machine. The reason for my GUI being written in JAVA rather than C++ is that we want our application to be portable to as many systems as possible. Are there sockets that will behave uniformly for at least one system? I guess I'd have to write a different bit of code for each operationg system we'd want it to work on...
    I will look into jni. There are so many libraries that I didn't know where to start looking.

    Thanks.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured