Bugs item #968559, was opened at 2004-06-07 16:57
Message generated for change (Comment added) made by nobody
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: Nobody/Anonymous (nobody)
Date: 2004-06-22 06:58

Message:
Logged In: NO 

Glad the know this bug has attention.  I am sure there are 
lots of folks using UTF8 filter will be very happy to see the 
export encoding still intact.

-D

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

Comment By: fabrizio giustina (fgiust)
Date: 2004-06-18 12: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 sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to