Dave Makower writes: > Stack Overflow problems in FormCardResource I think I got it :-) The problem is the following: - get in FormCardResource calls super.get iff: getConvertFlag() && request.hasState("query") [your case] - super.get is PsotableResource.get, which under above conditions call handle (convert-get is true, so query is converted to post'ed data, which triggers the call to handle) - Under some circumstances (the one you probably hit), handle calls get with the *same* request, hence looping back to step 1) The fix, I guess, is to change w3c.jigsaw.forms.FormCardResource (line 330 here) from: // If a location provided, redirect else get: if ( urlloc == null ) { return get(request) ; } else { to: // If a location provided, redirect else get: if ( urlloc == null ) { request.delState("query"); return get(request) ; } else { As I cannot reproduce the bug here, could you tell me if this solved the problem (in which case I'll integrate it) Thanks, Anselm.Received on Wednesday, 26 February 1997 07:41:33 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Monday, 9 April 2012 12:13:26 GMT