left over session

2004-03-18 Thread LUCERO,DENNIS (HP-Boise,ex1)
I am getting a left over session after a user logs out. The last thing done in the logout Action class is to call the invalidate method on the session. Then this request goes to the forward forward name = success path = /goodbye.jsp/ this jsp has the page session = false thingy but

RE: Link-to-action?

2003-12-07 Thread Dennis Hunziker
Hi In our current project we are using an adapted version of the LinkXTag class provided with the struts example application. Check out this class and I hope it is what you need. Kind regards Dennis Hunziker -Original Message- From: Theodosios Paschalidis [mailto:[EMAIL PROTECTED

RE: using ApplicationResources in jsp...

2003-12-05 Thread Hunziker Dennis
why not try the following: bean:message key=title.from.ressources/ -Original Message- From: AMIR-TAHMASSEB Marc [mailto:[EMAIL PROTECTED] Sent: Freitag, 5. Dezember 2003 15:01 To: [EMAIL PROTECTED] Subject: using ApplicationResources in jsp... Hi, i wonder to know if it's possible to

RE: Where I can perform global tasks for application ?

2003-11-28 Thread Hunziker Dennis
Hi Maybe the ActionPlugin with execution on startup helps you... maybe not. http://www.asqdotcom.be/struts/general.html Kind regards Dennis Hunziker -Original Message- From: lis [mailto:[EMAIL PROTECTED] Sent: Freitag, 28. November 2003 16:21 To: Struts Users Mailing List Subject

RE: ACtion Form within an ACtion

2003-11-25 Thread Hunziker Dennis
Hi Something like that (taken from the Struts example) should work. private String page = /action.do; pageContext.forward(page); Kind regards Dennis Hunziker -Original Message- From: Gurpreet Dhanoa [mailto:[EMAIL PROTECTED] Sent: Dienstag, 25. November 2003 12:47 To: Struts Users

Prelogon Action to init a List

2003-11-24 Thread Hunziker Dennis
to forward from the CheckLogonTag (Same as the CheckLogonTag in the struts example webapp) to another action? Kind regards Dennis Hunziker

RE: Prelogon Action to init a List

2003-11-24 Thread Hunziker Dennis
that help? c ps yes, you could also modify the checklogontag to forward to an action. pps never put business logic in a form. On Monday 24 November 2003 15:16, Hunziker Dennis wrote: Hello To initialize a list for a drop-down element at our logonpage (logon.jsp), we need a prelogon action

RE: sendRedirect within Action

2003-11-11 Thread Lee, Dennis
Hi, You can sendRedirect as usual and then return 'null' for the ActionForward. Best Regards, Dennis Lee -Original Message- From: Mohamed Abu Zur [mailto:[EMAIL PROTECTED] Sent: 20031110 09:27 To: Struts Users Mailing List Subject: sendRedirect within Action Hi all: How I can make

upgrading

2003-10-21 Thread LUCERO,DENNIS (HP-Boise,ex1)
Hello, I am upgrading an existing app from struts 1.0 to struts 1.1 Can anyone point me two a guide for this. thanks We come from the land of the ice and snow With the midnight sun, where the hot springs glow The hammer of the gods, will drive our ships to new lands Fight the horde, Sing and

Cross Module Forms

2003-10-13 Thread Dennis Muhlestein
modules that needs the action in question. That seems like it'd get kind of messy after a while too. So, does anyone have a patch that fixes this? Or has this been changed post 1.1? Any other ideas for getting around the issue? Comments Appreciated. -Dennis

Re: No getter method error [SOLVED]

2003-10-13 Thread Dennis Dunn
Vectors. When I iterated the WeekBean I was doing OK so lonad a I was looking at a DayBean but it choked when I was looking at a Vector. Challange your assumptions. They are probably wrong. --dennis - To unsubscribe, e-mail

No getter method error

2003-10-10 Thread Dennis Dunn
with different signatures My next step will be to take a look at RequestUtils.java:968 to see if that provides me with a clue as to what I'm doing wrong. Thanks for your help. --dennis Here is the chunk from the JSP that is using the logic and bean taglibs. week1 is a WeekBean that holds 7

RE: iterator tag

2003-09-08 Thread LUCERO,DENNIS (HP-Boise,ex1)
. Hope this helps. -Original Message- From: LUCERO,DENNIS (HP-Boise,ex1) [mailto:[EMAIL PROTECTED] Sent: September 6, 2003 2:34 PM To: ' ([EMAIL PROTECTED])' Subject: iterator tag What is the correct behavior of the logic:iterator tag when given a collection of size zero (when

iterator tag

2003-09-06 Thread LUCERO,DENNIS (HP-Boise,ex1)
What is the correct behavior of the logic:iterator tag when given a collection of size zero (when the named collection is a brand new linkedList this tag causes a page to crash??) We come from the land of the ice and snow With the midnight sun, where the hot springs glow The hammer of

RE: two forms

2003-09-06 Thread LUCERO,DENNIS (HP-Boise,ex1)
I have done stuff like that. In my case I had two action entries in struts.xml each one defining a form. Both of these mapped to the same action class. Just make sure they have unique paths We come from the land of the ice and snow With the midnight sun, where the hot springs glow The

RE: two actionForms for one action class?

2003-09-06 Thread LUCERO,DENNIS (HP-Boise,ex1)
I have done stuff like that. In my case I had two action entries in struts.xml each one defining a form. Both of these mapped to the same action class. Just make sure they have unique paths -Original Message- From: Rick Col [mailto:[EMAIL PROTECTED] Sent: Saturday, September 06, 2003

variable in tag

2003-08-28 Thread LUCERO,DENNIS (HP-Boise,ex1)
Is there any way to do this: html:button property = %=variable% blah/html:button thanks We come from the land of the ice and snow With the midnight sun, where the hot springs glow The hammer of the gods, will drive our ships to new lands Fight the horde, Sing and cry Valhalla I am coming

Re: Is this really the best way to handle this problem

2003-07-16 Thread Dennis Meelis
mapping to /xxxUpdateSetup which then should be executed (forwarded to, this is nice because this way the setup action has access to the posted data) if validation fails. I must say it is just an idea and I haven't had the chance to try it yet, hope it helps. Dennis Linus Nikander [EMAIL PROTECTED

Re: Where to build dropdown lists?

2003-07-15 Thread Dennis
the list at all if validation happens to fail because the form will not post unless it's valid. Dennis - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Session Management using EJB

2003-07-10 Thread Dennis Muhlestein
with those servers, you could probably use some of it to by a load balance with sticky session capability. If not, I'd stick with http session management at the web tier and only cluster 3 or 4 of the servers. Just my thoughts on a complex topic :-) -Dennis

RE: Connection Pool

2003-03-19 Thread Lee, Dennis
().setAttribute(Action.DATA_SOURCE_KEY, dataSource); } Note: desconfig.getDatasource() returns a String of my datasource key. I set the the retrieved datasource to Action.DATA_SOURCE_KEY to easy later access. It works for me. Best Regards, Dennis Lee -Original Message

RE: Connection Pool

2003-03-19 Thread Lee, Dennis
as well. Best Regards, Dennis Lee -Original Message- From: Jimmy Emmanual [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 10:28 AM To: 'Struts Users Mailing List' Subject: RE: Connection Pool Dennis, Thank you very much. However, what do you declare desconfig as? -Original

RE: Connection Pool

2003-03-19 Thread Lee, Dennis
, Dennis Lee -Original Message- From: Jimmy Emmanual [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 10:42 AM To: 'Struts Users Mailing List' Subject: RE: Connection Pool This is the definition in the struts-config.xml file. data-sources !-- PRODUCTION/dataexport

RE: Connection Pool

2003-03-19 Thread Lee, Dennis
Hi, Sorry, it's a property of data-source, not data-sources Best Regards, Dennis Lee -Original Message- From: Lee, Dennis [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 10:55 AM To: 'Struts Users Mailing List' Subject: RE: Connection Pool Hi, You can check the DTD, the key

RE: [OT] Webapp Archives

2003-03-18 Thread Dennis Muhlestein
We have anthill. We can watch the ant wars being performed ;-) On Tue, 2003-03-18 at 12:16, Emilio Suarez wrote: *This message was transferred with a trial version of CommuniGate(tm) Pro* You should use: ant war ;-) -Original Message- From: Ray Madigan [mailto:[EMAIL

Re: DTD's and TLD's in Struts.jar Why?

2003-03-17 Thread Dennis Muhlestein
://jakarta.apache.org/struts/tld/struts-html; prefix=html% ) Thus, the reason they are included in the jar file. That said.. Why would removing the dtds speed or ease deployment? Seems like wasted effort to me. Leave the jar file as it is and enjoy the power of struts. -Dennis On Mon, 2003-03-17

[OT] sslext (1.1b3) has a bug with modules

2003-03-14 Thread Dennis Muhlestein
. The workaround for right now, is to use the href attribute instead of the page attribute on the sslext:link tag and specify the entire url relative to the root module (ie: href=/myModule/myPage.do ). If you have any questions or would like more details let me know. Thanks Dennis

Re: validate business data

2003-03-14 Thread Dennis Muhlestein
We have a couple different approaches. But one is to create some custom validator Fields that can be plugged in to the validator. Then all errors, buisiness or otherwise, are done by the DynaValidatorForm. Makes our actions simpler. -Dennis On Fri, 2003-03-14 at 14:47, Dan Allen wrote

javascript problem

2003-03-13 Thread LUCERO,DENNIS (HP-Boise,ex1)
Hello I am trying to do this: html:button property= someButton onClick=doSomething(%=somedynamicvariable%) Do Something /html:button Basically trying to pass a dynamic variable as arg to java script function within the struts html:button tag. I know I can build up the string in

Struts-console 3.3 and tiles

2003-03-07 Thread Dennis Muhlestein
at org.apache.catalina.core.ApplicationContext.getRequestDispatcher(ApplicationContext.java:590) Had to fix this by hand editing the xml and removing the path= attribute. Just thought you might like to know. -Dennis - To unsubscribe, e-mail

Re: action form error messages

2003-02-28 Thread Dennis Muhlestein
that is right but might be completely and 100% incorrect /disclaimer -dennis On Fri, 2003-02-28 at 10:54, Alex McLintock wrote: Hi folks, I am using traditional action forms rather than DynaActionForms and when I get it slightly wrong (eg by missing out get/set methods) I get the following error

RE: Action without FormBean

2003-02-26 Thread Dennis Muhlestein
Use an image instead of a form button?? ie: a href=myaction..img src=users pretty image/a -Dennis On Wed, 2003-02-26 at 11:48, Chen, Gin wrote: *This message was transferred with a trial version of CommuniGate(tm) Pro* Hi James, I did use links before. But they want to see buttons

Re: websites that use Struts..

2003-02-26 Thread Dennis Muhlestein
http://www.datemate.com On Wed, 2003-02-26 at 08:42, James Prance wrote: *This message was transferred with a trial version of CommuniGate(tm) Pro* The list on the Apache website, half the links dont work... does anyone know of some websites out there on the old 'interweb' that are currently

RE: need to display a tree struture in JSP

2003-02-25 Thread Dennis Doubleday
I'll endorse--it worked really well for me, with one issue. Arron, did you see my post from 10 days ago or so? I had a problem with simultaneously loading the same tree in two separate iframes on the same page. The nested context in one seemed to interfere with the context in the other.

select multiple

2003-02-25 Thread LUCERO,DENNIS (HP-Boise,ex1)
When using html:select the fields that do not use the multiple = true attribute are correctly populated from the form bean during a round trip to the server but the fields using multiple = true are not. The getter and setter methods are getting called (sys out showing up), and the array type is

RE: select multiple

2003-02-25 Thread LUCERO,DENNIS (HP-Boise,ex1)
: Re: select multiple I just went through this. - Original Message - From: LUCERO,DENNIS (HP-Boise,ex1) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 1:56 PM Subject: select multiple When using html:select the fields that do not use the multiple = true attribute

Re: Mutliform validation using a DynaValidatorForm

2003-02-19 Thread Dennis Muhlestein
checkboxes, your reset method needs to be aware of what page is being submitted and only reset the checkboxes for the page you are submitting. Otherwise, you might check a box on page 1, only to have it be unchecked when you submit page 2. -Dennis On Wed, 2003-02-19 at 02:57, Brian Blignaut wrote: Hi

Simultaneous use of nested tags in two iframes causing interference

2003-02-18 Thread Dennis Doubleday
I have two iframes on one page that are both loading variants of the same tree. I am using the nested library to display the trees (very nice stuff!). However, they seem to be interfering with each other. Each iframe has tags like: nested:root name=tree nested:nest property=root

Re: TilesRequestProcessor to support HTTP/HTTPS switching

2003-02-18 Thread Dennis Muhlestein
we use sslext with no problems. check sf.net/projects/sslext It is a struts plug in for managing ssl. -Dennis On Tue, 2003-02-18 at 10:24, Greg Hess wrote: Hi, I would like to incorporate tiles into my application but I require HTTP/HTTPS switching. Has anyone implemented this ability

Re: Sell me on tiles

2003-02-18 Thread Dennis Muhlestein
more. -Dennis On Tue, 2003-02-18 at 09:34, Southard, Don wrote: We are starting a fairly new project using struts. We are at a point where we need to make a decision on using tiles or not using tiles. On one hand it's not too hard to implement (one developer already has it working with our

RE: Documents on Struts

2003-02-10 Thread Hunziker Dennis
I'am reading Struts Kickstart (www.strutskickstart.com) and i like it. -Original Message- From: Thomas Mammen [mailto:[EMAIL PROTECTED]] Sent: Montag, 10. Februar 2003 09:22 To: Struts Users Mailing List Subject: Documents on Struts Can anyone suggest me a good book for Struts .Also

RE: Rendering alternate rows of a table in Struts

2003-02-07 Thread Dennis Doubleday
-Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 2003 3:13 PM To: [EMAIL PROTECTED] Subject: RE: Rendering alternate rows of a table in Struts How is this: jsp:useBean id=rowTogglerclass=com.mycompany.RowToggler/ tr

user customizing

2003-02-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
Hello, I am looking for resources that would help me to provide the ability for a user to customize their home page. Both informational and functional resources would be of help. thanks We come from the land of the ice and snow With the midnight sun, where the hot springs glow The hammer of

submit using enter key

2003-01-31 Thread LUCERO,DENNIS (HP-Boise,ex1)
I have a form, that cannot have a submit button (unless there is some way to have it be hidden) How to I get that form to submit when the enter key is pressed. thanks We come from the land of the ice and snow With the midnight sun, where the hot springs glow The hammer of the gods, will drive

RE: submit using enter key

2003-01-31 Thread LUCERO,DENNIS (HP-Boise,ex1)
this: document.onkeypress = documentKeypress; function documentKeypress(e){ var key = general_getEventKeyCode(e); if(key == 13){ search();//js action that calls document.formName.submit(); } } LUCERO,DENNIS (HP-Boise,ex1) [EMAIL PROTECTED] on 01/31/2003

RE: RequiredIf Example Request

2003-01-24 Thread Dennis Muhlestein
that the field is required. id: required,mycheck Then it becomes possible to have an optional field. -Dennis On Thu, 2003-01-23 at 14:33, Weber, Jeremy wrote: Yes, but I would think that it would only be run after the first validation (the requiredif) runs. Is that not a correct assumption? Do I need

Re: Out of my Mind/Struts Bug???

2003-01-24 Thread Dennis Muhlestein
I just responded to one of your earlier messages. I believe that solution will work for your problem here too. -Dennis On Fri, 2003-01-24 at 11:01, Weber, Jeremy wrote: It seems to me that whenever I use requiredif and an additional custom validation to validate the same field, the requiredif

Re: Why is the reset method called when I submit the form?

2003-01-23 Thread Dennis Muhlestein
checkboxes work great with the reset method if the default is false, but I have a situation where the default is true. If they uncheck the checkbox, then the property is not submitted and the value is still true. Has anyone dealt with this turn of the problem? -Dennis On Thu, 2003-01-23 at 06

RE: DynaValidatorForm and multipage forms

2003-01-23 Thread Dennis Muhlestein
Thanks for the input, I've had great success with the DynaValidatorForm in single page environments, if you have opportunity to use it in a single page environment, I recommend it. Maybe a bug needs filed for the multi-page DynaValidatorForm - I couldn't find one in the bug tracker. -Dennis

Re: toggling ssl functionality with sslext

2003-01-22 Thread Dennis Muhlestein
443 for production? I just installed an ssl server and generated a fake certificate for developement. Then I didn't have to worry about changing the properties. -Dennis On Wed, 2003-01-22 at 10:37, Robert Taylor wrote: I'm looking over the Struts SSL extension package and don't see a way

Re: DynaValidatorForm and multipage forms

2003-01-22 Thread Dennis Muhlestein
Did you figure anything out with this problem? I have the exact same problem. I'd like to make a multipage form with DynaValidatorForm instead of extending ValidatorForm Thanks -- Dennis Muhlestein [EMAIL PROTECTED] ZServe Corporation On Tue, 2003-01-21 at 12:44, [EMAIL PROTECTED] wrote

Re: Value of Struts?

2003-01-22 Thread Dennis Muhlestein
: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Dennis Muhlestein [EMAIL PROTECTED] ZServe Corporation -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

using javascript

2003-01-13 Thread LUCERO,DENNIS (HP-Boise,ex1)
Hello, I am trying to call a java script function and it is not working, are there any known issues with this sort of thing. Here is some code: html:form action = SomeAction html:select property = someProp onchange = reset() html:options collection=aCollection property=key

RE: using javascript

2003-01-13 Thread LUCERO,DENNIS (HP-Boise,ex1)
is that there is a built-in javascript reset() method that's overriding your custom reset(). Try calling your method doReset() or something else. BAL From: LUCERO,DENNIS (HP-Boise,ex1) [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: ' ([EMAIL PROTECTED])' [EMAIL PROTECTED] Subject

RE: nested tags

2003-01-08 Thread LUCERO,DENNIS (HP-Boise,ex1)
Thanks Mark, I don't know how I missed that tag. Melonie, if I understand you correctly, I am not using hidden fields and I get back the key value pair in the form associated with the action class, The collection I am referencing is separate from the form. The form does not contain a list

form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
OK, yea it appears from some of the responses that there is some confusion, I am doing something that is really simple. Here is the form from the jsp-- dropdown.jsp: html:form action = DropDownAction name = dropDownFormBean type = somePath.DropDownFormBean html:select property =

RE: form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
-Original Message- From: Damm, Gary [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 10:31 AM To: Struts Users Mailing List Subject: RE: form scope gary wrote: Try setting the form scope in your struts-config to request. I believe by default it is set to session. When I

form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
I fixed it. thanks gary you got me thinking about the scope the form tag was searching in: I set the scope of the form on the JSP PAGE to request and everything works as expected. Thanks everyone, We come from the land of the ice and snow With the midnight sun, where the hot springs

RE: form scope

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
- From: LUCERO,DENNIS (HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 9:49 AM To: ' ([EMAIL PROTECTED])' Subject: form scope I fixed it. thanks gary you got me thinking about the scope the form tag was searching in: I set the scope of the form on the JSP

nested tags

2003-01-07 Thread LUCERO,DENNIS (HP-Boise,ex1)
I am trying something like this: html:select property = whatever logic:iterate id = item name = someArray html:option value = thisIsMyProblem %=item% /html:option /logic:iterate /htmlselect I need the vaule of item to go where thisIsMyProblem is similar to the use of

scope

2003-01-06 Thread LUCERO,DENNIS (HP-Boise,ex1)
I am using the html:option tag I must set the scope of the parent form to session for the tag to generate the correct selected = selected Html on the page when the form is submitted (it is bouncing back to the same page) Why is this? The request hits the server with the values in it The

RE: scope

2003-01-06 Thread LUCERO,DENNIS (HP-Boise,ex1)
not have access to the request any longer. I think you mean on a redirect. JSPs that are forwarded to definitely have access to the HttpServletRequest object; that's how references to request-scope form beans are obtained in the first place. Dennis, have you tried putting debugging statements

RE: scope

2003-01-06 Thread LUCERO,DENNIS (HP-Boise,ex1)
to session, but this is without diving into the tag lib code. -Original Message- From: LUCERO,DENNIS (HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 6:02 PM To: 'Struts Users Mailing List' Subject: RE: scope -Original Message- From: Joe Barefoot [mailto

RE: Transforming a String to valid HTML encoding

2002-12-11 Thread Dennis van den Berg
character entities. Parameters: value - The string to be filtered and returned Hope this helps. Dennis -Original Message- From: Hirschmann, Bernhard [mailto:[EMAIL PROTECTED]] Sent: woensdag 11 december 2002 17:35 To: Struts User Mailing List (E-Mail) Subject: Transforming a String to valid

bean:include

2002-12-09 Thread LUCERO,DENNIS (HP-Boise,ex1)
If this is not the correct forum for tag-lib questions someone let me know. Does anyone know of issues when using the bean:include tag with https The call: bean:include id = myInclude page = /includeTest.jsp / the error: Cannot create include URL: java.net.MalformedURLException: unknown

message-resources

2002-12-05 Thread LUCERO,DENNIS (HP-Boise,ex1)
Hi, I have a jsp with the struts bean taglib defined and the following line : bean:message key=index.title / In struts-config.xml I have the following : message-resources parameter=MyAppResources / And I put MyAppResources.properties in tomcat/webapps/applicationName/WEB-INF/classes when

action-mapping

2002-12-04 Thread LUCERO,DENNIS (HP-Boise,ex1)
I am a newbie but I am a little confused about the following. In the struts api it states the following about the forward property of the action mapping class Exactly one of the forward, include, or type properties must be specified. But, in the examples I downloaded with the struts package

html:errors and logic:greaterThan w/out having to use scriptlets

2002-12-03 Thread Dennis Muhlestein
. Anyone have a way to do this without the scriptlets?? TIA -Dennis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: html:errors and logic:greaterThan w/out having to use scriptlets

2002-12-03 Thread Dennis Muhlestein
Suggestions? Thanks Dennis On Tue, 2002-12-03 at 14:22, Dennis Muhlestein wrote: In addition to displaying errors by a specific field, i'd like to display some additional information. ie: html:errors property=someField /br % if errors.size( someField ) 0 { % Some Additional Info

RE: [Struts Tip] #15 Use chained exceptions. Design consideration.

2002-11-18 Thread Dennis Doubleday
-Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 7:31 AM To: Struts Users Mailing List Subject: RE: [Struts Tip] #15 Use chained exceptions. Design consideration. . thats horrible. I use: catch(Exception e) { ; }

Re: Final release for Struts 1.1

2002-11-05 Thread Dennis Muhlestein
Get a nightly. Rename it 1.1 Final. If anyone asks questions... Lie. On Tue, 2002-11-05 at 12:24, Xuefeng Wang wrote: Hi, all, I'm using Struts 1.1B1 to develop our product, I want to know when Struts 1.1 final will be release. thanks, James

Trouble with messages duplicated directly to me (was RE: [Sorting within an Iterate tag])

2002-10-30 Thread Dennis Doubleday
Does anybody else have this problem with the mailing list: Sometimes people send messages to the list and they are also sent to me directly. This screws up my filtering. And it doesn't seem to be random. For example, I am getting in the To: field of every message Josh Berry sends to the list,

Re: html:options ordering

2002-10-30 Thread Dennis Muhlestein
Thanks for the comments. Seems to make more sense not to have any ordering functionality in the html:options tag anyway. On Wed, 2002-10-30 at 10:40, Dennis Muhlestein wrote: I have a hashtable with key/value that get displayed by an html:options tag. Works ok, but they are ordered

Re: [ANNOUNCE] Struts Console v3.0

2002-10-30 Thread Dennis Muhlestein
Seems there is no validator 1.0 dtd on jakarta.apache.org/struts/dtds/.. I can't open my validation.xml file because it uses the 1.1 dtd so I tried the 1.0 to see how that would work, but I got 404 error. Can you just put a dtd somewhere? Thanks Dennis BTW it's true, James is Arnie. On Wed

Re: [ANNOUNCE] Struts Console v3.0

2002-10-30 Thread Dennis Muhlestein
We've been using the struts validation package and I'm wondering if it isn't wise to change now. Any suggestions on the easiest way to update? Can we just download the commons validation? What do we need to do to integrate with struts? Thanks Dennis On Wed, 2002-10-30 at 13:28, James Holmes

Struts Nightly Build

2002-10-23 Thread Dennis Muhlestein
I'm about to change our production environment to use the struts nightly build instead of 1.1b2 because of the non commons-logging in the tiles package with 1.1b2. Does anyone know of any issues to be aware of? Seems to work ok in dev environment. TIA -Dennis -- To unsubscribe, e-mail

RE: Struts Nightly Build

2002-10-23 Thread Dennis Muhlestein
of with the nightly builds lately?? Thanks Dennis On Wed, 2002-10-23 at 08:12, Chappell, Simon P wrote: Perhaps you could pick a specific nightly build that has the extra functionality that you need, but I'm not going to recommend updating with EVERY nightly build. I seriously hope

Re: Struts Nightly Build

2002-10-23 Thread Dennis Muhlestein
/tags-html-1.1; prefix=html% instead of %@taglib uri=http://jakarta.apache.org/struts/tags-html-1.0; prefix=html% Those are the only two things I changed. -Dennis On Wed, 2002-10-23 at 08:56, Vincent Stoessel wrote: Is upgrading struts a simple matter of swapping out struts.jar ? Chappell

Re: Confused about nightly builds and 1.1b2 bugs

2002-10-23 Thread Dennis Muhlestein
I haven't followed the issues being fixed too much. I just know that we updated to 20021022 and now I don't have billions(exaggeration) of tiles print statements in my log files. It's in production now and as far as I know functions the same as 1.1b2 did. -Dennis On Wed, 2002-10-23 at 11:23

Re: Storing HTML in database

2002-10-22 Thread Dennis Muhlestein
Use a PreparedStatement instead of Statement to do the insert if you can. It'll do the escaping for you. -Dennis On Tue, 2002-10-22 at 08:07, Robert Misior wrote: Hello, I'm looking for a good approach of storing HTML in mysql database (field type is text). Currently I'm converting any

tiles logging

2002-10-22 Thread Dennis Muhlestein
(tiles.members.viewprofile, false) 'tiles.members.viewprofile' - processed as definition Thanks Dennis -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Exception Page

2002-10-18 Thread Dennis Muhlestein
if you use the jsp error page directive, you get an object called exception. I'd rather just log the exception there, than catch it in the action,log it, then throw it again. Any suggestions? Thanks Dennis -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org

Re: Exception Page

2002-10-18 Thread Dennis Muhlestein
Thanks, That's exactly what I needed. FlameProtection And, BTW, when is struts 1.1 releasing :-) He he just kidding. /FlameProtection On Thu, 2002-10-17 at 12:13, Joe Germuska wrote: At 10:56 AM -0600 2002/10/17, Dennis Muhlestein wrote: I like the global exception handler in struts 1.1b2

tiles definitions including other definitions

2002-10-18 Thread Dennis Muhlestein
area. Any comments Suggestions? Thanks Dennis -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Re: tiles definitions including other definitions

2002-10-18 Thread Dennis Muhlestein
Thanks for letting me know that. I found a problem elsewhere and now it works. On Fri, 2002-10-18 at 08:53, Adam Sherman wrote: Dennis Muhlestein wrote: In the tiles documentation, under the put attribute, it says the type can be definition. Does this only apply to the tag library usage

tomcat 4.1.12 issue

2002-10-10 Thread Dennis Muhlestein
for any input. Dennis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Anyone Using Struts 1.1b2 in Their Products

2002-10-09 Thread Dennis Doubleday
We are using 1.1b in our product, SpendMetrix, which is purchasing performance analysis tool intended for large corporatations that purchase a variety of direct materials from a variety of vendors. Our product is about to enter beta and we have no problems to report with Struts 1.1b (we haven't

RE: Avoiding the page is expired with POSTed forms

2002-09-06 Thread Dennis van den Berg
I extended the ActionServlet to set the following headers. response.setDateHeader(Expires, System.currentTimeMillis()); response.setDateHeader(Last-Modified, System.currentTimeMillis()); Hope this helps Dennis -Original Message- From: Michael [mailto:[EMAIL PROTECTED

Redirect and ActionErrors don't play together--is there another way?

2002-08-28 Thread Dennis Doubleday
Here's my situation: I have a screen that contains a table of objects (say the screen is displayed by table.do). There is a link on the screen that causes a new object to be created by a Struts action (call it create.do?key=NN). The action forwards back to table.do. If the creation was

Re: Action as Welcome File

2002-06-26 Thread Dennis Muhlestein
the request and it works just fine. -Dennis On Wed, 2002-06-26 at 16:07, Jerry Jalenak wrote: Is it possible to do the following? in web.xml.. servlet servlet-nameaction/servlet-name . . . /servlet servlet

RE: Struts1.1-b1 with WebSphere 3.5.*

2002-06-26 Thread Lee, Dennis
Hi, I do need to patch the FormTag.java to make it running in WAS 3.5.4. But once I upgraded the WAS to 3.5.5 (the same as 3.5.6), I can use the origianl download *.jar in compatibility mode. BTW, my WAS runs in AS/400 platform. Best Regards, Dennis Lee -Original Message- From

RE: ClassNotFoundException in Struts1.1-b1 with WebSphere 3.5.6

2002-06-26 Thread Lee, Dennis
Hi, Nice idea. I use Struts1.1b (all the jars inside) and crimson.jar (not xerces.jar) from tomcat distribution. It works. (BTW, I just don't know why xerces.jar didn't work in my case, once I switched to use crimson.jar, everything is ok) Best Regards, Dennis Lee -Original Message

RE: Struts1.1-b1 with WebSphere 3.5.*

2002-06-25 Thread Lee, Dennis
Hi, Started from WAS 3.5.5, you no need to patch the struts code. I can set it up with all struts jar file directly. Other setup procedures are remain unchanged. Best Regards, Dennis Lee -Original Message- From: Struts Newsgroup [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002

Best Practice for mapping servlets

2002-06-25 Thread Dennis Muhlestein
the order of my mappings in web.xml, the opposite occurs. My private pages then get mapped to the public extension. Whichever extension appears second in the web.xml is used. Any suggestions? Thanks Dennis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

request attribute with tiles

2002-06-24 Thread Dennis Muhlestein
to be a way to do this. Anyone tackled this problem with tiles before? Thanks Dennis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

request attribute with tiles

2002-06-24 Thread Dennis Muhlestein
to be a way to do this. Anyone tackled this problem with tiles before? Thanks Dennis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Tiles and Struts

2002-06-24 Thread Dennis Muhlestein
AFAIK If you configure tiles with an xml file, the ActionComponentServlet is in charge of reading that configuration and forwarding to the correct definitions. If you just use a jsp page to tell which template/tiles to use, the action servlet isn't used. -Dennis On Mon, 2002-06-24 at 14:26

HELP Tiles Action Component Servlet not being called

2002-06-21 Thread Dennis Muhlestein
than a few to make sure it was getting reloaded. This one has got me stumped. Any Suggestions? TIA: Dennis java.lang.IllegalArgumentException: Path indexPage does not start with a / character at org.apache.catalina.core.ApplicationContext.getRequestDispatcher(ApplicationContext.java

RE: HELP Tiles Action Component Servlet not being called

2002-06-21 Thread Dennis Muhlestein
-Dennis On Fri, 2002-06-21 at 15:09, [EMAIL PROTECTED] wrote: I am on Tomcat 403 and it works. I would not think it was a tomcat bug because it is not really being handled by that... What does your tiles definition file look like? I had some issues in there also. I wish I could remember

RE: HELP Tiles Action Component Servlet not being called

2002-06-21 Thread Dennis Muhlestein
unless you change the controller too. On Fri, 2002-06-21 at 14:47, Dennis Muhlestein wrote: Still a no-go. Fixing the servlet parameters to be tiles specific helped load the servlet. I turned the debug level up and verified the my servlet was being loaded. The following from my

  1   2   >