Revision 5780
Added by berkley almost 14 years ago
src/edu/ucsb/nceas/metacat/restservice/D1HttpRequest.java | ||
---|---|---|
56 | 56 |
String s = super.getPathInfo(); |
57 | 57 |
System.out.println("original pathInfo: " + s); |
58 | 58 |
String reqUri = this.getRequestURI(); |
59 |
System.out.println("original requestURI: " + reqUri); |
|
59 | 60 |
String strip = this.getContextPath() + this.getServletPath(); |
61 |
System.out.println("stripping " + strip + " from requestURI"); |
|
60 | 62 |
s = reqUri.substring(strip.length()); |
61 | 63 |
try |
62 | 64 |
{ |
Also available in: Unified diff
adding additional debugging info