So does:

  req.url = "http://localhost:7001/billing/servlet/FileSvlt";;

mean that your client and server are one and the same?  Does it work 
if you use a DNS name or IP instead of localhost?

--- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" 
<[EMAIL PROTECTED]> wrote:
>
> 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 
<http://answers.yahoo.com/;_ylc=X3oDMTFvbGNhMGE3BF9TAzM5NjU0NTEwOARfc
wMzOTY1NDUxMDMEc2VjA21haWxfdGFnbGluZQRzbGsDbWFpbF90YWcx> . Try it 
now. 
> 
>  
> 
> -- 
> WARNING
> -------
> 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.
> 
> AVIS IMPORTANT
> --------------
> 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.
>


Reply via email to