Communicate between processes Java VB.net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Gangreen
    New Member
    • Feb 2008
    • 98

    Communicate between processes Java VB.net

    I have two processes running, one is written in java, the other is written in Visual Basic.net.

    I would like to have some sort of communication between the two, and be able to send strings to eachother.

    How can I achieve this?
    Maybe sockets can be used?

    Thanx
  • jhaxo
    New Member
    • Dec 2007
    • 57

    #2
    Originally posted by Gangreen
    I have two processes running, one is written in java, the other is written in Visual Basic.net.

    I would like to have some sort of communication between the two, and be able to send strings to eachother.

    How can I achieve this?
    Maybe sockets can be used?

    Thanx
    Sockets is an idea.

    JNI will let java invoke an unmanaged windows dll. Maybe you can have the windows dll in turn communicate with .net using windows messaging. or dde.

    Comment

    • Gangreen
      New Member
      • Feb 2008
      • 98

      #3
      Originally posted by jhaxo
      Sockets is an idea.

      JNI will let java invoke an unmanaged windows dll. Maybe you can have the windows dll in turn communicate with .net using windows messaging. or dde.
      I have no clue what you're talking about...I'm not to familiar with windows dll's..

      Comment

      • guru007
        New Member
        • Nov 2007
        • 6

        #4
        Originally posted by Gangreen
        I have two processes running, one is written in java, the other is written in Visual Basic.net.

        I would like to have some sort of communication between the two, and be able to send strings to eachother.

        How can I achieve this?
        Maybe sockets can be used?

        Thanx
        hello sir I would like to say only

        Comment

        • casybay
          New Member
          • Oct 2007
          • 35

          #5
          Hi, I am also working on something similar. This is what I've found out. http://www.math.ucla.edu/~anderson/J...e.html#Process
          But I still cannot figure out how exactly to parse parameters between. Please let me know if you can work it out.

          Comment

          Working...