In my web-app the client pings the server (tries to contact a ping servlet on the server) wheere the address / resource locator of the servlet is :
"192.168.43.187/server/ping?" + new ClientAddress().getNetworkIP();
Till now the client has been sending it's network IP to the server with every ping. I wanted to add another piece of information with this URL,which is new GregorianCalendar().getTimeInMillis();
.
How do I send this along ?
Note :
In the URL, ping is a servlet