Carl D. Phillips

Greenhorn
+ Follow
since Jul 19, 2005
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 Carl D. Phillips

You can package the required jar files in your application classpath (i.e., web/WEB-INF/lib). Don't place them in WebSphere's global classpath as they will conflict with IBM's...
18 years ago
Just place the properties file in your application classpath, and do the following in your Java code:

Properties props = new Properties();
props.load(this.getClass().getResourceAsStream("/somefile.properties"));
18 years ago
We've never seen this problem. We have 5 production, 1 test and 1 development servers running WAS 5.0.2.
18 years ago