Hai friends, Are u looking for CMM LEVEL COMPANIES and have dream to work with them. Here is opportunities kocking at ur door step, then u waiting for what? If...
Hai friends, Are u looking for CMM LEVEL COMPANIES and have dream to work with them. Here is opportunities kocking at ur door step, then u waiting for what? If...
If you are the "Argyn" who was an Elf Archer in the Lord of the Rings saga, then your wait for a work permit may indeed be a long one. :) Ed James - still...
Brian, AOP finally clicked for me after your comparisons to Servlet Filters, the Decorator Pattern, and LISP. Right now I am rereading the Visitor Pattern in...
You can use WinRunner for this purpose. It lets you test GUI's functionality as well as system load on the application. Regards, - ramanand ... From: mbahloul...
... for example, if you want to do govt stuff, then they'll require section 508 compliance. There are toos which claim that they can check your UI for...
Good point Argyn! It all depends upon why you are testing. 1. Are you validating GUI functionality? 2. Are you validating against a specific set of functional...
... I know of two companies that test for 508 compliance - http://www.deque.com/ and another one called 508 Bobby, but I have not used either, so cannot speak...
I've used Boddy for testing 508 compliance of a web application. It does an ok job of alerting you to the most common problems and lowest level of compliance,...
Enter your vote today! A new poll has been created for the novajug group: Do you plan to attend the May 11th Enterprise SIG meeting at IMC/Reston? o Yes o No ...
novajug@yahoogroups.com
May 6, 2004 2:52 pm
6964
Hi, I am working on an application that has quite a few values hardcoded. I wanted to use a properties file. I tested the class that gets properties fromt he...
Lisa, There seems to be some basic problem in your class. - Your ReadProps class is a singleton with a getInstance method, simply creating the instance. - In...
Lisa, I guess it is a classpath issue. Its is not able to locate the property file, you can load the property file from a specific class location using...
We would like to remind you of this upcoming event. NovaJUG Enterprise SIG meeting Date: Tuesday, May 11, 2004 Time: 6:00PM - 9:00PM EDT (GMT-04:00) Enterprise...
novajug@yahoogroups.com
May 8, 2004 10:04 pm
6970
Hi Group, I tried some of the changes and adjusted the file I am using to create the properties. Here is the code: package com.bah.dia.util; import...
Use ClassLoader to locate resources such as configuration file(s) instead of using the absolute path to locate your property file, use the following: ...
Lisa, You're correct--the try-catch block around the property-loading method is never reached, 'cuz there's nothing calling it right now. There are several...
I need to hide all files from prying eyes (those outside the application) for a J2EE application. Does anyone know how to do this? Thanks. --Tim Sabin...
I've managed to isolate the problem. If I call PropertyLoader, it will see all of the files, the problem occurs if I call p.getProperties(key); that returns...
Lisa, Take a look at the two Java files below and a corresponding file. Copy them separately in corresponding Java and properties files. Compile and run the ...
I am using a JSP that depends on a particular servlet for many of its values. However, it appears that referencing servlet values and methods from the JSP is...
We would like to remind you of this upcoming event. NovaJUG Enterprise SIG meeting Date: Tuesday, May 11, 2004 Time: 6:00PM - 9:00PM EDT (GMT-04:00) Enterprise...
novajug@yahoogroups.com
May 10, 2004 10:05 pm
6981
I've got it working. I needed to call the get properties method on the instatiated properties class within a method. So I created an Init method that retrives...