• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Mutiple Listeners Share single Session

 
Ranch Hand
Posts: 72
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey guys,

I have a situation in which a user is connecting to multiple listeners using an SSL Connection. The problem with this is each listener he connects to is creating a new session that needs to be "negotiated", this is taking to long. Does anyone know how to keep this session open? I am at a loss for where to procced and havent found any relavent material online. I think the problem is that each listener is done in a different servlet?Any ideas? Links to more information would be good?

<servlet>
<servlet-name>ServletA</servlet-name>
<servlet-class>location</servlet-class>
</servlet>

 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What kind of "session" is that? Surely not an HttpSession? And what kind of "connection" is it? And what's a "listener" in this context? Your question seems to be more to do with the particular connection than about servlets, as far as I can see. But I may be wrong -- I just don't understand anything about what's happening in your system.
 
John Lark
Ranch Hand
Posts: 72
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
LOL I understand its difficult to solve the problems without exact information. we are ussing an HTTPS Session?? It appears to be working now? We had an unrelated error that we think was killing the session. It's all working now... Thanks for your response, I have really appriciated your help over the past year of using Big Moose Saloon. It seems your name comes up a lot. Im still a little confused on sessions vs connections vs servlets. Any refrence material would be appriciated if you have it on hand. If not I'll just hit up google later!

Thanks!
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic