Engine Service proxies don't correctly forward "post" parameter of 
IEngineService.getLink
-----------------------------------------------------------------------------------------

         Key: TAPESTRY-808
         URL: http://issues.apache.org/jira/browse/TAPESTRY-808
     Project: Tapestry
        Type: Bug
  Components: Framework  
    Versions: 4.0    
    Reporter: Jeff Lubetkin


>From the code for org.apache.tapestry.services.impl.EngineServiceOuterProxy:

    public ILink getLink(boolean post, Object parameter)
    {
        return _delegate.getLink(false, parameter);
    }

Note that the "post" parameter is ignored and false is always passed through to 
the delegate.  Not sure what the extent of the downstream effects is, but I've 
run in to one: this prevents persistence strategies from ever acting on a 
post=true case. 

The same code issue exists in EngineServiceInnerProxy as well.  Making the 
obvious changes in both cases seems to work great.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to