Example to display infomation about the server?
>> Thursday, June 2, 2011
In this program we are going to tell you how can a use servlet to display information about its server.
Firstly we will create a class in which there will be doGet() method which takes two objects as arguments,
first is request object and the second one is of response.
To display the name of the server you are using use the method getServerName() of the ServletRequest interface.
To display the server port number use the method getServerPort().
You can also use other methods of the ServletRequest interface like getProtocol() to display the protocol,
you are using and many more methods depending on your needs.
OUTPUT:
The server name is localhost <br>
The server port number is 8086<br>
The portocol is HTTP/1.1 <br>
The scheme used is http.
Firstly we will create a class in which there will be doGet() method which takes two objects as arguments,
first is request object and the second one is of response.
To display the name of the server you are using use the method getServerName() of the ServletRequest interface.
To display the server port number use the method getServerPort().
You can also use other methods of the ServletRequest interface like getProtocol() to display the protocol,
you are using and many more methods depending on your needs.
The code of the program is given below:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class SnoopingServerServlet extends HttpServlet{
protected void doGet(HttpServletRequest request, HttpServletResponse
response) throws ServletException, IOException {
PrintWriter pw = response.getWriter();
pw.println("The server name is " + request.getServerName()+"<br>");
pw.println("The server port number is " + request.getServerPort()+
"<br>");
pw.println("The protocol is " + request.getProtocol()+ "<br>");
pw.println("The scheme used is " + request.getScheme());
}
}
import javax.servlet.*;
import javax.servlet.http.*;
public class SnoopingServerServlet extends HttpServlet{
protected void doGet(HttpServletRequest request, HttpServletResponse
response) throws ServletException, IOException {
PrintWriter pw = response.getWriter();
pw.println("The server name is " + request.getServerName()+"<br>");
pw.println("The server port number is " + request.getServerPort()+
"<br>");
pw.println("The protocol is " + request.getProtocol()+ "<br>");
pw.println("The scheme used is " + request.getScheme());
}
}
OUTPUT:
The server name is localhost <br>
The server port number is 8086<br>
The portocol is HTTP/1.1 <br>
The scheme used is http.