Dimitrios,

 import flash.net.*;

 Use the  sendToURL(urlRequest) command.

Tony D


Dimitrios Gianninas <[EMAIL PROTECTED]> wrote:                                  
   
Yup tried that too :) I've tried GET, POST and using the  servername, localhost 
and my direct IP, no go.
  
 If I call my servlet directly in a browser, the download  works like a charm:
 http://localhost:7001/billing/servlet/FileSvlt?operation=DOWNLOAD&fileID=5
  
 I'm sure its something very very small.., any kind of debug  I can turn on?
  
 Dimitrios  Gianninas
 RIA  Developer
 Optimal  Payments Inc.
  

  
---------------------------------
 From: flexcoders@yahoogroups.com  [mailto:[EMAIL PROTECTED] On Behalf Of Brian 
 Holmes
Sent: Tuesday, December 12, 2006 4:34 PM
To:  flexcoders@yahoogroups.com
Subject: RE: [flexcoders] file download  doesnt work?


 
   
Not Sure if this will work Dimitrios,
  But I seem to  remember having similar issues and reading  somewhere that the 
constructor of the Url Request expected a url as a  string.
  
  var  req:URLRequest = new  URLRequest("http://localhost: 7001/billing/  
servlet/FileSvlt ") ;
 req.method = URLRequestMethod.  GET;
 req.data =  new  URLVariables("operation=DOWNLOAD ");
 try {
   var fr:FileReference = new  FileReference( );
   fr.download( req );
 }
 catch( e:Error ) {
   trace( "Download error: " +  e.message );
 }

  
  
  
 I  double checked some code of mine and that's exactly how i got it working.  
Anyways, like I said, not sure if it will help,
 You probably have already tried it.
  
 Brian..

  
---------------------------------
 From: flexcoders@yahoogroups.com  [mailto:[EMAIL PROTECTED] On Behalf Of 
Dimitrios  Gianninas
Sent: Tuesday, December 12, 2006 2:22 PM
To:  flexcoders@yahoogroups.com
Subject: RE: [flexcoders] file  download doesnt work?


 
 Yup tried that too... I'm perplexed!
  
 Dimitrios  Gianninas
 RIA  Developer
 Optimal  Payments Inc.
  

  
---------------------------------
 From: flexcoders@yahoogroups.com  [mailto:[EMAIL PROTECTED] On Behalf Of Valy  
Sivec
Sent: Tuesday, December 12, 2006 10:26 AM
To:  flexcoders@yahoogroups.com
Subject: Re: [flexcoders] file  download doesnt work?


 
   
 How about  changing reg.method="POST" instead GET?.

Valy



 -----  Original Message ----
From: Dimitrios Gianninas  <[EMAIL PROTECTED]>
To:  flexcoders@yahoogroups.com
Sent: Tuesday, December 12, 2006 9:28:40  AM
Subject: RE: [flexcoders] file download doesnt work?

  
 Ok I switch the code around a bit and it looks more like  this now:
  
 var req:URLRequest =  new URLRequest()  ;
 req.url  = "http://localhost:  7001/billing/ servlet/FileSvlt ";
 req.method =  URLRequestMethod. GET;
 req.data  = new  URLVariables("operation=DOWNLOAD ");
 try {
   var fr:FileReference = new  FileReference( );
   fr.download( req  );
 }
 catch( e:Error )  {
   trace( "Download error: " +  e.message );
 }
  
  
 But it still doesn't work, my Java servlet doesn't get  called at all. I have 
log messages in the service(), doGet() and doPost()  methods and I see nothing. 
My upload works like a charm.
  
  
 Dimitrios  Gianninas
 RIA  Developer
 Optimal  Payments Inc.
  

  
---------------------------------
 From: [EMAIL PROTECTED] ups.com  [mailto:flexcoders@ yahoogroups. com] On 
Behalf Of Dimitrios  Gianninas
Sent: Monday, December 11, 2006 3:15 PM
To:  [EMAIL PROTECTED] ups.com
Subject: [flexcoders] file download doesnt  work?


 
  
  I have the code below to download a file from my J2EE  server but it doesn't 
work. the dialog box to select the folder and file come  up, click OK and 
nothing happens.
 I see no  log on the server side, meaning it is not calling my servlet. Upload 
 works.
 Any ideas?
 var params:URLVariables = new URLVariables( );
 var  req:URLRequest = new URLRequest("http://localhost: 7001/billing/ 
servlet/FileSvlt  ");
 req.method = URLRequestMethod. GET;
 req.data = new URLVariables("operation=DOWNLOAD&fileId=2");
 
 var fr:FileReference =  new FileReference(  );
 fr.download( req, "bla.txt" );

  
 Dimitrios  Gianninas
 RIA  Developer
 Optimal  Payments Inc.
  
                   AVIS        IMPORTANT
            WARNING
               Ce message        électronique et ses pièces jointes peuvent 
contenir des renseignements        confidentiels, exclusifs ou légalement 
privilégiés destinés au seul usage        du destinataire visé. L’expéditeur 
original ne renonce à aucun privilège        ou à aucun autre droit si le 
présent message a été transmis        involontairement ou s’il est retransmis 
sans son autorisation. Si vous        n’êtes pas le destinataire visé du 
présent message ou si vous l’avez reçu        par erreur, veuillez cesser 
immédiatement de le lire et le supprimer,        ainsi que toutes ses pièces 
jointes, de votre système. La lecture, la        distribution, la copie ou tout 
autre usage du présent message ou de ses        pièces jointes par des 
personnes autres que le destinataire visé ne sont        pas autorisés et 
pourraient être illégaux. Si vous avez reçu ce courrier        électronique par 
erreur, veuillez en aviser      l’expéditeur.
            This        electronic message and its attachments may contain 
confidential,        proprietary or legally privileged information, which is 
solely for the use        of the intended recipient. No privilege or other 
rights are waived by any        unintended transmission or unauthorized 
retransmission of this message. If        you are not the intended recipient of 
this message, or if you have        received it in error, you should 
immediately stop reading this message and        delete it and all attachments 
from your system. The reading, distribution,        copying or other use of 
this message or its attachments by unintended        recipients is unauthorized 
and may be unlawful. If you have received this        e-mail in error, please 
notify the  sender.
 







 
---------------------------------
 Any questions? Get answers on any topic at Yahoo!  Answers. Try it now.  

   

---------------------------------
 ***
The information in this e-mail is confidential and intended solely for  the 
individual or entity to whom it is addressed. If you have received this  e-mail 
in error please notify the sender by return e-mail delete this e-mail and  
refrain from any disclosure or action based on the information.
***  

 

 
     
                       

 
---------------------------------
Need a quick answer? Get one in minutes from people who know. Ask your question 
on Yahoo! Answers.

Reply via email to