what is difference between web server and application
server?
Answer / paletipatisrinu
webserver :
1)webserver imlementation on servlet,jsp Api specifation.
2)less middleware services
3)its recoginses only WAR files
4}its understand only http requset
5}its develop only webapplications.
Ex: tomcat server
Applicationserver:
1)Application server implementation on All J2EE specifications
2)more middle ware services( nearly 16 middle ware)
Ex:connection pooling,security,transaction management
3)its recoginses WAR,RAR,EAR files
4)its understand http,non http requsets
5}its develop webapplications and enterpraise
applications,distributed applications.
ex:-weblogic
FORMULA:
APPLICTION SERVER=WEBSERVER+MIDDLEWARE SERVERICE+EJB CONTAINER
| Is This Answer Correct ? | 16 Yes | 0 No |
what is class/object diagram
What are the interfaces in java collections? : java collections
What is the use of log4j and how to make use of that in a application?
What is the use of the list interface in the java collection? : java collections
who will give req's to u?. how they send req's to u? . what design documents contains?. when bugs raised on other developer code how to report to them?.(throgh mail or ........). how to retrive 100 recods from dao layer to presentation layer.using which collection?. what is sequence diagram.?.
How do I find jre path in windows?
my interviewer asked me what technical specification you used how to answer that question
what is java virtual machine
Is it Mandatory to map each pojo class variable with table column in Hibernate? Is there any alternative to skip some of those? Thanks in advance...
which book is the best for preparing for SCWCD 1.5
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
How is hashset maintained in memory by java ?