I want to send value(_sectionName in examples) from flex end to servlet but I can't send data from flex end to servlet. What is the solution?
var url:String="http://localhost:8080/xyz/UploadServlet";
var request:URLRequest=new URLRequest(url);
request.method=URLRequestMethod.POST;
var variables:URLVariables=new URLVariables();
variables.sectionName=_sectionName;
variables.reviewType=_sectionName;
request.data= variables;
_fileRef.upload(request);