How to execute Linux commands from NT

I need to execute commands on the linux server from my NT workstation using java programs. Anyone has any idea how to go about doing it?
[150 byte] By [chelleong] at [2007-9-26 1:26:51]
# 1

First of all the Linux box has to be running some kind of server that allows remote systems to submit commands to it. There are several possibilities: you could use an FTP server, or an REXEC server; even a regular HTTP server can allow commands to be submitted with suitable configuration. And there are probably others.

Once you have decided which type of server to use, then write the Java program to communicate with it. Obviously it's not possible to say much about that at present.

DrClap at 2007-6-29 1:10:21 > top of Java-index,Archived Forums,Java Programming...
# 2
Start REXEC daemon on your linux machine and then use JRexec from Jcraft ( http://www.jcraft.com/jrexec/index.html) to start your apps.
v.pavlov at 2007-6-29 1:10:21 > top of Java-index,Archived Forums,Java Programming...