Forum: JSP Mar 11th, 2008 |
| Replies: 7 Views: 2,105 If you are really interested you can refer the following link http://builder.com.com/5100-6370-5031703.html However, others have already pointed out not to do so. |
Forum: JSP Dec 5th, 2007 |
| Replies: 3 Views: 1,402 Have you properly configured the servlet information in the web.xml file... ??? |
Forum: JSP Nov 28th, 2007 |
| Replies: 1 Views: 770 You can do so by passing the bean in session/request scope when you are clicking the link. |
Forum: JSP Nov 23rd, 2007 |
| Replies: 1 Views: 812 Practice, debug, solve others problems, read JSRs, reviews and counter reviews. Update yourself on other similar or advanced technologies. And the list is too big.... |
Forum: JSP Nov 23rd, 2007 |
| Replies: 1 Views: 717 Refer RequestDispatcher.sendRedirect() API + tutorials for more information. Refer your text too. They will guide you. |
Forum: JSP Nov 22nd, 2007 |
| Replies: 1 Views: 1,145 Better option is to upgrade your container or do it in Servlets |
Forum: JSP Nov 13th, 2007 |
| Replies: 4 Views: 2,212 Ok.. So to learn JSP and Servlets, it is always advisable to use Tomcat. Make yourself comfortable with it. Its pretty easy to use. |
Forum: JSP Nov 11th, 2007 |
| Replies: 4 Views: 2,212 First of all Tomcat is a WebServer and has a JSP/Servlet engine called Catalina to process JSP and servlet requests. It cannot process EJBs whereas, JBoss is an AppServer.
Second, you are trying to... |
Forum: JSP Nov 8th, 2007 |
| Replies: 1 Views: 3,226 404 error is File Not Found. You need to learn the basics of Web Programming. |
Forum: JSP Oct 30th, 2007 |
| Replies: 4 Views: 2,035 Are you still facing problem. Send your directory structure |
Forum: JSP Oct 28th, 2007 |
| Replies: 2 Views: 1,413 The given code might help...
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ page import="person.Person" %>
<!DOCTYPE html PUBLIC... |
Forum: JSP Oct 17th, 2007 |
| Replies: 5 Views: 1,073 String user="root@localhost"
should be
String user="root"; |
Forum: JSP Oct 2nd, 2007 |
| Replies: 9 Views: 6,086 I'm sorry for my earlier reply, I thought you r facing Connectivity issues so please ignore it.
According to ur post, the price field is a VARCHAR in Oracle (Correct me if I'm wrong). In that... |
Forum: JSP Oct 2nd, 2007 |
| Replies: 9 Views: 6,086 Hi,
You are using jdbc-odbc bridge to connect to Oracle db here
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con = DriverManager.getConnection("jdbc:odbc:prodDSN");
st =... |
Forum: JSP Sep 26th, 2007 |
| Replies: 2 Views: 3,654 You can use JavaScript for displaying timer and there is no need for binding it with a session. Rather, as soon as the user will click start exam button and the jsp page with questions is diplayed,... |
Forum: JSP Sep 26th, 2007 |
| Replies: 5 Views: 5,633 Also, when is the connect() method being called...?? |
Forum: JSP Sep 26th, 2007 |
| Replies: 5 Views: 5,633 Have you checked the ConnectionSmpp object here ConnectionSmpp con = ocm.getConnection();
ocm.submit(con);
I mean is it containing a valid value?? |
Forum: JSP Sep 24th, 2007 |
| Replies: 6 Views: 2,278 Also, you will require resource ref tags. Please put them in proper order otherwise some exception might occur.
<resource-ref>
<res-ref-name>jdbc/WimsDs</res-ref-name>... |
Forum: JSP Sep 24th, 2007 |
| Replies: 6 Views: 2,278 r u using JDBC ODBC bridge for establishing Connection with MS SQL Server. If that's the case, then you need to modify ur web.xml file in WEB-INF folder. The Context tag should be something like the... |
Forum: JSP Sep 22nd, 2007 |
| Replies: 6 Views: 2,278 Hey 500 means internal server error. please check the logs and then send the exact error/exceptions. 500 can occur due to n reasons. |
Forum: JSP Sep 21st, 2007 |
| Replies: 21 Views: 19,247 |
Forum: JSP Sep 19th, 2007 |
| Replies: 17 Views: 2,622 Tomcat 5.0 onwards support hot deployment that means any changes to your JSP pages will be reflected back once the request is made for that page again. Here, I mean changees made only to JSP pages... |
Forum: JSP Sep 19th, 2007 |
| Replies: 4 Views: 1,213 Where have you kept the mysql-connectorxxx.jar file in your web application. It should be stored inside the $CATALINA_HOME/lib directory and the Tomcat server needs to be restarted once it is placed... |
Forum: JSP Sep 2nd, 2007 |
| Replies: 1 Views: 2,267 You can do this using JavaScript. Please refer to JavaScript forums for this. |
Forum: JSP Sep 2nd, 2007 |
| Replies: 1 Views: 981 please send the struts-config.xml file and also check that the classes defined by you inherit from the ValidatorActionForm and not ActionForm |
Forum: JSP Aug 31st, 2007 |
| Replies: 3 Views: 2,232 Well there are a number of ways to capture the id's. But what is the best way for you is to be decided by you. Here are the ways:
1) URL rewriting. (Exposed to visible eyes. Not a safe bet)
2)... |