Re: Struts 1.3 + Tiles + Chain config

2006-10-18 Thread Michael Rush
... ... Related to this, is there a way to specify the tiles-defs file to use? For example, my application has 3 modules, each with its own tiles-defs file. - To unsubscribe, e-mail: [EMAIL PROTECTE

Re: sslext -- anyone using it?

2006-09-15 Thread Michael Rush
I have been using the sslext library for some time. I have only used it with Struts 1.1 and 1.2 though, never with 1.3. As for your concerns regarding the custom controller/processor class, sslext comes with a SecureTilesRequestProcessor class. I have been using it with tiles without issue.

sslext -- anyone using it?

2006-09-15 Thread Michael Rush
I'm looking into implementing something to force ssl for logins (and a few other pages) and then switching back to standard http once logged in. I found sslext at http://sslext.sourceforge.net/ but it looks like it hasn't been updated in a couple of years. I have a couple of concerns: * I

Re: "name" Attribute in tag

2006-09-06 Thread Michael Rush
Struts uses the "name" attribute to repopulate your form on submit. So if you have an action /someAction mapped to a form bean named "myForm", it should look like , and thus . So in your JavaScript you can refer to document.myForm. unless of course you're using xhtml mode, in which case i

re: Centralized logging software

2006-08-22 Thread Michael Rush
Hello, This my question off the topic, but was just wondering if you guys know of any open source software that lets me view all my application logs deployed on various servers to be viewable from one place and that should be online. Please share if you know of any such software? Thanks mu

Re: Struts and Jsessionid control

2006-08-17 Thread Michael Rush
http://tomcat.apache.org/tomcat-5.0-doc/config/context.html says: Set to true if you want cookies to be used for session identifier communication if supported by the client (this is the default). Set to false if you want to disable the use of cookies for session identifier communication, an

html:form / styleId in xhtml mode

2006-08-01 Thread Michael Rush
I was just looking into upgrading my app from 1.2.9 to 1.3.4 and have run into a snag: 2006-08-01 15:33:49,911 (ERROR) InsertTag.doEndTag - ServletException in '/pages/site/entry.jsp': Cannot specify "styleId" when in XHTML mode as the HTML "id" attribute is already used to store the bean n

Re: javascript question

2004-11-03 Thread Michael Rush
2004, at 10:51 AM, Jason King wrote: document.formname["parent.nestedname"] will reference an element in the form formname which has a period in it's name. Michael Rush wrote: I've got a form that's using nested forms, with the following type of layout.. [radio] option 1 [text]

javascript question

2004-11-03 Thread Michael Rush
I've got a form that's using nested forms, with the following type of layout.. [radio] option 1 [text] value 1 [text] value 2 [radio] option 2 [text] value 1 [text] value 2 [radio] option 3 [text] value 1 [text] value 2 Each of the groups is a nested form, so the form element na

Re: OT: IE loosing session / cookies

2004-08-06 Thread Michael Rush
It's probably related to security settings . More specifically you may want to look into deploying a compact privacy policy (P3P). On Aug 5, 2004, at 7:10 AM, Rosenberg, Leon wrote: Hi, A bit off-topic, but maybe you have had this too... We have an application running with struts on tomcat 5 in

sharing images across modules

2004-08-04 Thread Michael Rush
I'd like to use some common images across modules. I've found that I can accomplish what I need by using: "/> Originally I was trying to accomplish this using the html:img tag, but the module attribute is ignored in this case: Does anyone know why the latter doesn't work? Is it possible

sharing images across modules

2004-08-04 Thread Michael Rush
I'd like to use some common images across modules. I've found that I can accomplish what I need by using: "/> Originally I was trying to accomplish this using the html:img tag, but the module attribute is ignored in this case: Does anyone know why the latter doesn't work? Is it possible