In this program we are going to tell you how can a use servlet to display information about its server.
In this program we are going to tell you how can a use servlet to display information about its server.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:
![]() |
Ads