Question: CIST 2373 Java III Lab #3 50 Points [Simple Servlets] Build a simple Servlet called MyServlet using IntelliJ Add this Servlet to you ChattBank Project.

CIST 2373 Java III

Lab #3 50 Points

[Simple Servlets]

Build a simple Servlet called MyServlet using IntelliJ Add this Servlet to you ChattBank Project. This MyServlet will display a message like Go Braves in a simple

tag. Run this servlet from a Browser window by typing in the servlet name in the URL line.

(ie. http://localhost:8080/ChattBank/MyServlet). Make sure that your Server is up and running before you test this Servlet. The best way to do this is just Run your ChattBank Project once before you test the Servlet. Running the Project will start the Server.

build a simple Servlet called LoginServlet in your ChattBank Project. Now make it so that when the Customer logs in, the LoginServlet will get called and will validate the user id and password.

At first, just make sure that the Servlet gets called correctly. So just print a simple message like LoginServlet Running.

Remember, to call the LoginServlet, you will need to modify the FORM tag in the Login.html file:

Test it out. When you click the Login Button on the LoginForm, you should see LoginServlet Running.

Modify the LoginServlet.

Make it so that when the Servlet gets called, it reads the id and password from the Login Form. Use : request.getParameter() to get these items. At first just read in these 2 strings and display them to the Server Log.

If the id = admin and the Password = 123, return an HTML page that says Valid Login.

If not return an HTML page that says InValid Login. Use out.println() to send these HTML messages.

Test out your WebApp.

Create a new LoginServletDB. This time we are going to go to the database to verify the user login. First look at the ChattBank database. There is a Customers table. In this table there is a UserID and a Passwd.

Write the database code, in your LoginServlet to let anyone of these customers login, using their own ids and passwords.(Hint: You will need to add all 6 database steps[Load Driver, get connection.] to your LoginServletDB. Then get the password from the database abd compare it to the one you read from the HTML file.

Remember, to call the LoginServletDB, you will need to modify the FORM tag in the Login.html file:

Provide Screenshots for every problem

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!