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.
The code of the program is given below:
import java.io.*;
|
web.xml file for this program:
<?xml version="1.0" encoding="ISO-8859-1"?>
|
The output of the program is given below:
![]() |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Snooping the server View All Comments
Post your Comment