X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fdolda%2Fjsvc%2Fj2ee%2FJ2eeRequest.java;h=9056e77c98d78d5bf32c2a37d423f706396add18;hb=HEAD;hp=466b81c7616703440a2f764657dd209efde0e03e;hpb=ed8f7296bfb39fbd66b79a113d4a72c6ade71fc0;p=jsvc.git diff --git a/src/dolda/jsvc/j2ee/J2eeRequest.java b/src/dolda/jsvc/j2ee/J2eeRequest.java index 466b81c..9056e77 100644 --- a/src/dolda/jsvc/j2ee/J2eeRequest.java +++ b/src/dolda/jsvc/j2ee/J2eeRequest.java @@ -59,7 +59,7 @@ public class J2eeRequest extends ResponseBuffer { q = ""; try { url = new URL(scheme, host, port, req.getContextPath() + req.getServletPath() + pi + q); - context = new URL(scheme, host, port, req.getContextPath()); + context = new URL(scheme, host, port, req.getContextPath() + "/"); } catch(MalformedURLException e) { throw(new Error(e)); } @@ -144,14 +144,8 @@ public class J2eeRequest extends ResponseBuffer { } public MultiMap params() { - if(params == null) { - params = Params.urlparams(this); - if(method == "POST") { - MultiMap pp = Params.postparams(this); - if(pp != null) - params.putAll(pp); - } - } + if(params == null) + params = Params.stdparams(this); return(params); }