Hi ,
I am accessing flex application running on JBOSS server from Dot
Net Client.Everything is working fine except i am NOT able to send
data in http post.
var variables:URLVariables = new URLVariables();
variables.htmltable = convertDGToHTMLTable(dg);
var u:URLRequest = new URLRequest("ExcelExport.jsp");
u.data = variables; //Pass the variables
u.method = URLRequestMethod.POST; /
ExcelExport.jsp resides in same server directory where app is running
It opens a blank excel file when I access my flex datagrid from dot
net container
However ,I am able to pass data in http post when I run flex
application from browser.
In Nutsell , data is not being passed when application accessed from
dot net client.
Please help me to find solution of this issue.