What tools are available for J2ME development? Are there emulators avaiable for clients? In the web world the life is miserable because we need to support...
Sue, Thanks in advance for giving a copy of your book. :-) Here are my questions. What phone or connected PDA device would you recommend to test our...
Hey Sue, Please talk about your favorite models of phones for J2ME (and other platforms if you have any opinions about other platforms). Siegfried ... ...
Calen, Thank you for the heads-up. I hadn't heard that Gavin King dislikes DBCP for connection pooling with Hibernate. I also had not heard of anyone ...
Hi, DJUGers: I have an urgent question. I am using STRUS1.1 in a 3 tier web app. The requirement needs after users do some search and get many rows back, they...
... You'll have to do two things. First, whatever page you go to you'll have to set the mime type to text/plain (there is no official mime type for CSV). You...
... Both C3P0 and Proxool are meant to be pool managers on top of a DriverManager-based JDBC driver. I've use C3P0 in the past and I didn't have any problems...
If you still break out into a sweat whenever someone starts talking about the exciting field of mobile computing, maybe it's time to get on the bandwagon and...
Jameleon, JFunc, Cactus.... I'm quite confused. There's so many testing frameworks out there that I don't know where to start. What combination of testing...
Although I'm experienced with J2EE application servers, I'm new to Oracle 9iAS and I'm having problems deploying EJBs that depend on JAR files. I'm running...
Tom, Did you try the manifest file. You need to have all the referenced jars in the class-path element in the manifest file of the refering jar file. The...
Hi, DJUGer: In my jsp, I want to use <bean:define id="maxrows" value="<bean:message key="com.myapp.maxrows"/>"/> to set page vaiable to control max rows in the...
Hey Everyone, I was just wondering if anyone's heading out to JavaOne next week. I'll be out there-- it'd be cool to meet up and chat with any other djug'ers ...
I'll be at JavaOne from Sunday noon through Thursday. I'm staying at the King George on Mason. I'd like to see any fellow Denver JUG members there. Give me a...
DENVER JAVA USERS GROUP http://www.denverjug.org Bill Dudney's talk this Wednesday, July 14th will take you through the basics of building a JavaServer Faces...
XP Denver's July meeting is scheduled for Monday, July 26th with special guest speaker Jim Highsmith. The meeting will be held at the Qwest Auditorium in...
hi all, Is it a good practice to keep JSP pages under web-inf folder to prevent direct access to JSP pages. Are there any issues associated in doing this. ...
hi all, In a J2EE internet application, what is the best way to store/manage images and word document templates? Should these be stored inside a database table...
The J2EE specification does not allow clients to view JSP pages in their raw form. They are always compiled first. There might be away around this by hacking...
Ok, so this might be a little trivial... In Java class, where do you put your fields? Near the top or near the bottom? I'm used to writing out all my fields...
... My understanding is that the convention on ordering class elements is this: constants static members non-static members static initializers constructors ...
While it doesn't explicitly state the order in which ivars, constructors, methods, etc. should appear take a look at the "Code Conventions for the Java...