remote « User « JSP-Servlet Q&A





1. Setting REMOTE_USER in JSP    stackoverflow.com

We're attempting to front Web software we've purchased from a vendor with our organization's single-signon authentication. Their software expects the CGI environment variable REMOTE_USER to be set in JSP to a ...

2. How can I determine and save a remote user's MAC address?    stackoverflow.com

I'm using the code

byte[] mac = ni.getHardwareAddress(); 
for (int i = 0; i < mac.length; i++) {
    System.out.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : "");
to ...