CS506 Assignment No 3
![]() |
CS506 Assignment No 3 Solution Spring 2017 |
CS506 Assignment Objectives:
- To build knowledge about how to develop basic dynamic web application in Java EE
- To write first Servlet in Java and communicate with Client using HTTP
- Install, configure and use Apache Tomcat Server for Java Web Application( For any query about the assignment, contact at CS506@vu.edu.pk )
CS506 Assignment No 3 Question
- Java SE (including JDK 8)
- Apache Tomcat Web Server 9.0 OR Java Servlet Libraries (servlet-api.jar and jspapi.jar)
CS506 Assignment No 3 Solution
Step - 1. Download and install xampp and jdk 7.0 then start the tomcat service from the control panel of xampp server.
<form name="patientForm" method="post" action="patientServlet">
to check null values use
if (patientname = isEmptey())
{
// type procedure here what you want.
}
else
{
//type procedure here what you want.}
patientservlet.java
package net.codejava.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/patientservlet")
public class patientservlet extends HttpServlet {
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
// reading form fields
String patientname = request.getParameter("patientname");
PrintWriter writer = response.getWriter();
// build HTML code
String htmlRespone = "<html>";
htmlRespone += "<h2>Congratulation Mr: " + username + "<br/>";
writer.println(htmlRespone);
}
}
if You liked this Solution. Please subscribe us below or like us on Facebook.Thanks.
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.