Can a client java program know what kind of server it is running in web?
example:
http:// www. page . com is running in apache.
the client connect:
URL pagserver=new URL("http://www.page.com");
or
socket socketclient=new socket(
www.page.com,8080);
=> server is APACHE or JETTY , etc.....
How to know?
note: examples:Webserver Search
-What's that site running?...-
Netcraft