Forms 11g - Passing parameter with POST instead of URL
Hello,
For security reasons I need to open my Forms 11g application by passing parameters in POST method.
I've created a simple HTML file like this:
<HTML>
<BODY>
<form action="http://10.32.2.2:7779/forms/frmservlet" method="post">
<input name="config" value="MY_CONFIG">
<input name="otherparams" value="myparam1=123+myparam2=abc">
<input type="submit" value=" Submit">
</form>
</BODY>
</HTML>
It work for the parameter config but not for the parameter otherparams.
Forms received the value of otherparams as a whole. The value of otherparams is not separated between myparam1 and myparam2.
Parameter myparam1 has the value 123+myparam2=abc.
Checking inside the webutiljpi.htm