[Net] problem connecting to ProFTP with FTPES

2011-05-17 Thread Michael Voigt
Hi all, I have a problem with the FTPClient connecting to a ProFTPD server. If the server uses the configuration option TLSProtocol TLSv1, I cannot connect to it at all. I recieve the following error message: - javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection On the

Re: [Net] problem connecting to ProFTP with FTPES

2011-05-17 Thread sebb
On 17 May 2011 10:39, Michael Voigt michael.vo...@web.de wrote: Hi all, I have a problem with the FTPClient connecting to a ProFTPD server. What versions of Net, Java, ProFTPD? Is the server publicly accessible? If the server uses the configuration option TLSProtocol TLSv1, I cannot

Re: [Net] problem connecting to ProFTP with FTPES

2011-05-17 Thread Michael Voigt
I'm using commons-net 2.2, Java 1.5, ProFTPD 1.3.3d, No, the server is not publicly accessible, but I could send the config file. My code: FTPClient ftpClient = new FTPClient(); ftpClient = new FTPSClient(TLS); // this throws an exception with

[math] Eigenvalue decomposition like octave

2011-05-17 Thread Arne Plöse
Is there a Eigenvalue decomposition like octave eig(m) that takes also matices that are not symmetric? Or any mathematical tip how to do this? Arne - To unsubscribe, e-mail: user-unsubscr...@commons.apache.org For additional

Re: [math] Eigenvalue decomposition like octave

2011-05-17 Thread Luc Maisonobe
Le 17/05/2011 20:40, Arne Plöse a écrit : Is there a Eigenvalue decomposition like octave eig(m) that takes also matices that are not symmetric? Or any mathematical tip how to do this? No, we do not have an implementation for non-symmetric matrices. There is an open issue for that

Re: Re: [scxml]

2011-05-17 Thread Rahul Akolkar
On Tue, May 17, 2011 at 3:44 PM, Vance huang vancehu...@yahoo.com wrote: Hi, Rahul: Thanks for taking a look. In further testing, I found the probable cause of this issue is that when the custom action in test2 is executing, sometimes it injects the actionComplete event right back to the

[scxml] events triggered in onentry

2011-05-17 Thread Ryan
I have the following simple SCXML document: scxml xmlns=http://www.w3.org/2005/07/scxml; xmlns:my=http://www.my.com; version=1.0 initialstate=welcome state id=welcome onentry my:play filename=welcome/ /onentry transition

Re: [scxml] events triggered in onentry

2011-05-17 Thread Ryan
Looks like I signed up for this mailing list about 5 hours too late. Reading today's reply from Rahul, he notes: You should inject events from within a custom action by adding to the set of derived events (param of execute method) which will be processed in a subsequent microstep, rather than

Re: [scxml] events triggered in onentry

2011-05-17 Thread Rahul Akolkar
On Tue, May 17, 2011 at 8:37 PM, Ryan rnidef...@gmail.com wrote: Looks like I signed up for this mailing list about 5 hours too late. Reading today's reply from Rahul, he notes: You should inject events from within a custom action by adding to the set of derived events (param of execute

Re: [Net] problem connecting to ProFTP with FTPES

2011-05-17 Thread Michael Voigt
Using Commons NEt 3.0 didnt help to solve the issue. So I opened the ticket NET-408. The ProFTPD is running on Linux (SuSE) 32bit and 64bit. On Tue, May 17, 2011 at 20:00, sebb seb...@gmail.com wrote: On 17 May 2011 14:34, Michael Voigt michael.vo...@web.de wrote: I'm using commons-net 2.2,