On Thu, 20 Feb 2003 10:28:29 PST Matt wrote: > Lynn Avants wrote: > > > I just didn't know how tunneling methods were integrated > > into Java.... other than possibly a call built-into the source. > > I think I'm back to my previous question, aren't these > tunnel programs run as seperate apps from the GUI?
I suppose you could just use a native stunnel, lsh/ssh, putty/plink, or zebedee binary to setup the tunnel and then send standard Java socket communications over that tunnel. A more platform independent, and arguably more elegant, solution would be to use the Java TLS, SSH2, or Zedebee libraries to do it all in Java. Here are links for the java libraries that support those protocols: SSL/TLS: Bundled with v1.4 and available as an add-on for earlier JREs. http://java.sun.com/products/jsse/ SSH2: JCraft's JSch http://www.jcraft.com/jsch/ Zedebee: jzbd http://sourceforge.net/projects/zebedee These libraries should make it straightforward to create the client-side portion of a platform-independent application or (signed) applet for remotely configuring a LEAF server. <aside> Personally, I am more interested in a platform-independent tool for pre-deployment configuration...if I ever find the time and motivation simultaneously, I hope to write one. </aside> --Brad ------------------------------------------------------- This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. The most comprehensive and flexible code editor you can use. Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. www.slickedit.com/sourceforge ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
