Hi Dave.
Does the password have special characters? I faced a similar situation, and
the solution was to use the RAW function (
http://camel.apache.org/how-do-i-configure-password-options-on-camel-endpoints-without-the-value-being-encoded.html)
in the password.
Abraços,
Luis Felipe - Finx
On
- Finx
On Mon, Mar 6, 2017 at 12:40 AM, David Hoffer wrote:
> Thanks for the tip I did not know about this. I would think Camel would
> want to treat all passwords as raw...can never tolerate those changing.
> Once we get back on site (Monday I think) we will give this a try...I ho
:
UserAuth ua=null;
try{
Class c=Class.forName(getConfig("userauth.none"));
ua=(UserAuth)(c.newInstance());
}
catch(Exception e){
throw new JSchException(e.toString(), e);
}
Good luck!
Abraços,
Luis Felipe - Finx
On Wed, Mar 8, 2017 at 4:59 AM, Claus Ib