This is pretty weird. I have a form on one page that's working when I have the method set to GET. This is the URL.
http://50.57.92.90:8080/pentaho/cont...sword=password
If I change the method to get it works. But if I use POST it won't work at all. Is this a bug or is passing parameters to reports only capable via get? Seems a bit odd to me.
Here is the html I'm calling from. Dead simple.
<html>
<head>
</head>
<body>
<form id="testform" name="testform" action="http://{@Application.BIServerURL}" method="get" target="new">
<input type="hidden" id="solution" name="solution" value="RDreps" />
<input type="hidden" id="path" name="path" value="" />
<input type="hidden" id="name" name="name" value="ByWritingCompany.prpt" />
<input type="hidden" id="userid" name="userid" value="{@Application.BIServerUserID}" />
<input type="hidden" id="password" name="password" value="{@Application.BIServerPassword}" />
<input type="submit" value="Load" />
</form>
</body>
</html>
Thanks in advance guys.
Walter.
http://50.57.92.90:8080/pentaho/cont...sword=password
If I change the method to get it works. But if I use POST it won't work at all. Is this a bug or is passing parameters to reports only capable via get? Seems a bit odd to me.
Here is the html I'm calling from. Dead simple.
<html>
<head>
</head>
<body>
<form id="testform" name="testform" action="http://{@Application.BIServerURL}" method="get" target="new">
<input type="hidden" id="solution" name="solution" value="RDreps" />
<input type="hidden" id="path" name="path" value="" />
<input type="hidden" id="name" name="name" value="ByWritingCompany.prpt" />
<input type="hidden" id="userid" name="userid" value="{@Application.BIServerUserID}" />
<input type="hidden" id="password" name="password" value="{@Application.BIServerPassword}" />
<input type="submit" value="Load" />
</form>
</body>
</html>
Thanks in advance guys.
Walter.