I looked over the code I have for the download. It seems weird that the 
FileReference class doesn't work as it should and probably somebody for Adobe 
can shed some light here.

Here is the code I have used:

   var request:URLRequest = new URLRequest("download.action");
  
request.method = URLRequestMethod.GET;                      
  var 
params:URLVariables = new URLVariables();         
  params.id = "REPLACE_ME";             
  request.data = params;
  navigateToURL(request, "_self");


HTH,
Valy





----- Original Message ----
From: Dimitrios Gianninas <[EMAIL PROTECTED]>
To: [email protected]
Sent: Wednesday, December 13, 2006 1:06:02 AM
Subject: RE: [flexcoders] Re: file download doesnt work?









  


    
            



Close, now my servlet gets called, but the flash player 
never prompts me where to save my file, so in essence, nothing is 
downloaded.

 

Maybe my player is foubared!

 

Dimitrios 
Gianninas

RIA 
Developer

Optimal 
Payments Inc.

 




From: [EMAIL PROTECTED] ups.com 
[mailto:flexcoders@ yahoogroups. com] On Behalf Of 
dubreeze2001
Sent: Tuesday, December 12, 2006 10:53 
PM
To: [EMAIL PROTECTED] ups.com
Subject: [flexcoders] Re: 
file download doesnt work?






Dimitrios,

This should work for you:
import flash.net.*;

var 
url:String;
url="http://localhost: 7001/billing/ servlet/FileSvlt ?operation="; 

url +="DOWNLOAD& fileId=2" ;

var 
urlRequest:URLReque st = new 
URLRequest(url) ;
sendToURL(urlReques t);

Tony D

--- In 
[EMAIL PROTECTED] ups.com, 
"Dimitrios Gianninas"
<dimitrios.giannina [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: [EMAIL PROTECTED] ups.com 
[mailto:[EMAIL PROTECTED] ups.com]
On 
Behalf Of Brian Holmes
> Sent: Tuesday, December 12, 2006 4:34 PM
> 
To: [EMAIL PROTECTED] ups.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
<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: [EMAIL PROTECTED] ups.com 
[mailto:[EMAIL PROTECTED] ups.com]
On 
Behalf Of Dimitrios Gianninas
> Sent: Tuesday, December 12, 2006 2:22 
PM
> To: [EMAIL PROTECTED] ups.com
> 
Subject: RE: [flexcoders] file download doesnt work?
> 
> 
> 
Yup tried that too... I'm perplexed!
> 
> Dimitrios 
Gianninas
> RIA Developer
> Optimal Payments Inc.
> 
> 

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

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

> Valy
> 
> 
> 
> 
> ----- Original Message 
----
> From: Dimitrios Gianninas 
<dimitrios.giannina [EMAIL PROTECTED]>
> To: [EMAIL PROTECTED] ups.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=X3oDMTFvbG NhMGE3BF9TAzM5Nj U0NTEwOARfcwMzOT 
Y1NDUxMDMEc2VjA2 1haWxfdGFnbGluZQ RzbGsDbWFpbF90YW cx>
. 
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.
> 
*** 
> 
> 
> 
> -- 
> 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.
>





    
  

    
    




<!--

#ygrp-mlmsg {font-size:13px;font-family:arial,helvetica,clean,sans-serif;}
#ygrp-mlmsg table {font-size:inherit;font:100%;}
#ygrp-mlmsg select, input, textarea {font:99% arial,helvetica,clean,sans-serif;}
#ygrp-mlmsg pre, code {font:115% monospace;}
#ygrp-mlmsg * {line-height:1.22em;}
#ygrp-text{
font-family:Georgia;
}
#ygrp-text p{
margin:0 0 1em 0;
}
#ygrp-tpmsgs{
font-family:Arial;
clear:both;
}
#ygrp-vitnav{
padding-top:10px;
font-family:Verdana;
font-size:77%;
margin:0;
}
#ygrp-vitnav a{
padding:0 1px;
}
#ygrp-actbar{
clear:both;
margin:25px 0;
white-space:nowrap;
color:#666;
text-align:right;
}
#ygrp-actbar .left{
float:left;
white-space:nowrap;
}
.bld{font-weight:bold;}
#ygrp-grft{
font-family:Verdana;
font-size:77%;
padding:15px 0;
}
#ygrp-ft{
font-family:verdana;
font-size:77%;
border-top:1px solid #666;
padding:5px 0;
}
#ygrp-mlmsg #logo{
padding-bottom:10px;
}

#ygrp-vital{
background-color:#e0ecee;
margin-bottom:20px;
padding:2px 0 8px 8px;
}
#ygrp-vital #vithd{
font-size:77%;
font-family:Verdana;
font-weight:bold;
color:#333;
text-transform:uppercase;
}
#ygrp-vital ul{
padding:0;
margin:2px 0;
}
#ygrp-vital ul li{
list-style-type:none;
clear:both;
border:1px solid #e0ecee;
}
#ygrp-vital ul li .ct{
font-weight:bold;
color:#ff7900;
float:right;
width:2em;
text-align:right;
padding-right:.5em;
}
#ygrp-vital ul li .cat{
font-weight:bold;
}
#ygrp-vital a {
text-decoration:none;
}

#ygrp-vital a:hover{
text-decoration:underline;
}

#ygrp-sponsor #hd{
color:#999;
font-size:77%;
}
#ygrp-sponsor #ov{
padding:6px 13px;
background-color:#e0ecee;
margin-bottom:20px;
}
#ygrp-sponsor #ov ul{
padding:0 0 0 8px;
margin:0;
}
#ygrp-sponsor #ov li{
list-style-type:square;
padding:6px 0;
font-size:77%;
}
#ygrp-sponsor #ov li a{
text-decoration:none;
font-size:130%;
}
#ygrp-sponsor #nc {
background-color:#eee;
margin-bottom:20px;
padding:0 8px;
}
#ygrp-sponsor .ad{
padding:8px 0;
}
#ygrp-sponsor .ad #hd1{
font-family:Arial;
font-weight:bold;
color:#628c2a;
font-size:100%;
line-height:122%;
}
#ygrp-sponsor .ad a{
text-decoration:none;
}
#ygrp-sponsor .ad a:hover{
text-decoration:underline;
}
#ygrp-sponsor .ad p{
margin:0;
}
o {font-size:0;}
.MsoNormal {
margin:0 0 0 0;
}
#ygrp-text tt{
font-size:120%;
}
blockquote{margin:0 0 0 4px;}
.replbq {margin:4;}
-->








 
____________________________________________________________________________________
Cheap talk?
Check out Yahoo! Messenger's low PC-to-Phone call rates.
http://voice.yahoo.com

Reply via email to