| Sign In/My Account | View Cart |
| Article: |
Writing Servlet 2.3 Filters | |
| Subject: | How do i get the name/url of the resource being requested in the doFilter method of the filter. | |
| Date: | 2003-06-04 01:22:36 | |
| From: | anonymous2 | |
|
Response to: How do i get the name/url of the resource being requested in the doFilter method of the filter.
|
||
|
HttpServletRequest hreq = ( HttpServletRequest )request; String url = new String( hreq.getRequestURL() );
|
||