RE: j_security_check

2002-03-19 Thread ltorrence
I'm on the phone with IBM at this moment. The scoop I got from searching the WEbsphere newsgroup was that 4.02 broke the forwarding for form-based security. That's what I was experiencing, and the message said that the fix was only available by calling IBM support. Supposedly efix PQ56667 fixes

RE: Problem in HTML:ERROR tag

2002-03-14 Thread ltorrence
It's a websphere issue. Do a search on the mail archive for websphere and null. -Original Message- From: Jay sissom [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:30 AM To: Struts Users Mailing List Subject: Re: Problem in HTML:ERROR tag Struts shouldn't print NULL before

RE: Problem in HTML:ERROR tag

2002-03-14 Thread ltorrence
Oops. Jumped to a conclusion there. I thought you were having the issue only with Websphere. -Original Message- From: Jay sissom [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 9:12 AM To: Struts Users Mailing List Subject: RE: Problem in HTML:ERROR tag And a Tomcat issue.

amount of data stored in session

2002-03-13 Thread ltorrence
Are there published guidelines as to the number and size of objects that are stored in the session? I've seen references to the importance of keeping session data to a minimum, but no concrete recommendations.

RE: DHTML Menus and Form Objects

2002-03-06 Thread ltorrence
I think the layer thing works in very new versions of IE (newer than IE5 -- maybe starting with 5.5?). Back when I was looking at such things, the only solution I could find for IE 5 was to hide the offending form elements when the show menu function is fired. Kind of clunky, but that's exactly

RE: speed of struts

2002-02-27 Thread ltorrence
I'm interested in hearing other opinion on this. I personally find the logic present/equals tags to be ugly and cumbersome (not to mention inefficient in terms of the generated servlet) and often find myself resorting to simple if/else scriptlets instead. I'm not sure the logic tags win even from

RE: Struts e Netbeans.

2002-02-21 Thread ltorrence
It's a bug with NetBeans that occurs with any app that writes a lot of text to the console (like Struts does on startup) To make the error message go away, just change these entries in your web.xml file for the struts actionserverlet: init-param param-namedebug/param-name

RE: Development Environment

2002-02-21 Thread ltorrence
OK, I'll bite. I'm a Linux ignoramus. What do you do with Cygwin? Is there more to it than a bash shell? -Original Message- From: CyberZombie [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 9:42 PM To: Struts Users Mailing List Subject: Re: Development Environment Cygwin

RE: [Off Topic] Using Struts with WebSphere Studio Application Developer 4.0

2002-02-08 Thread ltorrence
I haven't actually done it but I remember seeing a post to the WSAD newsgroup saying that you had to use the struts source (not the jar files) to get it running in WSAD. -Original Message- From: MARK NICHOLS [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 9:08 AM To: [EMAIL

RE: speed of struts

2002-02-06 Thread ltorrence
I had a form with lots of custom tags. When run under the Sun 1.3 JDK it was slow as molasses. Sun 1.2 JDK or IBM 1.3 was instantaneous. A few mailing list posts pointed me to a bug in Sun's 1.3 having to do with nested try/catch blocks in the compiled JSP. Try your page under Sun 1.2 or the IBM

RE: Formatting Dates, Integers...

2002-02-04 Thread ltorrence
So is the answser to create global Format object and synchronize access? -Original Message- From: Jeff Martin [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 5:56 PM To: Struts Users Mailing List Subject: RE: Formatting Dates, Integers... Be very careful about using

Beanutils.populate()

2002-01-30 Thread ltorrence
Is there any way to have Beanutils.populate call a setter method with a date signature on a bean? I'm trying to populate a bean with *lots* of properties, some of which are dates stored in string format. My source bean has dates in date objects. Target bean fields/methods: String

RE: Non-Struts Related JS Question

2002-01-29 Thread ltorrence
Make the href anything you want (# will work), but in the onclick handler, do this: onclick=openWidgetWindow();return false the return false statement keeps the browser from following the link. for a ridiculously complete discussion of the topic, including handling non-javascript enabled

RE: Navigation: To popup and back

2002-01-28 Thread ltorrence
have the action forward to a page that loads a document containing a javascript handler in the body tag: body onload=self.close() As long as you opened the popup from another page via javascript, you won't get any nasty messages about closing the window. Lee -Original Message- From:

RE: Navigation: To popup and back

2002-01-28 Thread ltorrence
Oh absolutely -- I would never rely on a popup on a site on the public internet. I was thinking intranet app... -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 8:29 PM To: Struts Users Mailing List Subject: Re: Navigation: To popup and

Ron Smith's struts actionservlet extension with Struts 1.1

2002-01-17 Thread ltorrence
Anybody know if this works with the 1.1 nightly builds? Or is is recommended that I use the service manager included in the contrib folder (I assume Smith's transformer package will work with that)

RE: Execute Struts in Netbeans?

2002-01-11 Thread ltorrence
If you use Forte 3.0 CE (same as netbeans with a few extensions -- good web app extensions), running Struts apps is no problem. -Original Message- From: AJ Morris [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 4:14 PM To: [EMAIL PROTECTED] Subject: Execute Struts in Netbeans?

RE: custom tags: IBM 1.3 JDK vs SUN 1.3 JDK -- SOLVED

2002-01-07 Thread ltorrence
In case anybody else runs into this, it's evidently a bug in the SUN 1.3 JDK. http://groups.google.com/groups?th=dd4229956bceb2f4rnum=1 Lee -Original Message- From: Torrence, Lee Sent: Sunday, January 06, 2002 10:38 AM To: 'Struts Users Mailing List' Subject: custom tags: IBM 1.3

custom tags: IBM 1.3 JDK vs SUN 1.3 JDK

2002-01-06 Thread ltorrence
I have a struts jsp page with a lot of custom tags; it compiles to around 40k. Under Win2k, when I set JAVA_HOME to run Tomcat 4.1 with the IBM 1.3 JDK, the page executes almost instantaneously, but when I set JAVA_HOME to the Sun JDK 1.3.1, it takes about 5 seconds to load. Does the IBM jdk

Custom tag performance

2002-01-03 Thread ltorrence
Title: Custom tag performance For a workflow system, I've created a custom tag (extending the struts BaseInputTag) that combines the functionality of the following struts tags html:text bean:message messages:present The custom tag has a property attribute and a key attribute (for the field

ActionMessages vs ActionErrors

2001-12-20 Thread ltorrence
What's the intended functional difference between ActionMessages and ActionErrors?

RE: Hiding Struts Action Statements From Nav?

2001-12-19 Thread ltorrence
You could put your page in a frameset. Then the address bar would't change when you navigated from page to page. Might cause other complications though. -Original Message- From: Matt Koidin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 2:27 PM To: Struts Users Mailing

RE: internationalization numeric formats

2001-12-18 Thread ltorrence
This is great for bean:write. How do you handle this for html:text tags? -Original Message- From: Oleg V Alexeev [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 3:52 AM To: Struts Users Mailing List Subject: Re: internationalization numeric formats Hello Nathan, Monday,

RE: embed html tags in the javabeans.

2001-12-18 Thread ltorrence
set the attribute filter=false on the bean:write tag -Original Message- From: John Ng [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 2:25 PM To: Struts Users Mailing List Subject: embed html tags in the javabeans. Hi, I have a javabean with one method returning a string

Populate ActionForm with an XML DOM object

2001-12-17 Thread ltorrence
I have a back-end data source that provides me with an XML object. I'd like to populate an ActionForm based on that XML. Is there sample code like this somewhere? Most uses of the Digester I've seen deal with loading config files, or an initial load of an in-memory database. Would the Digester

Question about Ron Smith's Struts Transformer pkg

2001-12-16 Thread ltorrence
I just started looking at the Transformer package, which seems to fill a major hole in the Struts Framework. (I'm new to Struts as well, coming over from the Dark Side (MS)). My initial impression of the Transformer pkg is that it would not be called from the .jsp, but only from the Action,

transformations

2001-12-13 Thread ltorrence
I've been looking at the transformation solutions listed on Ted Husted's page. Can anyone give me a quick rundown of the pros/cons of these two? Is there an Official Struts direction on this issue? The Struts Transformer by Ron Smith http://www.rpsenterprises.com/struts/index.html The Capco

RE: html:select and JavaScript problem

2001-12-03 Thread ltorrence
Well, I think first you'd need to change the name of the html:text element to something other than artist to avoid javascript confusion. The value for artist will be posted to the server by the html:select object. (watch for line breaks) script language=JavaScript !-- function

RE: Java script submit on select from drop down

2001-11-20 Thread ltorrence
Change it to something like this, where your_form_name is the name attribute you defined in your action mapping. Your notation doesn't work because it's trying to find a form that is a property of the select element. html:select property=organizationName onchange=document.your_form_name.submit()

Options tag question

2001-11-20 Thread ltorrence
In reworking my Action classes, I tried to package all values needed for my form in the form bean, so I included a property that contains an ArrayList of LabelValueBeans. Can I refer to this property to populate the html:options tag? This nested syntax doesn't seem to work: html:options

RE: which button pressed?

2001-11-20 Thread ltorrence
From an earlier thread, I think this works: html:submit property=action bean:message key=button.add/ /html:submit But you need some mapping scheme if you don't know the language of the string that will be returned. I noticed that Ted Husted seems to lean towards

RE: Websphere 4.0/IBM Web server configuration

2001-11-15 Thread ltorrence
the instructions pasted below (taken from this list in a post by Chris Assenza) worked for me with the standard Struts 1.0 release (haven't tried the nightly builds). From: Assenza, Chris [[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 9:59 AM To: '[EMAIL PROTECTED]' Subject: RE: Struts

Action structure for CRUD

2001-11-14 Thread ltorrence
struts-newbie I used David Winterfeldt's Generator against a table called broker to produce a form bean, a broker bean, a broker_PK (primary key) bean, and a brokerjdbc bean (which contains SQL CRUD functions). Now I need to create the Action (or Actions) to handle these operations. I have

RE: Detecting browser on the server side

2001-11-13 Thread ltorrence
Do a Google search on BrowserHawk -- they have done a lot of research into server-side browser detection. I think Jason Hunter (the O'reilly servlets book author) did most of the work on the java version. -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED]] Sent:

artimus

2001-10-26 Thread ltorrence
Title: artimus I'm having trouble getting artimus (husted sample app) to run on Tomcat 4.1-dev. I think I took all the steps outlined in web-inf/readme.txt. I changed the poolman.xml file to reflect my local oracle drive and db. (the poolman.xml file works fine with the sample