RE: Validator with Map-backed forms

2003-01-09 Thread Arik Levin ( Tikal )
You've got it. I'm working with the commons-validator, it's working just fine. -Original Message- From: Darren Spurgeon [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 4:05 AM To: Struts Users Mailing List Subject: Re: Validator with Map-backed forms Max- My team is in the

RE: JSPWriter prints ???

2003-01-09 Thread Mouratidis, Georg
Can you show me your select code in your html? -Original Message- From: Sakis Chatzinikolaou [mailto:[EMAIL PROTECTED]] Sent: Mittwoch, 8. Januar 2003 17:45 To: Struts Users Mailing List Subject: Re: JSPWriter prints ??? Georg thanks for your concern. The options are not from the

RE: Struts and TagLibrary Xtags

2003-01-09 Thread Mouratidis, Georg
the dis is that it does not work with struts 1.1.2!?! this is my experience. i have been trying since two days but i have no results only errors. And nobody could help in this list. BTW: What is Stxx? Where can i download this? thanks george -Original Message- From: Rajshree

Using href's tp call an Action class.

2003-01-09 Thread John Bateman
Hi I'm trying to make a simple html link a href=Foo/a call an Action class I have setup. My struts-config looks like this action path=/listMembers type=com.itworks.formsareus.member.action.ListMembersAction scope=request name= validate=true input= And my URL is a

Re: Using href's tp call an Action class.

2003-01-09 Thread kiuma
It should be a href=/FormsAreUs/listMembers.doFoo/a as you probably have defined servlet-mapping servlet-namestruts/servlet-name url-pattern*.do/url-pattern /servlet-mapping in your web.xml kiuma. John Bateman ha scritto: Hi I'm trying to make a simple html link a href=Foo/a call an

RE: Using href's tp call an Action class.

2003-01-09 Thread Andrew Hill
Should that not be something like /FormsAreUs/listMembers.do ? You will also want to use the html:link tag to rewrite the url for session encoding etc... -Original Message- From: John Bateman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 16:24 To: [EMAIL PROTECTED] Subject:

RE: What is the best way to convert a given set of data(Value bea n List ) in PDF format...??

2003-01-09 Thread shirishchandra . sakhare
Thanks Oliver for the reply..I did look into this and as u said, this is the way...But I have another question.. Is there any way to directly convert from HTML or JSP to pdf?I mean why do i have to write xsl again just to create the page layout when I do already have the page layout created

RE: What is the best way to convert a given set of data(Value bea nList ) in PDF format...??

2003-01-09 Thread ROSSEL Olivier
Thanks Oliver for the reply..I did look into this and as u said, this is the way...But I have another question.. Is there any way to directly convert from HTML or JSP to pdf?I mean why do i have to write xsl again just to create the page layout when I do already have the page

RE: code reuse - DispatchAction input parameter for different C RUD pages

2003-01-09 Thread PILGRIM, Peter, FM
-Original Message- From: Peterkofsky, Don [mailto:[EMAIL PROTECTED]] --///-- I've been successfully using the Dispatch action in the development of an application here, without yet implementing validation. I'm using DynaValidatorActionForm beans and extending action classes from

problem with bean:define

2003-01-09 Thread Suresh Addagalla
Title: Message Hi, I have a small problem, which I need to address urgently. I have a Vector and am using logic:iterate to iterate through each element. I want to define each element as a bean inside the iterate tag. Is this possible? I am trying the following, but it gives an error:

problem with bean:define (with error)

2003-01-09 Thread Suresh Addagalla
Title: Message Hi, I have a small problem, which I need to address urgently. I have a Vector and am using logic:iterate to iterate through each element. I want to define each element as a bean inside the iterate tag. Is this possible? I am trying the following, but it gives an error:

Re: JSPWriter prints ???

2003-01-09 Thread Jim Theodoridis
Hi. I use the same database and Struts. The data of the database displays well but only if i use %@ page contentType=text/html; charset=iso-8859-7 % I think U must set the corect character encoding for the PageContext PageContext .setCharacterEncoding(.) Jim Theodoridis - Original

[OT(a bit)] Calling xslt from within xslt??

2003-01-09 Thread Simon Kelly
Hi, I'm trying to put a site together where all data (save a few messages) is dynamically created during a request. I have a basic structure for a generic page layout in schema form and am using struts with xslt/xml instead of JSPs to pull all the data into html responce pages. The problem I'm

[OT][JavaScript][i18n] How to get a date with a user?

2003-01-09 Thread Andrew Hill
Anyone know a good way of getting a java.util.TimeZone object corresponding to the users timezone (that doesnt involve having them manually specify it at login which is what Im looking at having to do now), so that I can display various dates to them in local time? I thought of getting the

Form errors and global errors

2003-01-09 Thread Victor Batista
Hello! My application has errors specific to form fields, and global errors. Should I add global errors to the ActionErrors object with key ActionErrors.GLOBAL_ERROR? In the jsp, how can I know if I have a GlobalError, or a form(s) error(s). I need to know this, because the behavior is

RE: Validator with Map-backed forms

2003-01-09 Thread Mohan Radhakrishnan
Hi, I am opening a javascsript window like this. a href=# onClick=openWindow('/x.action','a2','width=330, height=210') This action should only forward to a JSP. The real action is fired only after one hits the submit button. I know that x.action is some sort of relay action. How can

Relay action

2003-01-09 Thread Mohan Radhakrishnan
Hi, I am sorry . My previous mail had a wrong subject line. Mohan -Original Message- From: Mohan Radhakrishnan [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 5:46 PM To: Struts Users Mailing List Subject: RE: Validator with Map-backed forms Hi, I am opening a

RE: Error Handling Database constraints

2003-01-09 Thread Krishnakumar N
I think the database constraints are anyway necessary unless your database is set up for table level locking or with isolation level serializable as it would be possible for another txn to insert the record after your first txn's select. Since these constraints exist in the database, the

RE: Relay action

2003-01-09 Thread Krishnakumar N
action path=/x forward=/reports/includes/z.jsp/ Cheers, Krishna -Original Message- From: Mohan Radhakrishnan [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 5:47 PM To: Struts Users Mailing List Subject: Relay action Hi, I am sorry . My previous mail had a wrong subject

RE: Relay action

2003-01-09 Thread Mohan Radhakrishnan
Hi, The use case is this. 1. User clicks on hyperlink on JSP1. 2. A new window opens. I don't want to specify the path of JSP2 as the location of this window. So the location should be action1. action1 forwards to JSP2. 3. User hits submit on JSP2. 4. Action2 is fired

Re: JSPWriter prints ???

2003-01-09 Thread Jim Theodoridis
Hi!..(Geia) Sory I confused. Forget about PageContext. Here is an example jsp %@ page contentType=text/html; charset=iso-8859-7 % %@ taglib uri=/WEB-INF/struts-html.tld prefix=html % html:form action=editArticle.do name=articleForm type=gr.tera.ekozani.article.ArticleForm

Plugins for Struts in Eclipse IDE - www.strecl.com

2003-01-09 Thread STRECL team
Hi, New powerful tool for Java server-side applications development can be found at http://www.strecl.com. STRECL is a set of plugins for Eclipse IDE offering easier utilization of the Struts framework. Look at following brief list of available plugins and their functionality or learn more

RE: Relay action

2003-01-09 Thread Krishnakumar N
hmm. don't understand why this is not what you want. In JSP1, have the link specified as a href=# onClick=openWindow('/x.action','a2','width=330,height=210') .../a In struts-config.xml, have the forward action mapping, action path=/x forward=/reports/includes/z.jsp/ This

Chaining one action class with another- Help needed..

2003-01-09 Thread Seshadri_Ramani
Hi All, Can anyone let me know how to achieve chaining of action classes. I have an requirement wherein i want to pass the control from one action class to another . I tried the following . Method1 Struts Config action path=action path1 type=name of the

RE: Error Handling Database constraints

2003-01-09 Thread Robert Taylor
Alireza, I haven't tried this, but it seems like if you created a base database exception class that had the ability to parse the SQLException messages and return the appropriate application level exception, it might address your needs. robert -Original Message- From: Alireza Fattahi

RE: [OT][JavaScript][i18n] How to get a date with a user?

2003-01-09 Thread Jerome Jacobsen
One pickup line I've heard is Excuse me, do you have the time?, but I've never used it myself as I make it a policy not to date my users. Seriously, another option is to have user Preferences that are supplied at registration time and can be edited later. Then they don't have to keep supplying

RE: [OT][JavaScript][i18n] How to get a date with a user?

2003-01-09 Thread Andrew Hill
Yeh, I was considering that. For now it will default to whatever timezone the server is in (as the folk doing the ejb side of things havent time to provide me persistence for it). As most of the users will be on an intranet and the server in the same timezone as them (or configured to render

Paper

2003-01-09 Thread Jonathan
Hi everyone, I'm currently writing a paper for one of my University assignments on web application frameworks. It basically covers the different approaches that web frameworks take and is focused around Struts and a product currently being developed in the university using Struts. It also

Re: Paper

2003-01-09 Thread Amandeep Midha
Hi Jonathan Pls send the attachment once again regards, - Amandeep Midha (CHARMIE) IT Solutions (India) Pvt. Ltd. No. 17, South End Road, Basavanudi Bangalore - 560 004. India TEL : 91-80-6655122 MOBILE: +919844048126 FAX: 91-80-6655755

RE: Paper

2003-01-09 Thread Chappell, Simon P
Jonathon, Hello. Count me in to help with your struts questions. I don't know too much about the other frameworks, but I do have years of web application experience for answering your general questions. Feel free to contact me directly. Simon The British Guy living and working in Wisconsin

AW: Paper

2003-01-09 Thread Lenharcik, Juraj
Please send me the paper, too. thank you -Ursprüngliche Nachricht- Von: Jonathan [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 9. Januar 2003 16:03 An: Struts-User@Jakarta. Apache. Org Betreff: Paper Hi everyone, I'm currently writing a paper for one of my University assignments

Paper

2003-01-09 Thread Jonathan
Ok, Sorry to everyone about he last mail, it seems as if the server bounced my attachment. I've included links to it here. (Original message enclosed also) The document can be found here.. http://users.aber.ac.uk/jph8/frameworks.doc Or in a zipped format here.

AW: Paper

2003-01-09 Thread Lenharcik, Juraj
.doc? bad ;-) -Ursprüngliche Nachricht- Von: Jonathan [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 9. Januar 2003 16:19 An: Struts-User@Jakarta. Apache. Org Betreff: Paper Ok, Sorry to everyone about he last mail, it seems as if the server bounced my attachment. I've included

RE: session scope ActionForm

2003-01-09 Thread Sri Sankaran
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 3:51 PM To: [EMAIL PROTECTED] Subject: session scope ActionForm I am a bit confused about session scope of ActionForm. For example, in my ActionForm testForm private

String Array

2003-01-09 Thread Gus Delgado
I'm trying to populate a table with some data from a collection and a column with a text field do enter data in. I'm trying to make the field in that column a String array but it does not seem to be working? logic:iterate id=searchresult indexId=i name=users tr

RE: String Array

2003-01-09 Thread Siggelkow, Bill
Try using the indexed attribute of the html:text tag. html:text name=myForm indexed=true property=costcenter size=12/ -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:13 AM To: Struts Users Mailing List Subject: String Array I'm

Re: Paper

2003-01-09 Thread JONATHAN PHILIP HOLLOWAY
Ok for the heathens amongst you its also here as a pdf. I didn't want to convert it quite yet : ) http://users.aber.ac.uk/jph8/frameworks.pdf Jon. - Original Message - From: Lenharcik, Juraj [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, January 09,

Re: Call Struts Action from JS

2003-01-09 Thread Gus Delgado
The reason why I'm trying to do this is that I have one html:form with two submit buttons that do different actions. I tried both of your seggestions and I'm still getting that java script popup on IE 5.5 script language=JavaScript function setNav(formObject) { //alert (FormObject: +

simple (?) question ;)

2003-01-09 Thread Andrzej Roszkowski
Hello! I'm new to struts and a little bit leazy ;). I have out-of-host html form that have to be redirected to my application, then I have to virify that form and redirect this values to other html form (jsp) that contains the same fields plus some more to enter, that means the second form is

A form with unknown number of checkboxes.

2003-01-09 Thread ROSSEL Olivier
I want to display the content of a collection. Each value should have a checkbox with it. Some thing like: | | Value One | | Value Two | | Value Three Delete selected items (where a | | represents a checkbox. You had already reckognized them, isn't it? :-)

Re: Problem running Struts-example on JBoss 3.0

2003-01-09 Thread Vincent Stoessel
Unless you really need to use Tomcat (which I love) I would suggest using the default Jboss/Jetty version. Struts 1.1b+ runs fine with that combo. Mervin Williams wrote: I deployed the struts-example sample application onto the Jboss 3.0 server, but am getting errors. If anyone has the

Problems with nested tags

2003-01-09 Thread Jordan Thomas
Hi, I am trying to use the nested tags within an iterate loop and I am getting the following output: input type=hidden name=org.apache.struts.taglib.html.BEAN[1].permissionLanguageData[1].langua geId value=en What I really need is: input type=hidden name=languageId[1] value=en I am not sure

RE: A form with unknown number of checkboxes.

2003-01-09 Thread Sri Sankaran
The html:multibox tag will serve this purpose. See http://jakarta.apache.org/struts/userGuide/struts-html.html#multibox. Sri -Original Message- From: ROSSEL Olivier [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:54 AM To: '[EMAIL PROTECTED]' Subject: A form with

RE: Problems with nested tags

2003-01-09 Thread Sri Sankaran
Your nested:root isn't what you expect it to since you are closing it immediately. Look closely, you have nested:root name=permissionteset/ ^^ You probably meant nested:root name=permissionteset .. /nested:root Sri -Original Message- From:

forwarding to unrelated pages

2003-01-09 Thread John . E . Gregg
Hi all, I'm pretty new to Struts but I've been following it for a long time. Now that I'm starting to use it, I'm trying to figure out the best way to make objects available to a jsp that aren't involved in the processing of the previous action. I know about HttpServletResponse.addAttribute(),

RE: Problems with nested tags

2003-01-09 Thread Jordan Thomas
OK, done. Thanks for that Sri. That seemed easy enough but now I am getting an error that says: javax.servlet.ServletException: No getter method for property languageId of bean org.apache.struts.taglib.html.BEAN Any suggestions? This has really got me stumped. thanks Jordan -Original

RE: Problems with nested tags

2003-01-09 Thread David Morris
Jordan, I had a similar problem with the beta3 version of the nested tags. I posted a bug in bugzilla along with a patch that fixed this issue for me. What I found was that some code in the NestedPropertyHelper was picking up the default nested name value. If you are using Beta 3, you might

Re: forwarding to unrelated pages

2003-01-09 Thread Mark Lowe
The option to instantate a bean in the jsp is always available using 'useBean' .. You can then use the struts tags or jstl etc.. You don't need and action.. The other option is to put everything in the session and then its available to the presentation layer when required.. For example if

RE: Paper

2003-01-09 Thread Ron Day
Send attachment to [EMAIL PROTECTED], I'll look at it. There's no attachment on youe email to the board Ron -Original Message- From: Jonathan [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:03 AM To: Struts-User@Jakarta. Apache. Org Subject: Paper Hi everyone, I'm

RE: forwarding to unrelated pages

2003-01-09 Thread pqin
I create two Actions, one for loading page, the other for form submission. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: January 9, 2003 11:29 AM To: [EMAIL

Re:Chart products

2003-01-09 Thread Stefan Werner
Cathy King wrote on Tuesday, January 07, 2003 4:53 AM Subject: Chart products Could you recommend some chart products to me? I really appreciated your help and suggestions. Hi Cathy, to generate graphics or charts, you can use svg within a customtag in your jsp (with no additional cost!). A

RE: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-09 Thread PILGRIM, Peter, FM
-Original Message- From: Steve Muench [mailto:[EMAIL PROTECTED]] | I did a build of a project [ALT+F9]. I get this error message in a JSP | Error: java.lang.ExceptionInInitializerError: java.lang.NullPointerException This was an issue JDeveloper 9.0.2 and no longer occurs

anyone use LocaleBeanUtils?

2003-01-09 Thread david chan
Hi, I posted this questions two times but no body seems using LocaleBeanUtils in action class. Hope this time someone can give me a feedback. I am looking for LocaleBeanUtils.copyproperties example. I have a valueobject which contain some sql date memeber and a formobject with corresponding

Validator question

2003-01-09 Thread Zsolt Koppany
Hi, how can I define a validator that for example the e-mail must NOT match a regular expression? -- Zsolt -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: anyone use LocaleBeanUtils?

2003-01-09 Thread Franco Caponi
Hi david, I have encountered the same problem and i'm finding for the best solution. My solution is to register (with the ConvertUtils.register() method) two new default converter used by the entire struts framework (for the populate method for example): One for the class java.sql.Date, that

RE: Validator question

2003-01-09 Thread James Childers
I haven't worked much with validator yet, but from my experience with Vim's regular expressions getting the negation of a regexp is a hard problem. You can do it with character classes (e.g.: [^ABC]), but this isn't very elegant. But AFAIK there is no not operator for regexps similar to the one

RE: Paper

2003-01-09 Thread Joe Barefoot
You meant for the faithful amongst you, right? ;) I guess for some even a Linux .doc viewer is sacrilege. --joe -Original Message- From: JONATHAN PHILIP HOLLOWAY [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 7:38 AM To: Struts Users Mailing List Subject: Re: Paper

Keeping a resource available for JSP's, closing at end of request

2003-01-09 Thread Molitor, Stephen
I want to keep a certain resource (a db connection of sorts) open until the last JSP in a request has finished doing its stuff. The reason I want to do this is that I'm putting smart data objects in the request, for consumption by the JSP, and these objects have methods that might trigger a db

Chaining one action class with another- Help needed..

2003-01-09 Thread Seshadri_Ramani
Hi All, I have an requirement wherein i want to pass the control from one action class to another . i want to chain one action class after another . I tried the following . Method1 Struts Config action path=action path1 type=name of the first action class

Plugins for Struts in Eclipse IDE - www.strecl.com

2003-01-09 Thread STRECL team
Hi, New powerful tool for Java server-side applications development can be found at http://www.strecl.com. STRECL is a set of plugins for Eclipse IDE offering easier utilization of the Struts framework. Look at following brief list of available plugins and their functionality or learn more

Re: Struts and TagLibrary Xtags

2003-01-09 Thread Rajshree Vivekanandan [EMAIL PROTECTED]
George, Stxx: Struts for transforming XML with XSL (stxx) is an extension of the struts framework to support XML and XSL without changing the functionality of struts . You can download it in - http://www.oroad.com/opencode/stxx/ Xtags is supposed to do similar stuff, but if it does not work

QUESTIONS: Ed Hill's Display Custom Tag Library

2003-01-09 Thread Hohlen, John
I know a lot developers are using Ed Hill's Display custom tag library. About a week ago I sent Ed an e-mail asking him about the status of this very useful library. Unfortunately, I haven't received any type of response. I was wondering if anyone else might know the answers to my questions.

Re: Keeping a resource available for JSP's, closing at end of request

2003-01-09 Thread David Graham
Why can't you just get another db connection in the lazy load methods when they're called? Why do you need to keep one specific connection open? David From: Molitor, Stephen [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED]

RE: QUESTIONS: Ed Hill's Display Custom Tag Library

2003-01-09 Thread Jerome Jacobsen
I sent Ed an email yesterday asking him the status too. No reply yet. Instead of adding it to Struts I was hoping he'd add it to Jakarta Taglibs. He used the packaging names of Jakarta Taglibs for his classes so I am hopeful. I would like to see the JSTL-EL ability added to it as well. It is a

RE: Problems with nested tags

2003-01-09 Thread Jordan Thomas
Thanks David, Looks like that could be the problem but unfortunately your patch hasn't been committed. cheers Jordan -Original Message- From: David Morris [mailto:[EMAIL PROTECTED]] Sent: Thursday, 9 January 2003 5:54 PM To: [EMAIL PROTECTED] Subject: RE: Problems with nested tags

DynaActionForm

2003-01-09 Thread Samir Shah
Does anyone have an example of extending a DynaActionForm? I want to extend it and also override the validate() method. Any help will be appreciated. Thanks, -Samir Shah - Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now

Tiles and tab like style

2003-01-09 Thread Jim Theodoridis
Hi! In the tiles-doc there is an example with tabs. On the tiles-example-def.xml defines the pages that displayed when choose a tab. I want to substitute those pages with Actions is it possible? . !-- === -- !-- Tabs test page and

Passing parameters with requestURI of display:table tag

2003-01-09 Thread Susan Bradeen
And speaking of Ed Hill's Display tags (yes, very useful) ... I am having trouble figuring out how to pass parameters with the requestURI attribute of a display:table tag without breaking the paging functionality. I've got an Action path set to the requestURI, and the display:table tag

RE: Passing parameters with requestURI of display:table tag

2003-01-09 Thread Jerome Jacobsen
See Struts html:rewrite tag. It should make your life easier. Something like this: bean:define id='pagingRequestURI' html:rewrite page='/myAction.do' paramName='myField'/ /bean:define display:table requestURI='%= pagingRequestURI %' ... However in the rewrite you'll need myField to be a

RE: Passing parameters with requestURI of display:table tag

2003-01-09 Thread Jerome Jacobsen
Correction: need the paramId attribute too: html:rewrite page='/myAction.do' paramId='myField' paramName='myFieldBean'/ -Original Message- From: Jerome Jacobsen [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 3:30 PM To: Struts Users Mailing List Subject: RE: Passing

Re: QUESTIONS: Ed Hill's Display Custom Tag Library

2003-01-09 Thread Rick Reumann
Actually a lot has been done on this tag lately by Tim Golden (and I added a little bit to allow you to add an array of columns to display). Tim could post the link to where the latest jar he worked on is. I don't have the link here but have it at home if he doesn't reply to the list before

RE: Passing parameters with requestURI of display:table tag

2003-01-09 Thread Susan Bradeen
Thanks, Jerome, I will definitely give this a try. Susan On 01/09/2003 03:34:44 PM Jerome Jacobsen wrote: Correction: need the paramId attribute too: html:rewrite page='/myAction.do' paramId='myField' paramName='myFieldBean'/ -Original Message- From: Jerome Jacobsen

Re: QUESTIONS: Ed Hill's Display Custom Tag Library

2003-01-09 Thread Rick Reumann
You can check out Tim's latest updates to the display tag and get the latest jar and source code here: http://timgolden.com/taglib/ Both of us have tried also to get a hold of Ed for a long time now and I think he's disappeared:) Anyway he started some great work which is easy to build upon. Tim

SV: Using Log4J (v1.1.3) With Jakarta Commons Logging

2003-01-09 Thread Arnesen, Geir
Upgrade to a newer version of the Log4j api. Geir -Opprinnelig melding- Fra: Hohlen, John [mailto:[EMAIL PROTECTED]] Sendt: 9. januar 2003 22:14 Til: Struts-User (E-mail) Emne: Using Log4J (v1.1.3) With Jakarta Commons Logging My team is currently using version 1.1.3 of Log4J. We're

can we have only one tiles_def.xml?

2003-01-09 Thread dmz
We are thinking about using only one tiles_def.xml for all languages by using a message key for the displaying texts int tiles_def.xml. This way perhaps the displaying texts can be put in the application.properties file. Is this possible? Thank you. - Do you

Re: QUESTIONS: Ed Hill's Display Custom Tag Library

2003-01-09 Thread Susan Bradeen
Rick and Tim, Thank you for your contributions! Susan Bradeen On 01/09/2003 04:06:25 PM Rick Reumann wrote: You can check out Tim's latest updates to the display tag and get the latest jar and source code here: http://timgolden.com/taglib/ Both of us have tried also to get a hold of Ed

Re: Using Log4J (v1.1.3) With Jakarta Commons Logging

2003-01-09 Thread Craig R. McClanahan
On Thu, 9 Jan 2003, Hohlen, John wrote: Date: Thu, 9 Jan 2003 15:14:28 -0600 From: Hohlen, John [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts-User (E-mail) [EMAIL PROTECTED] Subject: Using Log4J (v1.1.3) With Jakarta Commons Logging My team is

context relative image reference in a CSS file

2003-01-09 Thread Dan Payne
I recall seeing someone mention a project on sourceforge that allowed one to make context independent references to images from the context root within CSS files. Anyone? Or perhaps another solution? I've got this entry in my stylesheet.css file: ul { list-style-image:

RE: context relative image reference in a CSS file

2003-01-09 Thread Joe Barefoot
The simplest solution is to use a relative path: ul { list-style-image: url(../images/li.gif); } If you have your CSS file in folder 'css' (for instance), with sibling folder 'images', this will work no matter what the app. context name is, in Tomcat at least (I assume other web servers

Struts forwards requests as http when jsp page was invoked as https

2003-01-09 Thread pantichd
Hello, I need help figuring out how to make my struts application work with ssl. I'll try to give a brief overview of what I'm doing: I invoke the mai.jsp file using https protocol. No problem there. Links off that page work fine because they are built as https://somelink...;. The problem is

action from an Interface

2003-01-09 Thread Gus Delgado
html:link page=/glAccount.do?action%= MyInterface.ACTION% how can I get something like this to work? any ideas thanks -gus -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Struts and Validation

2003-01-09 Thread struts
I have defined a form as follows in my validation.xml: form name=printLabelForm field property=printer depends=required arg0 key=printlabel.prompt.printer / /field field

Web Application Frameworks Paper Overview

2003-01-09 Thread Jonathan
Hi everyone, Just in case anybody missed this the first time as it was not posted as a main topic I've just resent it with the links.. Original Message. I'm currently writing a paper for one of my University assignments on web application frameworks. It basically covers the

RE: context relative image reference in a CSS file

2003-01-09 Thread Craig R. McClanahan
On Thu, 9 Jan 2003, Joe Barefoot wrote: Date: Thu, 9 Jan 2003 14:46:09 -0800 From: Joe Barefoot [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: context relative image reference in a CSS file The simplest

RE: context relative image reference in a CSS file

2003-01-09 Thread Dan Payne
Well, I can't use a relative reference as I've got over 500 JSPs in many,many folders that are running off of 4 templates. It's in the templates that the CSS link is so a reference would only be valid from the templates folder (or another folder at the same level). The folder structure is much

Re: [ANNOUNCE] Struts Training in NYC and DC in January

2003-01-09 Thread V. Cekvenich
#1.We are looking for more people to develop basicPortal.sf.net (baseBeans.com is on basicPortal). Now we are working on setup.exe (currently in beta but available) that will install DB, Tomcat (because people do not know how to set up JDBC realms in server.xml). As you know bP demos master

RE: context relative image reference in a CSS file

2003-01-09 Thread Joe Barefoot
Okay, well I couldn't swear that list-style-image: works like background: in CSS sheets ('cause I haven't used it), but I would assume that it does. We use something like this all over our CSS: background: url(../images/icon_confirm.gif); The url reference above is intepreted by the *browser*

first action

2003-01-09 Thread Yan Zhu
hey guys, what is the best way to implement a startup action that always will be executed first before any jsp is hit? thanks yan -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: first action

2003-01-09 Thread Damm, Gary
Sounds more like a PlugIn. Here are the API docs: http://jakarta.apache.org/struts/api/org/apache/struts/action/PlugIn.htm l You just implement this interface, configure it in your config.xml file and you're up and running. Gary -Original Message- From: Yan Zhu [mailto:[EMAIL

RE: action from an Interface

2003-01-09 Thread Sri Sankaran
html:link page='%=/glAccount.do?action=+MyInterface.ACTION%' Sri -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 5:33 PM To: Struts Users Mailing List Subject: action from an Interface html:link page=/glAccount.do?action%=

html:link tag

2003-01-09 Thread Damm, Gary
Anyone know if/how to add multiple query parameters using this tag? ie: www.myserver.com/foo.jsp?id=1bar=2... Thanks, Gary -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: html:link tag

2003-01-09 Thread Sri Sankaran
Please read the docs at http://jakarta.apache.org/struts/userGuide/struts-html.html#link. It explains how to set up a Map to provide multiple parameters. Sri -Original Message- From: Damm, Gary [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:44 PM To: Struts Users

RE: first action

2003-01-09 Thread Emmanuel Bridonneau
You usually want to do this whilst initializing you app. In this case, simple and pretty much standard would be to write a servlet (generic if you don't want to be tied to http) as part of your web-app. All you do is implement its init() method and declare it in your web.xml. Only once init is

Error in testing a Custom Tag

2003-01-09 Thread EMilitante
I'm not sure if this is related to custom tags, but when I created a TLD file and it's associated objects(class,jsp and updated web.xml), I get the following error: Jan 9, 2003 9:51:46 PM EST Error HTTP HttpServer(6804417,null default ctx,emilitanServer) found no context for /wrox-struts/xxx.jsp.

Struts Productivity Survey

2003-01-09 Thread Greg.Reddin
I am conducting an informal survey to determine how difficult it is for new developers with differing skills becomve productive with Struts. This really only applies to those using 1.1x. Anyone who is willing, please answer the following questions: 1. How long did it take you to get the

Re: Struts Productivity Survey

2003-01-09 Thread Rick Reumann
The problem with this survey is that the results you would get would not be accurate for assessing the time it would take new developers to catch on to using Struts at the present time. There is now a lot more documentation and examples out there to learn from than there was just six months ago.

[FRIDAY] RE: Struts Productivity Survey

2003-01-09 Thread Andrew Hill
Why son, back in my day I remember havin ta trudge twenty miles through the snow just to get my hands on one of them struts 1.02 source files cos we didnt have no documentation back then! Nope. None of that fancy (e)book learning for us son! Werent no struts classes we cud take either - an I

RE: [FRIDAY] RE: Struts Productivity Survey

2003-01-09 Thread James Mitchell
... trudge that twenty miles so as to send a telegram to Craig... Stop lying. I know for a fact you were using smoke signals!! -- James Mitchell Software Engineer/Open Source Evangelist http://www.open-tools.org C makes it easy to shoot yourself in the foot; C++ makes it harder, but when

RE: [FRIDAY] RE: Struts Productivity Survey

2003-01-09 Thread Andrew Hill
True, but at the interface layer they were still telegrams, it was just that we used smoke signals in the implementation layer sometimes... -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Friday, 10 January 2003 12:38 To: 'Struts Users Mailing List'; [EMAIL

Re: first action

2003-01-09 Thread Dan Tran
Also take a look at Struts-example application in the distribution on how to configure a PlugIn. This is how I wrote my first PlugIn -D - Original Message - From: Damm, Gary [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, January 09,

  1   2   >