<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    using hidden variables: different behaviour windows/linux
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/dave51">davide galax</a> in <i>Beginner's Corner</i> - <a href="https://community.jboss.org/message/647318#647318">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p><span class="postbody">I'm developing my Java struts application with Netbeans 7.0 Ide. <br/> I'm using some hidden variables to pass variable value from one jsp to another ( I don't wanna exagerate with session scope's variables ) </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> &lt;logic:iterate property ="lines" name="SuccessForm" id="riga" indexId="nriga" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;tr&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;td align="right"&gt;&lt;bean:write name="riga" property="codiceProc" /&gt;&lt;/td&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;td align="right"&gt;&lt;bean:write name="riga" property="descProc" /&gt;&lt;/td&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;td align="right"&gt;&lt;bean:write name="riga" property="impAvere"/&gt; &lt;/td&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;td align="right"&gt;&lt;bean:write name="riga" property="impDare" /&gt;&lt;/td&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;td align="right"&gt;&lt;bean:write name="riga" property="impDiff" /&gt;&lt;/td&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;html:hidden property="codiceProc" value="${SuccessForm.lines[nriga].codiceProc}" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;html:hidden property="descProc" value="${SuccessForm.lines[nriga].descProc}" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;html:hidden property="impAvere" value='${SuccessForm.lines[nriga].impAvere}' /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;html:hidden property="impDare" value='${SuccessForm.lines[nriga].impDare}' /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;html:hidden property="impDiff" value='${SuccessForm.lines[nriga].impDiff}' /&gt; </p><p>&#160;&#160;&#160;&#160; &lt;/tr&gt;</p><p> &lt;/logic:iterate&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>When I call the next servlet action I retrieve the hidden variable's value and I display it on successive jsp page.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This running fine with Jboss installed locally on my pc in windows xp operating system, but when I deploy the application on our linux server the value of hidden variables textually:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> ${SuccessForm.lines[nriga].codiceProc} ...</p><p>&#160;&#160;&#160;&#160; ${SuccessForm.lines[nriga].descProc} ...</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>the Jboss I've installed on my pc is&#160; jboss5.1.0 , the version installed on our company server is&#160; jboss-4.0.5.GA.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>maybe the valorization of hidden variables is deplorable? </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Many thanks in advance</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/647318#647318">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in Beginner's Corner at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2075">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>