package com.system33.web; import com.system33.model.*; import java.sql.*; import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import java.util.*; public class Submit extends HttpServlet { public Connection conn; public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException,
ServletException { response.setContentType("text/html"); PrintWriter out=response.getWriter(); out.println("Selection Advice<br>"); out.println("<br> Value of connection "); com.system33.model.MyOracleConnection obj = new com.system33.model.MyOracleConnection(); out.println("<br> Data Fetched "+obj.fetchData()); out.println("<br> Data Fetched "+obj.connectionDriver()); out.println("<br> This is the new servlet<br>"); }
}
The class file lands in c:\my projects\boaintegratedworkflow\classes\com\system33\model\MyOracleConnection.class c:\my projects\boaintegratedworkflow\classes\com\system33\web\Submit.class
And this is not fetching the data, it throws an exception whic i am not able to see as its not being displayed on the page
Please be sure to use UBB code tags when posting code to the forums. Unformatted code is extremely hard to read and many people that might be able to help you will just move along to posts that are easier to read. Please read this for more information.
You can go back and change your post to add code tags by clicking the .
Your first step should be to find the stack trace of the exception. Normally you will find that somewhere in the logs of your application server. It will be very difficult to solve the problem without that information.
suraj sheikh
Greenhorn
Joined: Mar 07, 2008
Posts: 23
posted
0
Thanks for your reply, But can you help me how to get the log on tomcat
Please do not cross-post the same question in multiple forums. It wastes people's time when multiple redundant conversations take place. Please read this for more information.