• 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

Problem : Multiple Instance possible for SingleThreadModel Servlet in I-Planet ?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Friends,
My App Design uses servlet implementing SingleThreadModel and deployed in IPlanet 4.1 Webserver.
Whenever two requests concurrently requested for that servlet, Webserver creates only one instance of servlet so that 2nd request is blocked until 1st is served and the instance is free.
Is there any way I-Planet can be configured so that it can create more instance for SingleThreadModel-implemented servlet so that all the requests are served in parallel.

Thanks,
Raj
[ May 22, 2003: Message edited by: Ramanathan RajaManthiram ]
[ May 22, 2003: Message edited by: Ramanathan RajaManthiram ]
 
slicker
Posts: 1108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I believe SingleThreadedModel will be deprecated in 2.4 Servlet release. You may want to steer clear of it.
Java World Article on Servlets 2.4
You will be able to use it but eventually you'll be stuck with outdated code. It's probably better to move away from it now.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic