Re: [Stripes-users] Cleaning up / shrinking / obfuscating query string parameters?

2011-09-29 Thread Newman, John W
Just to follow up on this, thanks for all the good responses. The solution Grzegorz outlined is probably the best way to do it. Originally send a post, servlet filter does rewrite service, 301 redirect to short url, filter comes back in, detects short url and does internal forward to original

[Stripes-users] Is it possible to disable stripes tags escaping xml?

2011-09-29 Thread fatefree
I am using a custom EL resolver which automatically escapes any values through an el expression. This works great, but unfortunately all values inside stripes input tags are double escaped because the tag is escaping by default. Is there any way to disable the tags from escaping xml values? --

[Stripes-users] What is the proper empty resolution for an ajax update?

2011-09-29 Thread fatefree
Just curious, in the event of some ajax update which really supplies no response to the browser, what is the appropriate way to respond via a resolution? I have been returning null by default but firebug does not like that. Is there a specific status code I should return and perhaps encapsulate

Re: [Stripes-users] What is the proper empty resolution for an ajax update?

2011-09-29 Thread Samuel Santos
Are you expecting a JSON object? If so, you can return a JavaScriptResolution(null) or a StreamingResolution(application/json, ). -- Samuel Santos http://www.samaxes.com/ On Fri, Sep 30, 2011 at 2:23 AM, fatefree fatef...@gmail.com wrote: Just curious, in the event of some ajax update which

Re: [Stripes-users] What is the proper empty resolution for an ajax update?

2011-09-29 Thread Freddy Daoud
You could also return the 204 status code, which means success with No Content. Freddy On Friday, September 30, 2011 2:39 AM, Samuel Santos sama...@gmail.com wrote: Are you expecting a JSON object? If so, you can return a JavaScriptResolution(null) or a