I have a requirement where I need to download a file upon accepting license agreement. And I must use cookie to accomplish the task.

Here is the process flow:

User logs in ==> navigates to license agreement page ==> clicks accept

now the request goes DownloadFileAction where I have the following code:

public String execute() {
    String token = getMD5Token();//cookie content
    String fileLocation = "http://myfilehost.net/files/myfile.zip";
    redirectLocation = fileLocation;//for redirect
    Cookie cookie = new Cookie("file.download", token);
    cookie.setMaxAge(300);
    cookie.setDomain("myfilehost.net");
    cookie.setPath("/");
    HttpServletResponse response = ServletActionContext.getResponse();
    response.addCookie(cookie);
    //response.sendRedirect(fileLocation);
    //or
    //response.setHeader("Location", fileLocation);
    return "success";
}
public String getRedirectLocation() {
   return this.redirectLocation;
}
public void setRedirectLocation(String loc) {
   this.redirectLocation = loc;
}

Now, I turned on the live headers and looked after clicking 'accept' button and found no cookie is set in the response, so its getting access denied from 'myhost.net'.

If I use the same cookie information in 'curl' command, I can download the file. So my cookie information is correct, but for some reason my response doesn't have this cookie set.

What am I doing wrong here?

Thanks for the help.

Live header info:

https://localhost/downloadFile.action?version=1.0a

GET /myapp/downloadFile.action?version=1.0a HTTP/1.1
Host: localhost
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0) Gecko/20100101 Firefox/10.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive
Referer: https://localhost/myapp/viewLicenseAgreement.action?version=1.0a

HTTP/1.1 302 Moved Temporarily
Date: Thu, 09 Feb 2012 04:36:50 GMT
Server: Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8r DAV/2 mod_jk/1.2.27
Set-Cookie:  file.download="file.download=expires=1328762510~access=/*~md5=*********************"; Version=1; Domain=myfilehost.net; Max-Age=300; Expires=Thu, 09-Feb-2012 04:41:50 GMT; Path=/
Location: http://myfilehost.net/files/myfile.zip
Content-Length: 0
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/plain

http://myfilehost.net/files/myfile.zip

GET /files/myfile.zip HTTP/1.1
Host: myfilehost.net
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0) Gecko/20100101 Firefox/10.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive

HTTP/1.1 403 Forbidden
Server: ******
Mime-Version: 1.0
Content-Type: text/html
Content-Length: 322
Expires: Thu, 09 Feb 2012 04:31:15 GMT
Cache-Control: max-age=0, no-cache
Pragma: no-cache
Date: Thu, 09 Feb 2012 04:31:15 GMT
Connection: keep-alive
Vary: Accept-Encoding
----------------------------------------------------------

Struts config:

<action name="downloadFile"
        class="com.myapp.DownloadFileAction" method="execute">
        <interceptor-ref name="defaultStack"/>
        <interceptor-ref name="cookie">
            <param name="cookiesName">file.download</param>
            <param name="cookiesValue">*</param>
        </interceptor-ref>          
    <result name="success">${redirectLocation}</result>
</action>

best, Tamil

link|improve this question
where you are setting cookies? in the FileDownloadAction or acceptance action? – Umesh Awasthi Feb 9 at 3:18
when I accept the agreement, I goto FileDownloadAction where I set the cookies as mentioned in the code above. – user1075907 Feb 9 at 3:23
Than i believe Struts2 has nothing to do with the setting cookies. – Umesh Awasthi Feb 9 at 3:28
That sounds good, then, what am I doing wrong so the response misses out my cookie? I understand that the call to 'sendRedirect' is a new request. How can I set the cookie to the new request? – user1075907 Feb 9 at 3:34
aha !! you using sendRedirect? whu don't you use Struts2 Cookies interceptor which will set your action/value-stack with cookies. CookieInterceptor – Umesh Awasthi Feb 9 at 3:36
show 7 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.