I have a compression servlet demo available from
my site (www.christianbollmeyer.de) which should
basically do everything you're asking for. Used
this to track down someone's problem with gzip
and different browser clients, so it's a hack more
or less. The code from the doGet() method goes
to the Action's execute() one.

-- Chris.

----- Original Message -----
From: "Viral_Thakkar" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Monday, December 08, 2003 1:17 PM
Subject: RE: downloading of files


Can u please look at

http://www.mail-archive.com/[EMAIL PROTECTED]/msg15750.html

and tell me what code need to go in the download action class?

-----Original Message-----
From: Firat TIRYAKI [mailto:[EMAIL PROTECTED]
Sent: Monday, December 08, 2003 5:39 PM
To: Struts Users Mailing List
Subject: Re: downloading of files

well, if you want to authenticate users to download the files, your
software
should handle the direct  file requests (for example
http://localhost/download/x.gif), because the direck file requests does
not
call action servlet in a standart struts designed web.xml file. With a
servlet you can manage the direct requests, URLs like the example above.
Let
me give you the web.xml part to give you the idea

<servlet>

<servlet-name>DownloadAccessor</servlet-name>

<display-name>DownloadAccessor</display-name>

<servlet-class>com.mypackage.DownloadAccessor</servlet-class>

<load-on-startup>10</load-on-startup>

</servlet>



<servlet-mapping>

<servlet-name>DownloadAccessor</servlet-name>

<url-pattern>/downloads/*</url-pattern>

</servlet-mapping>



F.



----- Original Message -----
From: "Viral_Thakkar" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, December 08, 2003 1:55 PM
Subject: RE: downloading of files


Should I write the action class for the download functionality or
servlet code required?



-----Original Message-----
From: Firat TIRYAKI [mailto:[EMAIL PROTECTED]
Sent: Monday, December 08, 2003 3:45 PM
To: Struts Users Mailing List
Subject: Re: downloading of files

Define a download accessor class (that you'll write using servlet
functionality) in the web.xml file that manages the file when requested.

F.

----- Original Message -----
From: "Viral_Thakkar" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, December 08, 2003 12:00 PM
Subject: RE: downloading of files


I have a screen which provides support to upload and download the files.

To upload the files, I am using the struts example.

Now, I need to know how to implement the "download/display details"
functionality.

Regards,
Viral

-----Original Message-----
From: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]
Sent: Monday, December 08, 2003 3:14 PM
To: Struts Users Mailing List
Subject: Re: downloading of files

I assume that your Action prompts the user (the guy using the browser)
to save the file ?

Viral_Thakkar wrote:

>Is there any struts support to download the files?
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to