Jim Perryman

Greenhorn
+ Follow
since May 04, 2007
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 Jim Perryman

I've been looking for the best resource to pursue my SCWCD and the reviews for this book, as well as some of your other books, are outstanding. I'll give this one a shot. I'm sure it will prove to be very helpful.
Just looking at the table of contents, it looks like this could be just what the doctor ordered. I used to love software development but, I must admit, I don't much anymore. How do you make yourself "have fun" once the passion has left?
14 years ago
This is not really a question of loyalty. In the whole scheme of things, your responsibility is to your family and your career. The best thing you can do is keep your eyes open for an opportunity that you feel is a good long-term fit for you. If your current company is, in fact, going down the drain, they can't reasonably consider you disloyal for leaving. But don't panic and take the first thing that comes along. Float your resume and wait for something that fits your career goals.
14 years ago
If you are using WebSphere, there are some decent tutorials in the Help included with the package. You should also consider becoming a member of myEclipse for about $32/yr. There are some very good tutorials and examples through that site http://myeclipseide.org/. Good luck!
15 years ago
Using RAD 7 with WAS 6.1...I have the following code in my jsp:



In my project�s Java Build Path, I am including another project, which also has a com.company.Constants class. In WAS 6.0, the code above worked fine. However, when I run the app on WAS 6.1, I receive the following error:

JSPG0049E: /WEB-INF/pages/quote/contact_info_form.jsp failed to compile :
JSPG0091E: An error occurred at line: 149 in the file: /WEB-INF/pages/quote/contact_info_form.jsp
JSPG0093E: Generated servlet error from file: /WEB-INF/pages/quote/contact_info_form.jsp
c:\unigroup\ebiz\rad7server\profiles\ebiz61Server\temp\localhost\server1\PublicApplicationsEAR\PublicApplications.war\WEB-INF\pages\quote\_contact_5F_info_5F_form.java : 469 : Constants.ESTIMATE_TITLE_MR cannot be resolved

From all indications, it appears the jsp can�t compile because it is compiling against the Constants class in the included project rather than the parent project. However, code-assist and hot link in the source file finds the correct class. Can anyone tell me why the server would not be able to find the parent project's Constants class for compilation? Thanks!
[ October 14, 2008: Message edited by: Jim Perryman ]
15 years ago
Do the third party AJAX development tools offer much savings in regard to time & effort or is it just as easy to develop from scratch. If the tools are valuable, is there any one that stands head & shoulders above the rest?
Sorry, consider it done.
16 years ago
JSF
If I have an UploadedFile object and I want to create a duplicate of that object (not just a reference to the same), how can I do that? I was going to simply take the attributes such as the file content, input stream, content type, name, and size and set them in a new object but there are no "setter" methods. I'm sure this must be easy and I'm just not getting it. Can anyone clue me in?
16 years ago
JSF