Can anybody help me in how both combiningly webserver & application server Project can run in Eclipse IDE, with source codeif possibe mail 2 me newyuga@rediffmail.com
Latest Answer: Apache is an HTTP server written in C that can be compiled and run on many platforms. See http://www.apache.org Java WebServer is an HTTP server from Sun written in Java that also supports Servlets and JSP. Tomcat is an open-source HTTP server from ...
Latest Answer: you can use response.sendRedirect(someURL) to redirect to another servlet in another application. But you will lose your session since a session is tied with a web context while you are redirecting to another web context. ...
Hi all,javax.servlet Interface RequestDispatcher does have method public void include(request, response).According to documentation it includes the content of a resource (servlet, JSP page, HTML file) in the response.My question is does it compile the Jsp page before including or after including it.Thanks
Hi,What is the difference between the following methods of RequestDispatcher:ServletContext.getRequestDispatcher(java.lang.String), ServletContext.getNamedDispatcher(java.lang.String), and ServletRequest.getRequestDispatcher(java.lang.String)
What is the problem in getting the session object of hibernate directly in the action class of struts?
Latest Answer: Spring is an IoC based framework. IoC refers to Inversion of Control, meaning that one object using 2nd object to provide certain capability. Advantages:* simplify coding via POJO programming and framework* easier and more controllable than EJB framework* ...
Even though tomcat is installed properly, when we send a request for an existing servlet from the internet explorer to the tomcat server, the browser is displaying the requested resourse is not available. What to do? Please reply if you know
Latest Answer: lazy property in hibernate is used to control when child/ren class(es) should be loaded, e.g., when a parent class is loaded and lazy property is true, the child entity is not loaded until an explicit call getChild() is invoked ...
Problem in connection with Oracle without ODBC using Think DriverFollowing code is not workinggiving error Exception in thread Main java.lang.NoClassDefFoundError:jdbc1import java.sql.*;class jdbc1 { public static void main(String args[]) { try{ Class.forName("oracle.jdbc.driver.OracleDriver"); Connection c=DriverManager.getConnection("jdbc:oracle:thin:@hostname:1521:sid","scott","tiger" ); Statement s=c.createStatement(); ResultSet
View page << Previous 6 7 8 9 [10] 11 12 13 14 15 Next >>

Go Top