Hello everyone,
I have spent a couple of days now trying to figure out why I can't serve my servlets through tomcat. I have no experience with tomcat, so I'm running out of ideas.
Basically I get a 404 error, saying that the requested resource can't be found. I have checked the log output in catalina.out, and there are no issues here. I know that tomcat is running. It reads the index.jsp which contains a redirect to /servlet/vservlets.Login ....
Search Result
Collapse
10 results in 0.0015 seconds.
Keywords
Members
Tags
-
Tomcat 7 servlet problem
-
Why are users able to see other user's data?
I am currently creating collaboartive learning website based on the social networking ideas.
I have a Java servlet that uses HttpSession to store data.
When one user, User-A, logs in and does something on the website, User-B logs in. When User-A navigates to another page, User-B's information is shown instead of User-A's.
My Java servlet:
...Code:package control; import java.io.IOException;
-
How to call servlet from JSP FORM ?
Hi,
For Login authentication.
i create JSP Form.
login.jsp(webap ps/loginsystem/login.jsp)
...Code:<form method="POST" [B]action ="http://localhost:8085/loginsystem/lo"[/B] name="login"> <font color="#FFFFFF" face="Bauhaus 93" size="4"><-- BACK</font></a></p> <div align="center"> <center>
-
contact finder in jsp
i am working on a web based project in jsp and i am placing a contact finder in it to retrive the users contact from their mail like all contacts from gmail and invite them on my website.
some one please help me how to do it or plz provide the source code or some link where i vl find it.plz -
How to retrieve video from mySQL database?
Hi, guys! I've created a java servlet where I can upload video with limited size. The video uploaded is being saved in the mySQL database as BLOB. How can I retrieve that BLOB and display it as the video in my webpage? I'm new to this so I'll need all the help and guidelines you guys can give me. Thank you very much in advance. Below is my servlet code:
...Code:package Projects; import java.io.IOException; import
-
import - cannot resolve symbol io.PrintWriter & BufferedReader
At the screenshots you can see what libraries I've added to project, and still - those two essential classes are missing! What's wrong? Need your help.... -
puttu started a topic I am developing an application, Where i used a jar file and error pop ups as belowin JavaI am developing an application, Where i used a jar file and error pop ups as below
javax.servlet.S ervletException : Class DATA.GraphConve rt is not a Servlet org.apache.
java.lang.Class CastException: DATA.GraphConve rt cannot be cast to javax.servlet.S ervlet -
Convert Java to Servlet
Hello all,
I want to create a web application for sending booking requests to DHL. I already found a toolkit (http://xmlshippingtest .dhl-usa.com/toolkit/index.html) that uses XML files to send the bookings.
But how can I convert the Java code in this toolkit in to a servlet, so I can use it on the web. The Java code in that toolkit looks like this:
...Code://IO Classes import java.io.FileInputStream;
-
Uploading image to server using java servlets
Hey guys.
I am currently working on a project in JSP/Java Servlets, hope this is the right section. So, my problem regards mainly the form through which I will let the user input a file using <input type="file">. I did some research on the internet, telling me that I have two options (on the Servlet side) in order to get the file and store it in a directory on the server, namely O'Reilly's COS MultipartReques t and some... -
instantiating objects in servlets
I am completely new to servlets. I have an extensive programming background (C, C++, assembler, PHP, python, javascript, others) and I am trying to get into servlet programming. I have done several jsp's and small java apps, and I have code that works both as a java app and as a jsp:
...Code:class foobar { int x = 0; public void foobar() { } } public class mytest { public static