Anyone with a solution to my following problem????
Manu Dhanda wrote:
>
> Hii
>
> On the click of a button, am calling following method:
>
> public function openNewWindow(event:MouseEvent):void {
> var url:URLRequest = new
> URLRequest("http://cco061-03:8088/openreports/executeReport.action");
> var uv:URLVariables = new URLVariables();
> url.method = "POST";
> uv.reportId="76";
> uv.userName="admin";
> uv.password="admin";
> uv.exportType="2";
> uv.displayInline="true";
> uv.promptForParameters="false";
> uv.ttSearchCasesParam="lbl_list like '2%CRUD_CR%ISGcq00370199%'";
> url.data = uv;
> navigateToURL(url,"_blank");
> }
>
> if I 'll change the url.method = "GET", it is working fine.. but not with
> POST. WHY???
>
> Anyone have reasons and solutions for that???
>
> Thanks.
>
--
View this message in context:
http://www.nabble.com/navigateToURL%28%29--GET-method-works-fine%2C-but-POST-doesn%27t-work.-tf4478874.html#a12854323
Sent from the FlexCoders mailing list archive at Nabble.com.