private var fileRef:FileReference
private function doCreationComplete():void
{
fileRef= new FileReference();
fileRef.addEventListener(Event.COMPLETE, completeHandler);
fileRef.addEventListener(ProgressEvent.PROGRESS, fileRef_progress);
fileRef.addEventListener(Event.SELECT, doSelect );
}
public function doBrowse( event:Event ):void
{
try
{
fileRef.browse();
}
catch (error:Error)
{
trace("Unable to browse for files.");
}
}
public function doSelect( event:Event ):void
{
txtPhoto.text = fileRef.name;
}
public function doSubmit( event:Event ):void
{
var request:URLRequest = new URLRequest( "http://localhost:8080/JustSms/com/contacts/serviceImpl/CSVReader" );
var vars:URLVariables = new URLVariables();
vars.person = txtPerson.text;
request.data = vars;
fileRef.upload( request );
}
function completeHandler(event:Event):void
{
trace("uploaded");
}
private function fileRef_progress(evt:ProgressEvent):void
{
progressBar.visible = true;
}
Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File I/O Error. at uploadcontacts/doCreationComplete()[D:\Flexspace\SMS\src\uploadcontacts.mxml:17] at uploadcontacts/___TitleWindow1_creationComplete()[D:\Flexspace\SMS\src\uploadcontacts.mxml:3] at flash.events::EventDispatcher/dispatchEventFunction()
What is this error?how can i handle this ...and is it correct way to requet Servltet ?? plz help me..