|
INTERVIEW QUESTIONS
J2EE
JSP
DETAILS
Question: What is the differnce between application server and web server
Answer: Web server cannot communicate with Component Architecture or Distributed Architecture.It consists of Servlets and JSP pages.Application server is EJB. It can communicate will both Web and Distributed Architecture. Application server is a Component Architecture.
|
|
|
Category |
JSP Interview Questions & Answers -
Exam Mode /
Learning Mode
|
Rating |
(0.3) By 7874 users |
Added on |
7/17/2011 |
Views |
68112 |
Rate it! |
|
|
Question:
What is the differnce between application server and web server
Answer:
Web server cannot communicate with Component Architecture or Distributed Architecture.It consists of Servlets and JSP pages.Application server is EJB. It can communicate will both Web and Distributed Architecture. Application server is a Component Architecture. Source: CoolInterview.com
Hi... Webserver: Webserver contains servlet engine and jsp engine. It does not provide system-level services like security management ,transaction management,resource pooling etc...
Application server: It contains servlet container ,jsp container and EJB container. And it provides system-level services implicitly , no need to write your own. Source: CoolInterview.com
Answered by: DEVARATHNAM C, KOTAGUDIBANDA(PO),KALAKADA(MD),CHIT | Date:
| Contact DEVARATHNAM C, KOTAGUDIBANDA(PO),KALAKADA(MD),CHIT
Web server is used for web applications whereas application server is used for both web and enterprise applications. Example of web server is Tomcat,Resin whereas example of application server is weblogic,websphere.Webserver is protocol dependent whereas application server is protocol independent. Source: CoolInterview.com
Answered by: pranitha | Date: 11/20/2008
| Contact pranitha
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|
|
Related Questions |
View Answer |
|
In one class i stored the key and values in the hashmap.so using key value i have to check wheter the value for key is correct or not.so how to retreive the key and values in jsp page
|
View Answer
|
|
How can i restrict the user from Clicking of Back button in any browser
|
View Answer
|
|
Wat is the difference between and in jsp..wen translate into servlet..wer it is stored in servlet..can we create global variables in jsp..if yes then how??
|
View Answer
|
|
What is the diff. b/w PAGE,APPLICATION and SESSION implicit objects of JSP?
|
View Answer
|
|
What is difference between getAttribute() and getParameter()?
|
View Answer
|
|
How we abort jsp page from a servlet
|
View Answer
|
|
Where can we find the compiled file of jsp in the directory struture.
|
View Answer
|
|
What is the difference betweeen JSP forward and servlet forward methods?
|
View Answer
|
|
How to pass java script array to jsp page?
|
View Answer
|
|
What is the difference between session and cookie ?
|
View Answer
|
|
Where do we use hidden variables and url rewriting? and wat is the difference between them?
|
View Answer
|
|
How to overwrite the init and destroy method in a JSP page.
|
View Answer
|
|
A] Is the response.sendRedirect ends the existing session? B] If I logged in to a site ( say a.com) & then in same browser window I type the url for another site (say b.com), then does my session gets ended on first site ( a. com ) ?
|
View Answer
|
|
How do we perform redirect action without using response.sendRedirect(" ");
|
- JSP Interview Questions & Answers">
View Answer
|
|
What is the difference between Difference between doGet() and doPost()?
|
View Answer
|
|
When many Users are browsing the same application at the same time and they click the "Submit" button will many objects be created for each and every User?
|
View Answer
|
|
What is the default scope of jsp tags?
|
View Answer
|
|
What are the default objects provided by JSP container? Other than page, request, session and context objects.
|
View Answer
|
|
What is the difference between , page directive include, action tag include ?
|
View Answer
|
|
I have a String name & Map m, in my bean class. I have get & set methods on both.
To Display the String name, i do
The above one works fine. Te below one, displays the entire Map contents
I know the KEY, how do i display the VALUE for that KEY
|
View Answer
|