Re: connection pooling

2004-09-21 Thread Hugo Pragt
Or check out JBoss's connection pooling www.sf.net Hugo - Original Message - From: RimZim Sinha [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 21, 2004 10:38 AM Subject: connection pooling Does any have connection pooling example code? Thanks Rimzim

Re: Secure static files?

2004-02-25 Thread Hugo Pragt
My two cents: First of all make a filter on your webserver which limits access to those resources You could store the html text as CLOB in your database. That would add a barriere between the user and the html If that is not secure enough: the big databases support encrypted store of LOB's Hugo

JSP debugging in eclipse

2004-02-24 Thread Hugo Pragt
Anyone got JSP debugging in eclipse and external JBoss working? I'd like to be able to step through the JSP code line for line and set breakpoints. I can do this with other elements like EJB's but not with JSP's Regards, Hugo P.s. I have JBoss 3.2.3 and start it using EASIEJBoss in eclipse

Re: Java / MySQL Question

2004-02-11 Thread Hugo Pragt
Well, if you have an autonumber primary key, you could get the largest existing value and generate a random key with the class Random in JBoss Then retrieve the 1random recoord from the random key. Hugo - Original Message - From: Jack Lauman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: Java / MySQL Question

2004-02-11 Thread Hugo Pragt
[mailto:[EMAIL PROTECTED] Hugo Pragt Skickat: den 11 februari 2004 13:40 Till: [EMAIL PROTECTED] Ämne: Re: Java / MySQL Question Well, if you have an autonumber primary key, you could get the largest existing value and generate a random key with the class Random in JBoss Then retrieve

Fw: Singleton Object.

2003-09-17 Thread Hugo Pragt
maybe even better stil: public class MySingleton { /* * The only instance of the editor - a Singleton */ private static final MySingleton instance= new MySingleton(); add the final keyword for java optimalisation. You even get a warning when you try

Re: JSP Loading Screen

2003-09-05 Thread Hugo Pragt
Cool, thanks! Hugo - Original Message - From: Dmitry Namiot [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 05, 2003 11:25 AM Subject: Re: JSP Loading Screen See for example Wait taglib from Coldtags suite: http://www.servletsuite.com/jsp.htm -- Coldbeans Software

Re: No action instance for path /register could be created

2003-01-10 Thread Hugo Pragt
Hi, You probably had som replies already but here are my 2 cents: You have to tell the webserver that it has to map the path /register to the jsp register.jsp You can do this in web.xml of the server. May the source be with you, Hugo - Original Message - From: sufi malak [EMAIL

Re: Security exception when using Prefences

2002-12-16 Thread Hugo Pragt
I assume you have sufficent rights (as a user) to write to the registry? Hugo Hi everybody, I'm using the Sun ONE App Server 7 and I'm trying to use Preferences, to write information to the Win2K Server registry, but I get a java.security.AccessControlException, this is the stack trace How

Re: jsp editor

2002-11-22 Thread Hugo Pragt
I could also mention Eclipse of course! http://www.eclipse.org/ Personally I think that IDEA would have a hard time keeping up with those guys :) Hugo - Original Message - From: Robert S. Sfeir [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 22, 2002 3:12 PM Subject: Re:

Re: newbie question

2002-09-04 Thread Hugo Pragt
http://username:[EMAIL PROTECTED] may work depends if the receiving site actually uses these values. Hugo - Original Message - From: Kesavanarayanan, Ramesh (Cognizant) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 04, 2002 12:11 PM Subject: newbie question Hi

Re: Monitoring Tomcat.

2002-08-30 Thread Hugo Pragt
Maybe this is a too simple solution, but isn't it easier to check how much threads the JVM is using? Seems to me that the rest is calculatable from that. Hugo Uhhhm. As far i know, Jprobe is for use at development time. I search somethink to monitor Tomcat servers in production.