RE: HTTPS from Orion Java Bean

2001-02-06 Thread Konstantin Polyzois
it throws "ClassNotFoundExceptions" instead of "no implementation found". /korre -Original Message- From: Tim Endres To: Orion-Interest Cc: Geoff Marshall Sent: 2001-02-06 02:25 Subject: Re: HTTPS from Orion Java Bean Since I have no code, I can only guess... Sounds to me li

Re: HTTPS from Orion Java Bean

2001-02-06 Thread Geoff Marshall
Tim- Thanks for responding. I need to learn to write these messages a little more clearly. Basically, I downloaded the JSSE stuff from Sun and tweaked the J2sdkee1.2.1 to allow me access to the SSL routines as per Sun's instructions. I compiled the Java class and executed it (see below).

HTTPS from Orion Java Bean

2001-02-05 Thread Geoff Marshall
Hello all! I've written a bean that calls a credit card processing gateway from a Java bean. It is very simple and executes an https://... request. Then it reads the entire contents of the web page. And it works if I run my AuthBean class from the command line. But when I attempt to use

Re: HTTPS from Orion Java Bean

2001-02-05 Thread Tim Endres
Since I have no code, I can only guess... Sounds to me like you are getting a different URLConnection subclass in the two cases. I would try to print out the connection that you are getting to see what it is. Then you will need to see if you can correct the problem from there. tim. Hello all!