alban maillere

Greenhorn
+ Follow
since Nov 06, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by alban maillere

Hello anand,

hum... the code here does not write anything on the disk

It's called a file and a file can be basically anywhere(memory, http, ftp... or hard drive )
17 years ago
hello sven,
i'm not used to mac systems but i can tell you I usually resolve all the accents problems (for european languages) by using ISO-8859-15 (or ISO-8859-1 if the first is not supported)

Hope it helps
17 years ago
did you think about asynchronous generation?
prehaps a small cardinality of the reports being generated can allow this way of optimizing the response time
17 years ago
i didn't really get how you managed to output a pdf directly from the jsp, but however

it's a kinda usual problem with IE. It chooses what to to whith response based on its extension rather than the mime type.

try just adding cheating parameter at the end of the url of the PDF

http://<url_to_the_pdf>&dummy=.pdf

Hope it helps
17 years ago
JSP
how do you "implicitly" import a class in your jsp?
without an import tag for the specific class, it won't work
17 years ago
JSP
I know google check your user agent ...
try something like this
URLConnection urlconnection = yahoo.openConnection();
urlconnection.setRequestProperty("User-Agent",
"Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)");
17 years ago