search for: connecttoserver

Displaying 5 results from an estimated 5 matches for "connecttoserver".

2013 May 08
2
[Bug 2099] New: SshClient.connect() failure on port 22
...e Program: import com.sshtools.j2ssh.SftpClient; import com.sshtools.j2ssh.SshClient; import com.sshtools.j2ssh.authentication.PasswordAuthenticationClient; import com.sshtools.j2ssh.configuration.ConfigurationLoader; import java.io.PrintStream; public class fileTransfer { public static boolean connectToServer(String serverIp, int serverPort, String userId, String password) { SshClient sfc = null; try { System.out.println("inside Try of as its SFTP"); ConfigurationLoader.initialize(false); System.out.println("ConfigurationLoader"); sfc = new SshClien...
2007 Sep 20
10
IAX Java Softphone?
Does anyone know of an IAX softphone in Java, whether applet or application? Even the most minimum featureset, just voice and dialing, or even embedded in some other app/let. Preferably GPL. Thanks. -- (C) Matthew Rubenstein
2006 Aug 08
11
Core dump using sample DumbHttpClient
...cxx::__verbose_terminate_handler () from /usr/lib/libstdc++.so.5 #4 0x28460795 in __cxxabiv1::__terminate () from /usr/lib/libstdc++.so.5 #5 0x284607d2 in std::terminate () from /usr/lib/libstdc++.so.5 #6 0x28460712 in __cxa_throw () from /usr/lib/libstdc++.so.5 #7 0x2829f75d in EventMachine_t::ConnectToServer () from /usr/local/lib/ruby/site_ruby/1.8/i386-freebsd6/rubyeventmachine.so #8 0x282a4433 in evma_connect_to_server () from /usr/local/lib/ruby/site_ruby/1.8/i386-freebsd6/rubyeventmachine.so #9 0x282a25fe in t_connect_server () from /usr/local/lib/ruby/site_ruby/1.8/i386-freebsd6/rubyeventmachin...
2004 Aug 06
2
Protocol
jaromil, > > > > wanted to ask again if someone has some online documentation on the > > icecast (or shoutcast) protocol at the socket/data level. > > have a look into MuSE/libmpeg/httpinput.cc (http://muse.dyne.org) > i hope that code can help you figuring out > No actually not. It just makes the connection to the shoutcast/icecast server. I've gotten this
2007 Feb 25
6
Crash occurs where EventMachine.connect is
Hi everyone, If you subclass EventMachine::Connection and call it outside an EventMachine::run event loop, EventMachine crashes! Example: class Put < EventMachine::Connection include EventMachine::Deferrable HOST="localhost" PORT=8080 def self.request(data) EventMachine.connect(HOST, PORT, self) {|c| c.instance_eval { @data = data } } end #