Form action context is default rather than the module's context

2004-12-03 Thread Daniel Massie
Using a module I go through an action to a JSP containg a form (using html:form). The action attribute of this form is the same as an action defined in a module's struts config ie /Login, but when the page is accessed the full form action is the ${default context}/Login rather than ${default con

RE: Pre-populating a form from a database

2004-12-03 Thread Simon Matic Langford
have you got any documentation anywhere on your site? I couldn't see any... > -Original Message- > From: Tak Yoshida [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 03:01 > To: Struts Users Mailing List > Subject: Re: Pre-populating a form from a database > > > Carlos Cajina wrote

Date validation, multiple format

2004-12-03 Thread Mohd Amin
Hi, I have a requirement for the date format to be depending on the user which logs in. Showing the date formatted to the user preference is a no brainer but validation using struts validator I think is slightly tougher, anyone has any idea on how to get this implemented? Thanks Amin

i18n input

2004-12-03 Thread Simon Matic Langford
Is there a general pattern for localised input, ie being able to enter numbers and dates formatted for Germany but getting them formatted for Java on the server side for constructing BigDecimals etc, aside from using utilities in the java.text package? What about for displaying back the other way?

Re: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Mark Lowe
Have you done this in the jsp? MArk On Thu, 2 Dec 2004 12:39:01 -0700, Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > > > -Original Message- > > From: Jerry Rodgers [mailto:[EMAIL PROTECTED] > > Sent: Thursday, December 02, 2004 12:11 PM > > To: [EMAIL PROTECTED] > > Subject: JSTL,

RE: Form action context is default rather than the module's context

2004-12-03 Thread Daniel Massie
It actually looks as though the correct module is being detected when the request is processed, and forwarding to the correct jsp, but the module context is being lost when the JSP is processed, thus the wrong action in the form. Is there any reason for the context being lost? Daniel -Orig

RE: Pre-populating a form from a database

2004-12-03 Thread Donie Kelly
Thanks, that worked. -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: 02 December 2004 17:12 To: Struts Users Mailing List Subject: RE: Pre-populating a form from a database > -Original Message- > From: Donie Kelly [mailto:[EMAIL PROTECTED] > Sent: Thursday,

RE: Date validation, multiple format

2004-12-03 Thread David G. Friedman
Is the date format changed because of the user's language selection or particular country? If so, validation supports country and language extensions for that purpose. Regards, David -Original Message- From: Mohd Amin [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 4:23 AM To:

ActionForm validate and redirect

2004-12-03 Thread Ilja Smoli
Hi I use validate method in one of my ActionForms, after validation is fail, method redirects browser to wahatever is set in struts-config.xml under input attribut... I faced problem that i need this value to be dynamic. (I want to redirect a user to same page from where form has been submitted but

Re: i18n input

2004-12-03 Thread Hubert Rabago
FormDef can help you with this. https://formdef.dev.java.net. There's a locale.war sample app download which can work with different locales. It doesn't have support for BigDecimals, though (not yet, anyway). For displaying them on the screen, experiment bean:write with format/formatKey/locale a

Re: ActionForm validate and redirect

2004-12-03 Thread Hubert Rabago
You can't modify the actual struts instances that were configured in struts-config. However, you can handle the validation in your Action object (see http://marc.theaimsgroup.com/?l=struts-user&m=109302108205069&w=2) and redirect with parameters by constructing your own ActionForward instance. Th

RE: i18n input

2004-12-03 Thread Simon Matic Langford
yeah, I've looked at formdef, unfortunately I'm using an extension to struts which prevents me using this, is there anything else? simon > -Original Message- > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > Sent: 03 December 2004 14:53 > To: Struts Users Mailing List > Subject: Re: i

RE: ActionForm validate and redirect

2004-12-03 Thread Robert Taylor
I did this by subclassing the RequestProcessor and modifying processValidate(). I place a value in the request which indicates the current url and don't define an input attribute for the action mappings that need this dynamic input functionality. In processValidate() if mapping.getInput() == null

RE: Adding parameters to a link

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Randall Svancara [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 02, 2004 6:08 PM > To: Struts Users Mailing List > Subject: RE: Adding parameters to a link > > > Thanks, I will check google on the proper way to implement > this. It sounds like a hass

RE: i18n input

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Simon Matic Langford [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 2:50 AM > To: [EMAIL PROTECTED] > Subject: i18n input > > > Is there a general pattern for localised input, ie being able to enter > numbers and dates formatted for Germany but g

RE: ActionForm validate and redirect

2004-12-03 Thread Jim Barrows
> -Original Message- > From: news [mailto:[EMAIL PROTECTED] Behalf Of Ilja Smoli > Sent: Friday, December 03, 2004 7:33 AM > To: [EMAIL PROTECTED] > Subject: ActionForm validate and redirect > > > Hi > I use validate method in one of my ActionForms, after > validation is fail, > method r

i18n and the database...

2004-12-03 Thread Michael Klaene
Hi. I'm investigating ways to support multiple languages in my app, without using the typical ResourceBundle/MessageResources approach. I was thinking that I would like to use a database instead. It seems to me that a large application trying to support multiple languages with this approach m

RE: i18n input

2004-12-03 Thread Simon Matic Langford
yeah, I know I can do this, but this is a large system with around 200 jsps 80 views and a number of controllers. doing the display is reasonably simple I know, but extremely tedious and prone to errors, I was hoping for a more elegant solution which also handles input... > > Java comes with i18n

RE: i18n and the database...

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Michael Klaene [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 8:51 AM > To: [EMAIL PROTECTED] > Subject: i18n and the database... > > > > Hi. > > I'm investigating ways to support multiple languages in my > app, without using the typical >

RE: i18n input

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Simon Matic Langford [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 8:51 AM > To: 'Struts Users Mailing List' > Subject: RE: i18n input > > > yeah, I know I can do this, but this is a large system with around 200 > jsps 80 views > and a number o

RE: i18n and the database...

2004-12-03 Thread Simon Matic Langford
> > > Hi. > > I'm investigating ways to support multiple languages in my > app, without using the typical > ResourceBundle/MessageResources approach. I was thinking that > I would like to use a database instead. It seems to me that a > large application trying to support multiple languages

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
Hi Matk, I have the following statement Which I "think" am lead to believe it imports all the attributes into the page scope. In an effort to figure out what was happening I downloaded the jstl 1.0.6 and built a debug project in eclipse so I could step into the ForEach tag and I am not sure

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
Hi Matk, I have the following statement Which I "think" am lead to believe it imports all the attributes into the page scope. In an effort to figure out what was happening I downloaded the jstl 1.0.6 and built a debug project in eclipse so I could step into the ForEach tag and I am not sure

Re: i18n and the database...

2004-12-03 Thread Hubert Rabago
On Fri, 3 Dec 2004 07:50:31 -0800 (PST), Michael Klaene <[EMAIL PROTECTED]> wrote: > 2.)Is anyone using a database-driven approach to this, storing application > labels, etc. in tables and retrieving them. Possibly, by reimplementing > versions of ResourceBundle/MessageResources to go against t

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
One other thing to add :> there is a "key" in the pageContext attributes called topnav and that DOES contain an actual collection of SimpleMenuItems. The plot thickens - how does the ForEach get the collection? -Jerry -Original Message- From: Jerry Rodgers [mailto:[EMAIL PROTECTED] Sent

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
One other thing to add :> there is a "key" in the pageContext attributes called topnav and that DOES contain an actual collection of SimpleMenuItems. The plot thickens - how does the ForEach get the collection? -Jerry -Original Message- From: Jerry Rodgers [mailto:[EMAIL PROTECTED] Sent

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Jerry Rodgers [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 9:20 AM > To: 'Struts Users Mailing List'; 'Mark Lowe' > Subject: RE: JSTL, Tiles PutList and Tomcat 5.028 > > > One other thing to add :> there is a "key" in the pageContext > attrib

Exception when app goes to form which extends ValidatorForm

2004-12-03 Thread Donie Kelly
Hi all I'm getting this error when accessign a form which extends ValidatorForm and I'm having trouble figuring out what;s wrong. Anybody know why this might happen. I'm following the tutorial at http://www.oracle.com/technology/oramag/oracle/04-jan/o14dev_struts.html

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
Thanks James, It looks like if I put a break point in the setItems() method of the forEach I am passed a string - that string appears to be the .toString() of the SimpleMenuItem(s) collection. I check the .toString() of SimpleMenuItem and it has the format of the long string below from my previ

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
Thanks James, It looks like if I put a break point in the setItems() method of the forEach I am passed a string - that string appears to be the .toString() of the SimpleMenuItem(s) collection. I check the .toString() of SimpleMenuItem and it has the format of the long string below from my previ

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Jerry Rodgers [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 9:55 AM > To: 'Struts Users Mailing List' > Subject: RE: JSTL, Tiles PutList and Tomcat 5.028 > > > Thanks James, > > It looks like if I put a break point in the setItems() method >

Re: Exception when app goes to form which extends ValidatorForm

2004-12-03 Thread Hubert Rabago
Do you have your resource file specified in your struts-config? On Fri, 3 Dec 2004 16:42:09 -, Donie Kelly <[EMAIL PROTECTED]> wrote: > Hi all > > I'm getting this error when accessign a form which extends ValidatorForm and > I'm having trouble figuring out what;s wrong. Anybody know why thi

Re: i18n and the database...

2004-12-03 Thread Guillaume Cottenceau
Michael Klaene writes: > 3.)I know that some databases, Oracle, and I hear the newest version > of MySQL support UTF-8. I've no experience in this area. Does anyone > have experience with storing text in UTF-8 in the database? This > *seems* like it could be an ideal approach, eliminating alot of

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
If I understand your question - "do I have a collection of collections" no I don't - I have a collection of SimpleMenuItem(s) the SimpleMenuItem is not a collection it is just an object with four properties. It is a org.apache.struts.tiles.beans.SimpleMenuItem Back to the original jsp code - it a

RE: JSTL, Tiles PutList and Tomcat 5.028

2004-12-03 Thread Jerry Rodgers
If I understand your question - "do I have a collection of collections" no I don't - I have a collection of SimpleMenuItem(s) the SimpleMenuItem is not a collection it is just an object with four properties. It is a org.apache.struts.tiles.beans.SimpleMenuItem Back to the original jsp code - it a

struts tags and scriplet

2004-12-03 Thread Vinicius Caldeira Carvalho
Hi there! I often find myself writing scriptlet due to struts tags or my misunderstanding about it. Let's suppose I have an action that retreives information in a user bean. My jsp has an account form-bean and one of the properties is the userID (a hidden value) I always end up doing this: is th

Re: struts tags and scriplet

2004-12-03 Thread Bill Siggelkow
If you specify the form in the you don't need to use the scriptlet -- Struts will retrieve and display the value for you. -Bill Siggelkow Vinicius Caldeira Carvalho wrote: Hi there! I often find myself writing scriptlet due to struts tags or my misunderstanding about it. Let's suppose I have an

Re: struts tags and scriplet

2004-12-03 Thread Vinicius Caldeira Carvalho
Bill Siggelkow wrote: If you specify the form in the you don't need to use the scriptlet -- Struts will retrieve and display the value for you. -Bill Siggelkow Vinicius Caldeira Carvalho wrote: Hi there! I often find myself writing scriptlet due to struts tags or my misunderstanding about it. L

Re: struts tags and scriplet

2004-12-03 Thread Wendy Smoak
From: "Vinicius Caldeira Carvalho" <[EMAIL PROTECTED]> > Not possible. Not likely. ;) > The form hold values that do not come from a database, I'm > not talking about an update where we assemble the form from a dto class. > This is an insert form, so no values filled, only this specific hidden >

RE: Using a key as var-value in validator

2004-12-03 Thread Ram Venkataswamy
Well, I think for now using Global Constant is the only option. Unless somebody else have a answer for this. -Original Message- From: Kinjal Sonpal [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 10:20 PM To: Struts Users Mailing List Subject: RE: Using a key as var-value

circular dependencies tile def

2004-12-03 Thread Jim Riley
Any ideas on why I keep getting a circular dependencies tile def message? Seems a lot of people have been working on this problem and no one has any answers. James Riley Office of State CIO [EMAIL PROTECTED] W- 803.737.9770 C- 803.309.2134

Re: struts tags and scriplet

2004-12-03 Thread Vinicius Caldeira Carvalho
Wendy Smoak wrote: From: "Vinicius Caldeira Carvalho" <[EMAIL PROTECTED]> Not possible. Not likely. ;) The form hold values that do not come from a database, I'm not talking about an update where we assemble the form from a dto class. This is an insert form, so no values filled, only thi

RE: struts tags and scriplet

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Wendy Smoak [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 10:53 AM > To: Struts Users Mailing List > Subject: Re: struts tags and scriplet > > > From: "Vinicius Caldeira Carvalho" <[EMAIL PROTECTED]> > > Not possible. > > Not likely. ;) Amen.

Re: i18n and the database... -thanks - 1 more question

2004-12-03 Thread Michael Klaene
Thanks for all of the feedback. I'll think on it some more with these suggestions in mind. I have one additional question, *sort of* on the topic of Message Resources. Suppose there is a database table that holds metadata used to configure some screens, but not all. This table holds the f

Re: i18n and the database...

2004-12-03 Thread brettconnor
I'd endorse this. UTF-8 or UTF-16 (depending on what languages you're expecting most of your data to be in) will handle anything. If you have Oracle it will also handle anything, it had NLS support before unicode, but your database must be set up with a suitable character set. It is completely a no

Re: struts tags and scriplet

2004-12-03 Thread Wendy Smoak
From: "Jim Barrows" <[EMAIL PROTECTED]> > > You have 3 more choices: > 1) The struts bean taglib > 2) JSP bean tags > 3) JSTL bean tags. > But... this prevents the framework from re-displaying the user's input if the form fails validation. (The user could have modified the value that was origin

Re: struts tags and scriplet

2004-12-03 Thread Vinicius Caldeira Carvalho
Wendy Smoak wrote: From: "Jim Barrows" <[EMAIL PROTECTED]> You have 3 more choices: 1) The struts bean taglib 2) JSP bean tags 3) JSTL bean tags. But... this prevents the framework from re-displaying the user's input if the form fails validation. (The user could have modified the value t

Re: struts tags and scriplet

2004-12-03 Thread Wendy Smoak
From: "Vinicius Caldeira Carvalho" <[EMAIL PROTECTED]> > > Proponente proponente = delegate.findProponente(id); > CadastrarReservaProspeccaoForm reservaForm = > (CadastrarReservaProspeccaoForm)form; > reservaForm.setIdProponente(proponente.getId()); > > As you can see I'm using the form object th

Re: struts tags and scriplet

2004-12-03 Thread Vinicius Caldeira Carvalho
Wendy Smoak wrote: From: "Vinicius Caldeira Carvalho" <[EMAIL PROTECTED]> Proponente proponente = delegate.findProponente(id); CadastrarReservaProspeccaoForm reservaForm = (CadastrarReservaProspeccaoForm)form; reservaForm.setIdProponente(proponente.getId()); As you can see I'm using the form o

- Newbie

2004-12-03 Thread Jacques
Hi, Here's what I want to achieve : I have a form (call it INPUT). Let's say the form's action is "ActionA.do". ActionA.do is mapped to com.mycompany.myclass, which can either forward to "success" or "failure". In struts-config.xml, "success" is mapped to "ActionB.do", and I want "failure" to

Re: struts tags and scriplet

2004-12-03 Thread Wendy Smoak
From: "Vinicius Caldeira Carvalho" <[EMAIL PROTECTED]> > I have two actions cuz: > The first one is triggered after the user clicks in a link from a page > that displays a list of prospects. > so it find the prospect attributes and then sets it for the form in the > next page. got it? Yes, but you

Re: - Newbie

2004-12-03 Thread Bill Siggelkow
The reason is that in "classical" HTML; forms are expected to accept input. Struts stores the input data in an ActionForm; the traditional approach for what you are doing would be to use a link and not a button. -Bill Siggelkow Jacques wrote: Hi, Here's what I want to achieve : I have a form (ca

Re: - Newbie

2004-12-03 Thread Wendy Smoak
From: "Jacques" <[EMAIL PROTECTED]> > When I try the application, and the failure condition is triggered, I get > the following error message : > > 2004-12-03 13:27:20 StandardWrapperValve[action]: Servlet.service() for > servlet action threw exception > org.apache.jasper.JasperException: Cannot re

Re: struts tags and scriplet

2004-12-03 Thread Vinicius Caldeira Carvalho
Wendy Smoak wrote: From: "Vinicius Caldeira Carvalho" <[EMAIL PROTECTED]> I have two actions cuz: The first one is triggered after the user clicks in a link from a page that displays a list of prospects. so it find the prospect attributes and then sets it for the form in the next page. got it?

RE: [BULK] - Re: - Newbie

2004-12-03 Thread Harrison Tsang
-Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 11:31 AM To: Struts Users Mailing List Subject: [BULK] - Re: - Newbie From: "Jacques" <[EMAIL PROTECTED]> > When I try the application, and the failure condition is triggered, I get > the fol

Re: struts tags and scriplet

2004-12-03 Thread Bill Siggelkow
Are you specifying the name of the form bean as an attribute of the tag on the target JSP? If so, then remove it ... it causes Struts to create a new action form ... (the name attribute on the html:form tag has been removed in Struts 1.2.x). As far as your frustration; my advice is to (1) take

Off topic : IBM Portlet

2004-12-03 Thread Mathew, Manoj
Sorry for the off topic. Any of you guys know what are the things I need to install in my machine to set up a portal and start working on portal. I have WSAD in my system. thanks Manoj Mathew -Original Message- From: Harrison Tsang [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2

Re: MVC initialization

2004-12-03 Thread Ken Pelletier
A bit late to the party, but... Firstly, I'd second what Joe said about PlugIns vs ServletContextListener: in more than one instance I've found that using ServletContextListener that does service/model initialization paid off when I later wanted to use the same service layer in a non-Struts web

Re: Using a key as var-value in validator

2004-12-03 Thread Niall Pemberton
Would be a good idea IMO to add key/bundle to the element in Commons Validator. I've create a bugzilla ticket for this so it doesn't get forgotten. http://issues.apache.org/bugzilla/show_bug.cgi?id=32522 If its something your interested in, patches are always welcome :-) Niall - Original

Re: Off topic : IBM Portlet

2004-12-03 Thread bmf5
I did a little work w/ this about 6 mos ago then the project was cancelled. Depending on your WSAD version you'll probably need a plug-in for portlet development. We also installed the portal server for testing. Here's a link to the portal zone. Somewhere in there are charts that give all th

Re: Where to store and how to retrieve Images for web app

2004-12-03 Thread Ken Pelletier
My experience with this has been a blend of some of what's been said so far, with a bit of sugar on top. I agree with those who say that the filesystem and a stock webserver (apache) are the way to server images - and all static content, imho. (ymmv) Particularly since your image data is dyna

RE: Using a key as var-value in validator

2004-12-03 Thread David G. Friedman
> If its something your interested in, patches are > always welcome :-) Patches? Patches? You think I have time for patches? Just because I pick up some of the tougher questions and try to find a solution for them to satisfy my own curiosity doesn't mean I want to TRULY know how the Struts or C

Re: Using a key as var-value in validator

2004-12-03 Thread Niall Pemberton
Actually I hate patches - but thats the party line! Changing the code's usually easy and straight forward - its the testing that ends up taking most of the time and is a pain, with a patch you just get to do the testing part :-( Now answering questions thats good - I don't have to test them :-) N

RE: i18n input

2004-12-03 Thread Huw Richards
The one problem I had with i18n input was with European locales where "," is used as the decimal separator. The number would be formatted with "," as the decimal separator but as the input boxes are just text, the numeric keypad which produces "," in excel when "." is pressed just produces "." in t

RE: i18n input

2004-12-03 Thread Jim Barrows
> -Original Message- > From: Huw Richards [mailto:[EMAIL PROTECTED] > Sent: Friday, December 03, 2004 4:05 PM > To: Struts Users Mailing List > Subject: RE: i18n input > > > The one problem I had with i18n input was with European > locales where "," is > used as the decimal separator.

Access to a database with a configuration file

2004-12-03 Thread Philippe PONSONNET
Hello, I would like to use a database with struts without using the default datasource. I also would like to configure all acces of this database with a xml file named database.xml. The goal of this is to have a really independant model. So I have developped a special class named Database

Access to a database with a configuration file

2004-12-03 Thread Philippe PONSONNET
Hello, I would like to use a database with struts without using the default datasource. I also would like to configure all acces of this database with a xml file named database.xml. The goal of this is to have a really independant model. So I have developped a special class named Database

Re: Access to a database with a configuration file

2004-12-03 Thread Niall Pemberton
You could use the ServletContext's getInputStream("fileName") method Niall - Original Message - From: "Philippe PONSONNET" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, December 04, 2004 12:35 AM Subject: Access to a database with a configuration file > Hello, > > > > I w

Re: [OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-12-03 Thread Eddie Bush
FWIW ... seems like having my Tomcat installation burried under "Program Files" etc was the culprit. I reinstalled to C:\Tomcat\5.0 and then deleted my Tomcat config and created a new one and everything seems to be working alright now. It's really cool. I can totally debug anything right in E

RE: [OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-12-03 Thread David G. Friedman
Eddie, Since you put it that way, the culprit was probably spaces in the path such as in the directory "C:\Program Files". I had that happen to me in Windows XP with Tomcat 5.X.XX until I used the short "dir /x" names. For Program files it was "c:\progra~1" Regards, David -Original Message

Re: [OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-12-03 Thread Eddie Bush
Yes. That's my thought as well. Eclipse likes to control things though. I first tried putting quotes around the path and when that didn't work I reinstalled to a new, shorter, spaceless location. I didn't try using short names, but I have to wonder if Eclipse would like that. It seemed pret

Re: circular dependencies tile def

2004-12-03 Thread James Mitchell
This can happen for any one of many reasons. Unless you provide more details on what you are doing, we can only guess. (a) XyzAction -> tile-def -> jsps (one of the jsp does a redirect or forward to XyzAction (b) XyzAction -> tile-def -> action-forward -> XyzAction (c) XyzAction -> tile-def ->

RE: [OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-12-03 Thread David G. Friedman
Eddit, The problem I had was with both the JAVA_HOME and CATALINA_HOME environmental variables. Once both of those environmental variables were changed, Eclipse and Ant worked as expected. Regards, David -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED] Sent: Friday, Decembe