Bugs item #968559, was opened at 2004-06-08 01:57
Message generated for change (Comment added) made by fgiust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=536613&aid=968559&group_id=73068

Category: export
Group: planned for 1.0
Status: Open
Resolution: None
Priority: 5
Submitted By: Dan T. Tran (danttran)
>Assigned to: fabrizio giustina (fgiust)
Summary: Export cancel out my UTF8 filter

Initial Comment:
I have a filter to set encoding as UTF-8. However the 
following block of code the TableTag.java
undo this filter and break my export data.

            try
            {
                // this will also reset headers, needed when 
the server is sending a "no-cache" header
                this.pageContext.getResponse().reset();
                out.clear();
            }

So I had to modified it as 

            try
            {
                // this will also reset headers, needed when 
the server is sending a "no-cache" header
                //this.pageContext.getResponse().reset();
                out.clear();
            }

to keep my export code working.



----------------------------------------------------------------------

>Comment By: fabrizio giustina (fgiust)
Date: 2004-06-18 21:24

Message:
Logged In: YES 
user_id=798060

note that without the reset() you can't make export working 
using https. I will try to fix it removing only "bad" (no-cache, 
expire, private) headers

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=536613&aid=968559&group_id=73068


-------------------------------------------------------
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to