That shouldn't be the problem since the comparison was HTTP versus HTTPS, and cookie/session management would be the same. The "problem" is that the first call using an SSL socket requires the initialization of the SecureRandom object. After the first message is sent, you should be able to see much improved performance, though SSL will also be slower.
David ----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 25, 2002 4:02 PM Subject: RE: SSL over SOAP is SLOW! > If you call SOAPHTTPConnection.setMaintainSession(true), then the setup only > happens on the first call and you have session oriented connections. If you > don't want sessions, then as far as I know, the setup will happen each time > and the overhead will kill your app. One of the samples gives an example of > how to set it up. > > -----Original Message----- > From: Jeremy Levy [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 25, 2002 3:47 PM > To: [EMAIL PROTECTED] > Subject: RE: SSL over SOAP is SLOW! > > > I am using RPC, so therefore the first "Call" set's it up, or each call > it has to set up? > > jeremy > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 25, 2002 5:14 PM > To: [EMAIL PROTECTED] > Subject: RE: SSL over SOAP is SLOW! > > > The initial setup of the connection is the time consuming task. If you > use sessions, this only happens once. > > -----Original Message----- > From: Jeremy Levy [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 25, 2002 1:52 PM > To: [EMAIL PROTECTED] > Subject: SSL over SOAP is SLOW! > > > I have noticed a significant difference in the speed of my soap calls > when I use SSL... Anyone experienced anything similar? > > > jeremy > > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com
