Chuck Kulchar

Greenhorn
+ Follow
since Aug 11, 2003
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 Chuck Kulchar

Creating Jasper Reports using iReport is cake and free.
I have my <img ...> tag point to a servlet which gets a chart using JFree chart (jfree.org), then uses a class included in the Jfree stuff that will display the image with the OutputStream. Display line is something like:
ChartUtilities.writeChartAsJPEG(out,chart,820,380);
20 years ago
JSP
Turns out that it is a Websphere 4.0 test environment error, when I deployed to the QA box it worked a-ok. Just thought I'd pass on the word
20 years ago
JSP
Hey everyone, first post
Anyways, this code from my jsp:

always returns false. If I call the same request.isUserInRole("requester") from the java it returns true like it should. I have ahold of my user in the jsp as <%= request.getRemoteUser()) %> returns the right name. Roles are defined in my web.xml and also my application bindings, dont know if Im missing something?
Any help is greatly appreciated! Thank you
[ August 12, 2003: Message edited by: Chuck Kulchar ]
20 years ago
JSP