I'm using jrun3 and
req.getScheme()
and
req.isSecure()
don't seem to be working the way I would expect based on the Servlet2.2
documentation.
As a simple test ... if I add the following two lines to the
SnoopServlet sample that comes with Jrun
print(out, "Request scheme", req.getScheme());
print(out, "Request isSecure", String.valueOf(req.isSecure()));
it prints out http for the scheme and
false for isSecure, even when I request the Servlet with the URL
https://talbot.franklin.edu/servlet/SnoopServlet
It also displays http://talbot.franklin.edu:443/servlet/SnoopServlet
as the URL rather than
https://talbot.franklin.edu/servlet/SnoopServlet
Is this a bug, or am I not interpreting the docs correctly? (The
browser shows the page as secure.)
Thanks,
Lynn
------------------------------------------------------------------------------
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.