RE: [FRIDAY]Re: Just let me be the first to say...

2003-03-28 Thread Bueno Carlos M
>I have Solaris, Linux and Windows boxes here and they all have their uses ... Me too: expense write-off, real work, and doorstop, respectively. -Original Message- From: Rachel [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 9:50 AM To: Struts Users Mailing List Subject: RE: [FRIDAY

RE: [OT] Keeping a Session Alive

2003-03-26 Thread Bueno Carlos M
Up your timeout setting. -Original Message- From: Jerry Jalenak [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 2:41 PM To: '[EMAIL PROTECTED]' Subject: [OT] Keeping a Session Alive Hi All, This might be more suited to the Tomcat-Users list. I just know that there are a bun

RE: [OT] Estimating a Struts-based project

2003-03-24 Thread Bueno Carlos M
I'm sure they were right on target -- remember the great laws of Brooks and Lubarsky: 1. Thowing manpower at a late software project makes it later. 2. there's always one more bug. And the hypothesis of equal time pressure: Resources consumed will expand to the limits of resources available. --

[THURSDAY] struts questions

2003-03-13 Thread Bueno Carlos M
Hi, all -- I'm new to struts and I have a few questions. Since you are the experts I'm sure you will be able to help me. My boss wants to know how many people are using struts and how long it will take to build our application using struts as opposed to our current development process. We currentl

RE: [OT] how does Onclick in checkbox work?

2003-03-13 Thread Bueno Carlos M
not all actions are available to all html elements -- especially in netscape/mozilla. checkboxes have onfocus, onblur, and onchange, I think. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 11:13 AM To: [EMAIL PROTECTED] Subject: how does

RE: The Back button on on multi-page forms ??????

2003-03-10 Thread Bueno Carlos M
I may be way off here, but how about coding defensively? This isn't some special java-struts problem; it's the price of maintaining the illusion of a session over HTTP. Form tokens are a good idea but the user can and will click that pesky back button to change what they inputted. One of two thing

RE: [Q] Presentation of confirmation information that is meaningful to user?

2003-03-07 Thread Bueno Carlos M
Perl/PHP/TCL weenies who take good string parsing support for granted usually stuff the value field like so: Accounting You can do this in Java with the nifty org.apache.regexp package (or javax.regexp if you like crappy Sun JSR implementations). It works but it ain't pretty and it ain't bul

RE: [Unverified Sender] RE: [OT] response.sendRedirect with proxy servers

2003-03-06 Thread Bueno Carlos M
I agree. ick. We did that until the UAT people worried about browsers with no javascript. So then we sent a meta refresh tag: but now Mozilla allows you to disable that, too. :) Good idea with the host header, but I like general solutions. my app server is currently down, but I wonder if the g

[OT] response.sendRedirect with proxy servers

2003-03-06 Thread Bueno Carlos M
Consider this scenario: I have Tomcat sitting behind a firewall. I have two Apaches that forward requests to this Tomcat. I am never able to perform a response.sendRedirect() command because the Location header sent to the browser contains the host and port of my Tomcat, not the Apache. This is as

RE: Struts Tiles and UTF-8

2003-03-06 Thread Bueno Carlos M
http://www.esperanto.mv.ru/UniRed/ENG/index.html btw -- UniRed is a very good Unicode text editor for windows. -Original Message- From: Bueno Carlos M [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 4:06 PM To: 'Struts Users Mailing List' Subject: RE: Struts Tiles

RE: Struts Tiles and UTF-8

2003-03-06 Thread Bueno Carlos M
Re: Struts Tiles and UTF-8 Hi Carlos I use edit plus and i have save both files as UTF-8 But why using <%@ page contentType="text/html; charset=UTF-8" %> from jsp page the data and messages from application.resources does not displayed ? If i remove the tag <%@ page contentType=&

RE: Struts Tiles and UTF-8

2003-03-05 Thread Bueno Carlos M
Hey, Jim -- It sounds like your tiles-defs.xml and applications.properties are in two different character sets. XML is by default UTF-8, and I'm guessing your apps properties file is in iso-8859-2 or something like that. Keep in mind this is a SWAG, but if you copy some characters from your tiles-d

RE: Modern Computing (was RE: [OT] Ancient computing)

2003-03-05 Thread Bueno Carlos M
You won't believe this, but my little beauty is a P133 with 4x8MB SIMMS, 2MB s3 Trio Video card, 2.1GB HD, and a sound blaster 16. Runs Mandrake 8.2 jes fine. This is not my closet computer, it IS my computer. But now it's starting to go senile so I'm looking at those nifty shoebox computers from s

RE: [OT] Ancient computing

2003-03-05 Thread Bueno Carlos M
Dang, I must be a youngster -- mine were a Zenith-Heath kit computer running CP/M and an Atari 400 with BASIC. -Original Message- From: Kandi Potter [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 9:34 AM To: Struts Users Mailing List Subject: RE: [OT] Ancient computing My gues

RE: [newbie] Connection Pooling

2003-02-12 Thread Bueno Carlos M
It's possible but not a good idea, Struts or no Struts. Never, never, keep a connection open (especially in *session* scope!) while the user is picking her nose. Excuse me -- I mean "during user interaction". Enough simultaneous nose-pickers will take up all your available connections. Conversely,

RE: [OT] Tell VM to use a different java.security file other than the one in default location

2003-02-12 Thread Bueno Carlos M
And while we're at it, how about an applet that can elevate its privileges through the ClassLoader? Wouldn't that be fun? There is no way to specify the security file afaik. But here are some ways I've accomplished the same effect: a) [Brute Force] install multiple JREs. Then find a hammer and hit

RE: [OT] concurrent updates

2003-02-05 Thread Bueno Carlos M
By default the last update would win. Ok for small systems. Any system with multiple editors should at the very least have some auditing columns (in the data table or a separate table) like 'creator', 'modifier', etc. The most common solution to concurrent updates is a 'lockedBy' column, to preven

RE: Setting Character Encoding (getting ? for ©)

2003-02-03 Thread Bueno Carlos M
the ISO-8859-1 format, not UTF-8. Tomcat may be behaving 'correctly' in this case. Carlos -Original Message- From: Bueno Carlos M [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 3:01 PM To: 'Struts Users Mailing List' Subject: RE: Setting Character Encoding (g

RE: Setting Character Encoding (getting ? for ©)

2003-02-03 Thread Bueno Carlos M
Hey Affan, I don't have an explanation for what's going on, but this may help you find out. Try this test JSP code: <% String enc = System.getProperty("file.encoding"); //system encoding, will do what it does. String se = new String("This © is test"); //7-bit ascii, will have a '?' S

RE: are static classes GC'd?

2003-01-31 Thread Bueno Carlos M
If you have a singleton object like so: class foo { static foo SINGLE = new foo(); } foo.SINGLE is a static reference that never goes away. Therefore, the object it points to is never garbage collected. YMMV, so write a simple test to prove it. Set a createdTime variable in the contructor

RE: [OT] Cayenne O/R Mapping Tool

2003-01-30 Thread Bueno Carlos M
never used cayene but the ibatis o/r lib is very good. I've used it for high-volume applications with no problem. The memory caching is killer. www.ibatis.com -Original Message- From: Daniel H. F. e Silva [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 1:13 PM To: [EMAIL PROTEC

ActionMapping/ActionConfig cast in RequestProcessor.java

2003-01-24 Thread Bueno Carlos M
Howdy -- I have what is I guess a noob question, but I simply can't figure out these seemingly important lines of code in RequestProcessor.java: 646ActionMapping mapping = (ActionMapping) 647moduleConfig.findActionConfig(path); This appears on lines 646-7 in both 1.02 and 1.