Hello
I'm migrating my application from woodstock to icefaces and i got stuck on the next issue:
At the end of the process, my application has to post to an external (totally out of my server) url, this url can change and could be https or http. So, in my woodstock application i got something like this.
Code:
<form action="${Transaccion.idFactura}" id="datosEnvio" method="POST" name="datosEnvio">
<input name="codigoFactura" type="hidden" value="${Transaccion.idFactura}"/>
<input name="valorFactura" type="hidden" value="${Transaccion.valor}"/>
<input name="codigoAutorizacion" type="hidden" value="${Transaccion.codigoAutorizacion}"/>
<input name="firmaTuCompra" type="hidden" value="${Transaccion.encodedAnswer}"/>
</form>
As you can see, i got the parameters from my bean, named Transaccion using the jstl access bean ${}.
But now, when i try to do the same using icefaces, the ${Transaccion.property} is not parsed. How can i solve this?
Thans a lot.