Hi,

   +-From: "Gian Uberto Lauri" <[email protected]> --
   |_Date: Wed, 25 Jan 2012 19:21:10 +0100 _____
   |
   |Hello there, I am another victim of the auth fail.
   |
   |What happens:
   |
   |I received  this working code from  a project partner and put it into
   |a REST service running within a Tomcat7:
   ...
   |I use the same JVM, Sunoracle jdk1.6.0_27 both for running tomcat and the
   |standalone class. And I run Tomcat with my GNU/Linux user.
   |
   |Any hint about what may change in Tomcat7 from my shell ?

I guess that such results have come from the deferences of available
JCE providers on them.  Could you run the following chunk of code before
Session#connect() on those environments,

   import java.security.*;
   import javax.crypto.*;

   Provider[] providers=Security.getProviders();
   for(int i=0; i<providers.length; i++){
     System.out.println(providers[i].getName());
   }

Sincerely,
--
Atsuhiko Yamanaka
JCraft,Inc.
1-14-20 HONCHO AOBA-KU,
SENDAI, MIYAGI 980-0014 Japan.
Tel +81-22-723-2150
Skype callto://jcraft/
Twitter: http://twitter.com/ymnk
Facebook: http://facebook.com/aymnk

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
JSch-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jsch-users

Reply via email to