1 Reply Latest reply on Feb 10, 2009 3:02 AM by rvkishore.rvkishore.hotmail.com

    2.1.1 EL issue

    rvkishore.rvkishore.hotmail.com

      We recently migrated to 2.1.1 GA from 2.0.1. We noticed that the JBoss EL does not work as in 2.0.1


      Specifically, the problem code is below


      |
      --------------------------------------
                    <td valign="top" align="left" style="width:500px;">
                      <h1>
                        <h:outputText value="#{sheet.id}" />
                      </h1>
                      <h1>
                        <h:outputText value="#{sheet.name}" />
                      </h1>
                      <p>
                        <h:outputText value="#{sheet.description}" />
                      </p>
                        <s:link id="downloadFile" action="#{fileDownload.download(sheet.id)}">Download File</s:link></s:div>
      -------------------------------------
      |



      This was working properly with the sheet.id being resolved properly and the fileDownload.download method being called properly. But after the migration we are seeing that the 'sheet.id' part is not being resolved in the download link due to which it fails.
      The rest of the page displays properly, so the 'sheet' object is definitely available when the page is being rendered.


      Has something changed in the way the arguments need to be formed in the EL?


      Please advise.