• 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

Plz.. reply as soon as poosible urgent

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is HTTPTunelling? please explain detailed
what is load balancing and where it si used?
 
Desperado
Posts: 3226
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
¿What is the question?
¿Tunneling or load balancing?
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HTTPTunellin is is nothing but talking in terms of bytes to the server.This process is used for Applet to Servlet communication.
Load balancing is the process for distributing the work load of servlets with other servlets by servlet chaining.
The complete details are available at Java Server programming published by WROX.
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I disagree with the definition of load balancing given here. Load balancing is the use of more than one server as if it is one system by passing client requests transparently to whichever server the "load balancing algorithm" decides should get it.
You can load-balance between hardware servers, routing packets to separate machines, or you can load balance between software systems, routing requests to different server processes. It's faily common practice, for example, to run one web server and several servlet containers, and let the web server route servlet and JSP requests to the servlet containers either randomly, based on server load or based on session id.
 
VishnuKumar Prasad
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Tony Alicea:
�What is the question?
�Tunneling or load balancing?


I need answers for both
reply
    Bookmark Topic Watch Topic
  • New Topic