The Artima Developer Community
Sponsored Link

Java Answers Forum
whether java run in unix can call java in win NT

1 reply on 1 page. Most recent reply: Nov 28, 2002 8:11 AM by Charles Bell

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
martin chu

Posts: 1
Nickname: martinchu
Registered: Nov, 2002

whether java run in unix can call java in win NT Posted: Nov 27, 2002 11:03 PM
Reply to this message Reply
Advertisement
Hi,

I want to create a Java class run in Unix and this class will create a socket call to another Java class which is run in Window NT platform, Is it possible to do that ?

Is it have same java coding to have socket call in UNIX enviroment ? when the data is text string , is it possible for the java program in window NT read the same text string after it receive it from the socket ?

Thanks a lot


Charles Bell

Posts: 519
Nickname: charles
Registered: Feb, 2002

Re: whether java run in unix can call java in win NT Posted: Nov 28, 2002 8:11 AM
Reply to this message Reply
The answer to your question is yes.

Java running on a unix platform communicates via sockets with other platform types irregardless of the operating system the other platform is running.

Basically one machine acts as a server which creates a socket and listens on a port for connections requests, reads requests and sends responses. Another machine acts as a server and connects to the server port, makes requests, and reads the response.

I have a simple server and simple client program at:
http://www.quantumhyperspace.com/SourceBank/SimpleServer.java
and

http://www.quantumhyperspace.com/SourceBank/SimpleClient.java

that demonstrate socket communication between two machines.
You can run this on the same machine , but in different shells.

Flat View: This topic has 1 reply on 1 page
Topic: Sticks game (i will pay) Previous Topic   Next Topic Topic: Urgent Artimians plz!!!!

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use