Re: Form not populating from post to struts.

2003-03-25 Thread Simon Kelly
Ok. Thanks for all the comments, they have been most helpful. On the point of the jsessionid, it works with or without the id there. I have it in as a check for something completely different and have since removed it anyway. Thanks for the comments on it though. I have found that the problem

RE: Populating form fields (more)

2003-03-25 Thread shirishchandra.sakhare
Hi, (BI got your problem. (B (B (BFirstly u have to understand how the struts auto population mechanism works.When a jsp (Bis submitted , the form will be populated (Bby using parameter names and the properties on form bean associated with the action (Bwhich was callled. (B (BSo so

[OT] Multiple mail rejects and bounces from mergent.com

2003-03-25 Thread Simon Kelly
Hi all, Is anyone else getting an absolute boat load of messages from the [EMAIL PROTECTED] I got 5 just off my first post of the day. I don't mind if people delete the messages, but I *really* don't need to know about it every time. Could the person responsible, just filter those messages to

Question about message-resources

2003-03-25 Thread Mick . Knutson
I am looking into struts-menu, and am confused about the extent I can use message-resources. Like: (struts-config.xml) message-resources parameter=TrackerRes/ message-resources parameter=ISOCodeRes key=ISOCodeRes/ I am creating a multi-lingual app, and am finding there are heaps of entries

getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
Hi all I am getting following error when working struts on iplanet webserver 6.0 Any one can solve the problem ? [25/Mar/2003:13:46:18] warning ( 1848): vs(https-CTP-VI0455)ServletException thrown in servlet.init; context = /BP, servlet = 'action'; stack tace:

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
Can you post a copy of your struts-config.xml Cheers Simon - Original Message - From: Ramesh_KumarP [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 9:33 AM Subject: getting javax.servlet.ServletException... Hi all I am getting

RE: Does Struts automatically populate an actionForm in session scope??

2003-03-25 Thread shirishchandra.sakhare
the autopopulation mechanism of struts will look for properties of beans whihch are same as the parameters u have sent..so do u have this condition met? And in case of session scope form, the auto population will be caled only first time...thats the whole point of using session scope..i mena to

RE: Paging a collection property

2003-03-25 Thread shirishchandra.sakhare
Hi, I have built some thing similar... And if u are using u r own tag to built pagination, this should be simple... What u should be doing is use indexed properties(keep a collection of beans in form..)And in u r tag build indexed parameter names on page. html:text name=MyForm

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
Hi Thanx for your reply Following is my struts-config.xml file.. I am only using ActionServlet not using ActionForm ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.0//EN

Catalogue Paging storing selected items

2003-03-25 Thread Pat Quinn
Hi Guys, I have a paging catalogue of items which all works fine but i'm wondering how do i store selected items across multiple pages?? As i move to another page should i store the select item keys in my session before displaying the next page??? Any ideas??

Struts html:button tag and property attribute

2003-03-25 Thread Heligon Sandra
Can someone explain why the property attribute is required for the struts-html:button tag ? Sandra As of February 12th, 2003 Thomson unifies its email addresses on a worldwide basis. Please

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
Right. I just ran your file through XMLSpy with the dtd. You will be pleased to know it is well formed and valid. I cant really see anything else wrong with it. Try knocking out the space after the encoding and befor the ? like this 8859-1?. and put the DOCTYPE declaration on one line. Run it

Re: Struts html:button tag and property attribute

2003-03-25 Thread Nicolas De Loof
html:button is used when you want some HTML Form to have more than one submit button, and want to know witch one the user clicked. Property is used to define the form-bean property that will be set (to button value) whe the button is clicked. If you only need a submit button, use html:submit,

Re: Question about message-resources

2003-03-25 Thread Xavier Saint-Denis
Hi, Regarding how to manage very long Message-resources property file, you can use the following possibility : In your strust-config.xml add a : ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.1//EN

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
Hi Thanks for your reply . I have changed strut-confg.xml (deleted the white spaces) and worked still it is giving same problem... I have attached web.xml file.. See you can find out some solution for me.. Regards, P.RAMESHKUMAR, -Original Message- From: Simon Kelly [mailto:[EMAIL

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
Couldn't open the attachment, could you just paste it into the message for me, Cheers Simon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Puneet.Sharma
which attachment u r taking about ?? -Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 4:07 PM To: Struts Users Mailing List Subject: Re: getting javax.servlet.ServletException... Couldn't open the attachment, could you just paste it into the

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Nicolas De Loof
Attachement are removed on this mailing list. Paste your file in message body Nico. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Short term fixed price Struts contract on elance

2003-03-25 Thread Vic Cekvenich
I would think most people like this kind of post. $$ Struts does help with time to market, therefore profit per job. (I also guess most people do not appreciate head hunting here). .V Sasha Bilton wrote: Hi, We're posting this to the list because it seems that some of the best Struts people

how to switch of logging with log4j at initialization

2003-03-25 Thread Martin Monsorno
Hi *, when starting my struts-enabled web-app, I get output like this , | [INFO] PropertyMessageResources - -Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true | [INFO] PropertyMessageResources - -Initializing, config='org.apache.struts.action.ActionResources',

Re: Short term fixed price Struts contract on elance

2003-03-25 Thread Vic Cekvenich
self post and self promo: Most people take several days per module working average module. In my class, I teach people how to (be more productive and) write several modules per day, and other success strategies. Vic Project Recovery and Training baseBeans.com Vic Cekvenich wrote: I would

At what point in the cycle does struts fill out the ActionForm

2003-03-25 Thread Simon Kelly
Hi all, Still having problems with this. I've read the books inside out and back to front, but I still am unsure where in the process cycle struts fills in the ActionForm. I am accessing the form in two places, firstly in the associated Action class that the form submit button directs the post

Re: At what point in the cycle does struts fill out the ActionForm

2003-03-25 Thread Nicolas De Loof
HttpRequest - (Struts) ActionServlet - RequestProcessor - create form-bean in request scope - call reset() - populate - call validate() - your Action - forward to servlet [not redirect] -

RE: At what point in the cycle does struts fill out the ActionForm

2003-03-25 Thread Andrew Hill
Very strange. The request processor will populate the actionForm *before* it calls your actions execute method so that you can make use of the info when doing stuff in your action. If you hadnt specified things correctly in struts config then of course it would be no surprise that the data isnt

Re: Tiles Error

2003-03-25 Thread Cedric Dumoulin
It is hard to say what is wrong without more information ;-). Jasper report an error while it try to convert the jsp page ? Check your jsp for a tiles:put .. tag whith a path attribute, or path as attribute value ... Then, check if your tag has the correct syntax. Cedric Alonso,

Re: Tiles - Forward - Images/Color not shown

2003-03-25 Thread Cedric Dumoulin
Hi, First of all, when you have a bad page not showing what you expect, check the page source on the client side. Does the page contains the image tags and so on ? Does the page is well formed ? Is there some syntax errors ? Save the page, reload it from the server until you have a correct

Re: [tiles] tiles:insert not working for relative path

2003-03-25 Thread Volker Krebs
Hello, Cedric Dumoulin wrote: When you use Tiles, you should better use absolute paths (relative to the application). This is because you never know from where a tiles is inserted, and so you don't know to what the path is relative with. The only change that can explain the behavior

Re: At what point in the cycle does struts fill out the ActionForm

2003-03-25 Thread Simon Kelly
Hi Nicolas and Andrew, Thanks for the two mails. Here is what I do in the Action class [code] !-- I get the form from the execute() parameter list -- SignalSelectForm currentForm = (SignalSelectForm) form; !-- Some other bits I need that were set when the user logged into the site -- String

Re: Catalogue Paging storing selected items

2003-03-25 Thread Stephen Smithstone
create a javabean to contain the items like a shopping cart and place that in the session scope for the user On Tuesday 25 March 2003 9:29 am, Pat Quinn wrote: Hi Guys, I have a paging catalogue of items which all works fine but i'm wondering how do i store selected items across multiple

Struts problem with Tomcat virtual host

2003-03-25 Thread Jamesey
I've configured a virtual host in tomcat server.xml the welcome page displays fine, but it appears that the action forward is failing somehow.. i get a 'this page can not be found' error.. i've tried my struts-config.xml to see if it was a problem with leading / but no difference.. any ideas?

Re: how to switch of logging with log4j at initialization

2003-03-25 Thread Stephen Smithstone
if you have the log4j.properties on the classpath in the file just add log4j.logger.org.apache.struts = warn that will stop the struts stuff On Tuesday 25 March 2003 10:58 am, Martin Monsorno wrote: Hi *, when starting my struts-enabled web-app, I get output like this , | [INFO]

Using database tables for resource bundles

2003-03-25 Thread Rahul
Hi, (B (BWe are developing a multilingual system using struts 1.1 and j2ee 1.3. (B (BI need to know whether we can use backend database tables for providing all the (Bmessages i.e. whether the messages can be provided by a set of java class rather than (Brelying on resource files residing

Re: At what point in the cycle does struts fill out the ActionForm

2003-03-25 Thread Nicolas De Loof
I suppose RequestSignalsDelegate is looking for datas in request as StrutsCXConstants.CURRENTFORM and request.setAttribute(StrutsCXConstants.CURRENTFORM, currentForm); is used to set formbean as datas. I don't know how RequestSignalsDelegate can NOT get form from request after that. You

Re: Digester Best Practice

2003-03-25 Thread Jeff Caddel
Ahhh. Ok. So something inside InputSource retains a reference to the base uri which keeps the parser happy. Makes perfect sense. We use xml includes a lot for our internal config files so knowing about this is a big time saver. Using the second form, with an InputSource, lets Struts say

More on this...

2003-03-25 Thread Jamesey
I have configured tomcat ssl.. i have done the keygen.. all this was fine until i added a new (virtual) host in tomcat.. The first page loads fine.. but after that nothing.. not even any error logging.. can someone help me explain what causes this error... i had no previous problems with struts

FW: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
As I can not send all files in one msg I am sending it in 3 mails.. Regards, P.RAMESHKUMAR, -Original Message- From: Ramesh_KumarP Sent: Tuesday, March 25, 2003 5:39 PM To: 'Struts Users Mailing List' Subject: RE: getting javax.servlet.ServletException... My error msgs are

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
my strut-config .xml ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.0//EN http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd; !-- This is the Struts configuration file for the

RE: getting javax.servlet.ServletException...

2003-03-25 Thread Ramesh_KumarP
my web.xml is ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN http://java.sun.com/j2ee/dtds/web-app_2_2.dtd; web-app !-- Action Servlet Configuration -- servlet servlet-nameaction/servlet-name

Re: At what point in the cycle does struts fill out the ActionForm

2003-03-25 Thread Simon Kelly
You said : in the RequestSignalsDelegate and it removes the form from the request in the same way as well. If it removes datas from request, where are datas you get in your (StrutsCX)Servlet from ? Exactly the same place. The code to retrieve the form is identical: ActionForm form =

RE: Question about message-resources

2003-03-25 Thread Mick . Knutson
Appreciate the response, but I am wondering what the section in the struts-config.xml is used for: !-- == Message Resources Definitions === -- message-resources parameter=TrackerRes/ message-resources parameter=ISOCodeRes key=ISOCodeRes/ !--

Re: getting javax.servlet.ServletException...

2003-03-25 Thread Simon Kelly
This is a different root cause to the one before. The parser that is trying to load in the struts-config, is trying to connect to the site to get the dtd. I have not seen this before. I have chacked all the files you posted and they all conform to the struts spec exactly, I am at a loss to

RE: Datasource

2003-03-25 Thread Mark Galbreath
Yep - fandango on core! Had to throw the Big Red Switch. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 11:00 PM Looks like Mark's brain did a core dump... -Original Message- From: Scott Barr [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: Question about message-resources

2003-03-25 Thread Jeff Kyser
The first resource bundle loaded gets the 'default' key, so to access resources from the second and subsequent bundles, you have to supply a separate key name for them. -jeff On Tuesday, March 25, 2003, at 06:40 AM, [EMAIL PROTECTED] wrote: Appreciate the response, but I am wondering what the

RE: Question about message-resources

2003-03-25 Thread Mick . Knutson
Then is there a key=... attribute in html:* tags? _ Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194 Mobile: 079.726.14.26 _ -Original Message- From: Jeff Kyser [mailto:[EMAIL PROTECTED]

ActionForm reset method

2003-03-25 Thread Renato Romano
Is there any way to control the ActionForm reset method invocation ? I need to call it manually, only in some cases. It seems the only alternative is to define a myReset method ... Thanks Renato Romano Sistemi e Telematica S.p.A. Calata Grazie - Vial Al Molo

Re: Question about message-resources

2003-03-25 Thread Jeff Kyser
I use the following a lot: html:errors property=foo bundle=VALIDATOR_BUNDLE where i've added message-resources parameter=torch.webapp.panthers.ValidatorResources null=false key=VALIDATOR_BUNDLE /message-resources to my struts-config.xml

[OT][Servlet API] Open window in new session

2003-03-25 Thread Andrew Hill
excuse More of a servlet API question than a struts question , but I hope you will all forgive my posting it here as I figure this list has the best chance of providing a useful answer... /excuse I have a requirement where I need to open a new window whose contents are automatically updated every

RE: Question about message-resources

2003-03-25 Thread Mick . Knutson
That makes so much more sense to me than just having one resource file. Would it make sense if I created 1 per page set? I have a set of pages; 1 is a view, and the other is the editable page. I plan to have around 15-20 total pages when complete with this app, but it _must_ be multi-lingual,

RE: Question about message-resources

2003-03-25 Thread Mark Galbreath
The key declaration goes in struts-config. Struts treats message resources as java.util.ResourceBundle objects, so you need a bundle=foo in the html:errors tag. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 8:27 AM To: [EMAIL

RE: ActionForm reset method

2003-03-25 Thread Andrew Hill
Depends on what your cases are... In my app I needed to switch it off for certain specific actions so I created my own action mapping class with a noReset parameter , and overrode RequestProcessor to check for that. Needless to say I later needed something a little more dynamic - so I also added

Re: Question about message-resources

2003-03-25 Thread Jeff Kyser
Perhaps someone else can chime in on this one - I've really only done some pretty small apps. The reason I separated things out was because I wanted to maintain my app-specific error messages separate from a set of messages I might use across many apps (such as the default validator messages).

RE: ActionForm reset method

2003-03-25 Thread Renato Romano
Ok. That's all clear but one thing: what is RequestProcessor? Renato Romano Sistemi e Telematica S.p.A. Calata Grazie - Vial Al Molo Giano 16127 - GENOVA e-mail: [EMAIL PROTECTED] Tel.: 010 2712603 _ -Original

RE: Digester Error - Hey Robert!

2003-03-25 Thread Robert Taylor
Glad it helped. robert -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 9:53 PM To: 'Struts Users Mailing List' Subject: RE: Digester Error - Hey Robert! You were 100 percent on target, my man! It took me all day and 2000 lines of

RE: Question about message-resources

2003-03-25 Thread COMPAGNON GUILLAUME
I ve published a patch to enhance MessageResources in order to register several MessageResources objets under the same ServletContext attribute key. have a look ... http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18194 Guillaume Compagnon Linkvest -Message d'origine- De: [EMAIL

LookupDispatchAction + Paging with form submit

2003-03-25 Thread Pat Quinn
I have a LookupDispatchAction as follows: protected Map getKeyMethodMap() { Map map = new HashMap(); map.put(label.catalogue.find, doFind); map.put(label.catalogue.addtoCart, doAddToCart); map.put(label.paging, doPaging); return map; } I display my paging

RE: ActionForm reset method

2003-03-25 Thread Andrew Hill
RequestProcessor is the class to which the ActionServlet delegates the bulk of its work processing a request (ie: populate form, call Action execute, etc...). Struts makes it easy to replace the standard RequestProcessor with your own implementation. Normally this would extends

using Tokens with Tiles

2003-03-25 Thread Michael Mattox
I'm trying to prevent the user from submitting a form and then doing a refresh and unknowingly submitting it twice. I've read the about Struts support for tokens, and I understand how to use it when an action is called before the form is displayed. But in my case no action is called before the

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Chappell, Simon P
These have all been good suggestions, but I am constrained here by a number of factors. All our estimates have to be in hours. There is screaming and wailing and gnashing of teeth if the estimate is too big. We are not a software house, so the business gets to set schedules. We are a HIGHLY

RE: Question about message-resources

2003-03-25 Thread Mick . Knutson
1. I can't seem to donwload the patch. I kee getting promted to just download the download page instead. Could be my firewall, but is there somewhere else to get this file or could you email it to me? 2. What do I do with the file? Is is just a class that I add to my project EAR, or do I have

RE: LookupDispatchAction + Paging with form submit

2003-03-25 Thread Andrew Hill
Looks like the action parameter isnt getting through. Hmm. Heres why: snip document.forms[0].submit.value = /myLookupDispatchAction.do?action=pagingpager.offset= + offset; /snip You seem to be setting the wrong attribute. Try: document.forms[0].action =

Re: using Tokens with Tiles

2003-03-25 Thread Nicolas De Loof
You should ALWAYS use an action to display a page. I know lot it looks simplier to use JSP URL instead of defining a new action in struts-config... But in your case you see that not using the controler brings you to duplicate submit problems. Nico. I'm trying to prevent the user from

RE: Question about message-resources

2003-03-25 Thread COMPAGNON GUILLAUME
on bugzilla, the attachments have always AFAIK the name showattachement. in our case, it's a jar file , you download it, and rename it into .jar -Message d'origine- De: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] Date: mardi 25 mars 2003 15:38 À:[EMAIL PROTECTED] Objet:

RE: using Tokens with Tiles

2003-03-25 Thread Andrew Hill
Not sure if its possible (probably not). In any case Id strongly suggest you make the effort to put actions before your JSPs as a matter of course - even if they do next to nothing! Its considered better (best?) practice for a variety of reasons (especially if your also using submodules) - and

RE: using Tokens with Tiles

2003-03-25 Thread Michael Mattox
I'm using Tiles to display the pages, with the Tiles forward.do action passing in the def parameter: http://localhost:8080/webapp/forward.do?def=main I guess I could add a Struts action for every tile definition but I really like there has to be a better way! -Original Message- From:

RE: using Tokens with Tiles

2003-03-25 Thread Mick . Knutson
I would actually like to see an example of this if you have some. _ Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194 Mobile: 079.726.14.26 _ -Original Message- From: Michael Mattox

RE: using Tokens with Tiles

2003-03-25 Thread Mick . Knutson
Source code example I mean. _ Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194 Mobile: 079.726.14.26 _ -Original Message- From: Knutson, Mick Sent: Tuesday, March 25, 2003 3:50 PM To:

RE: using Tokens with Tiles

2003-03-25 Thread Michael Mattox
You could always have just a single BasicAction class that merely sets a token and forwards to the jsp - and reuse this action class in the various mappings wherever a less generic one isnt required. That's what I'm doing with the Tiles forward action. Maybe I should subclass it and do a

RE: using Tokens with Tiles

2003-03-25 Thread Mick . Knutson
But if you do it with an action, you only have to change those declarations in one place, not every place that it is used. Plus, it looks cleaner to the user with a friendly URL. _ Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Andrew Hill
Well given such constraints, your most accurate estimates are likely to come from an astrologer - or even an economist - nah! thats going a bit far. Ill stick with the astrologer. Failing that you could do what I do when subjected to the gnashing of teeth routine. These estimates arent worth [one

RE: using Tokens with Tiles

2003-03-25 Thread Andrew Hill
Good point. (Im not a tile user myself so forgot about that one). Subclassing would probably be the way to go. Just set the token in execute and then call super.excecute() and should work. (Not that Ive tried mind you!) -Original Message- From: Michael Mattox [mailto:[EMAIL PROTECTED]

Re: using Tokens with Tiles

2003-03-25 Thread Nicolas De Loof
I you want to keep this URL style, you should extend [forward.do]Action (I don't know the class name) to set a token, and define a new mapping in struts-config.xml setTokenAndForward.do that you can use the same way on page that need a token to be set :

RE: using Tokens with Tiles

2003-03-25 Thread Michael Mattox
But if you do it with an action, you only have to change those declarations in one place, not every place that it is used. if I need to change it I can change the Tile definition, I wouldn't need to change it every place it's used. Plus, it looks cleaner to the user with a friendly URL.

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Michael Mattox
All our estimates have to be in hours. Hours are too fine grained. There is screaming and wailing and gnashing of teeth if the estimate is too big. We are not a software house, so the business gets to set schedules. We are a HIGHLY seasonal business, this forces many scheduling decisions.

form beans behaviour: html list related

2003-03-25 Thread Daniel Blázquez
Hi everybody: I have a form bean with two lists and a html-javascript list-selector gizmo as seen in tiles exaples (for choosing portal tiles and menu customization, tiles-documentation/examples/myPortalSettings.jsp). In filling time, everything ok, the options are displayed. But in saving

RE: using Tokens with Tiles

2003-03-25 Thread Mick . Knutson
There was a thread last week that talked about seperating items in the struts-config.xml, could this work to reduce the sheer volume with that sized site? _ Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194

RE: Question about message-resources

2003-03-25 Thread Mick . Knutson
What is AFAIK? _ Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194 Mobile: 079.726.14.26 _ -Original Message- From: COMPAGNON GUILLAUME [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25,

RE: using Tokens with Tiles

2003-03-25 Thread Mick . Knutson
How would this differ from just creating a ServletFilter then? setTokenAndForward.do _ Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194 Mobile: 079.726.14.26 _ -Original Message- From:

RE: Struts Sub Modules not Working with 1.1-rc1

2003-03-25 Thread Viji Sarathy
I am not using Tomcat in the first place. I stepped through the Struts source code to find out how it figures out if a certain request is meant to be directed to a resource in a sub-module. That portion of the code, in the version of the source code that I have, seems to always return the prefix

RE: Question about message-resources

2003-03-25 Thread Andrew Hill
AFAIK it stands for As Far As I Know. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, 25 March 2003 23:07 To: [EMAIL PROTECTED] Subject: RE: Question about message-resources What is AFAIK? _ Thank You Mick Knutson Sr. Designer - Project

RE: using Tokens with Tiles

2003-03-25 Thread Michael Mattox
the token methods are struts methods, so they need to be called inside actions. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: mardi 25 mars 2003 16:09 To: [EMAIL PROTECTED] Subject: RE: using Tokens with Tiles How would this differ from just creating a

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Nelson, Laird
-Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] There is screaming and wailing and gnashing of teeth if the estimate is too big. Long post follows, but I find this stuff interesting. I'll shut up after this. :-) I've found time estimate discussions are usually

[OT]Question about message-resources

2003-03-25 Thread COMPAGNON GUILLAUME
What is AFAIK? As Far As I Known Ce message et toutes les pieces jointes (ci-apres le message) sont confidentiels et etablis a l'intention exclusive de ses destinataires. Toute utilisation ou diffusion non autorisee est

Io exception

2003-03-25 Thread [EMAIL PROTECTED]
I'm trying to install our app at a new client. Everything seems to normal - Tomcat is OK, my app comes up - but I can't get a connection to the database. Here the error: Io exception: The Network Adapter could not establish the connection. Any suggestions?

Re: Using database tables for resource bundles

2003-03-25 Thread Robert Leland
Rahul wrote: Hi, We are developing a multilingual system using struts 1.1 and j2ee 1.3. I need to know whether we can use backend database tables for providing all the messages i.e. whether the messages can be provided by a set of java class rather than relying on resource files residing on the

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Andrew Hill
snip Nine women can't make a baby in a month /snip True - but it could be amusing to watch them try ;-) snip Feel free to send them to my email address to keep the list clutter-free. /snip On the contrary post them! Sure its a little off topic, but I think many struts users, myself included,

RE: Io exception

2003-03-25 Thread Robert Taylor
Sounds like the Struts Network Adapter isn't working... Sorry, I couldn't resist. This sounds like a database driver issue. How are you establishing your connections? You could do some preliminary testing before posting to the list. Create a small test application that simply tries to get a

RE: Io exception

2003-03-25 Thread Jerry Jalenak
I've seen this problem when moving an application from inside our firewall to our DMZ outside the firewall. The data-source URL usually needs to be updated to reflect the correct 'path' to get to the database. Jerry Jalenak Team Lead, Web Publishing LabOne, Inc. 10101 Renner Blvd. Lenexa, KS

Multiple radio button groups

2003-03-25 Thread Kaja.Mohideen
Hi, I hope you can help this situation for me.. I am using multiple radio button groups look like, input radio name=name1 value=yesyes input radio name=name1 value=nono input radio name=name2 value=yesyes input radio name=name2 value=nono I need to know how to use this in struts and

Fw: Multiple Log Files Configuration Doubt

2003-03-25 Thread ashokd
Hi, My Requirement is: I need to capture the logs into two different log files. For the above requirement I got a sample xml file, I configured that. I have a doubt regarding the configuration of the xml file. In below xml file I have two appenders, one is dubug another is normal. My doubt is

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Chappell, Simon P
-Original Message- From: Michael Mattox [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 9:03 AM To: Struts Users Mailing List Subject: RE: [OT] Estimating a Struts-based project All our estimates have to be in hours. Hours are too fine grained. Agreed. But even when I give

RE: ActionForm reset method

2003-03-25 Thread Renato Romano
That's right! I'm using struts1.0.2, so couldn't find that class. But I also saw on jakarta.apache.org that 1.0.2 is the current release build and that 1.1 is a Milestone build... So I think, in case of need, I'll ovverride ActionServlet. Thank you very much. Renato

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Michael Mattox
Hours are too fine grained. Agreed. But even when I give them estimates in days and weeks, they ask for them to be resubmitted in hours. The XP approach uses points and velocity for scheduling. The problem with calendar time is then the managers expect the programmers to stick to the dates.

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Chappell, Simon P
-Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 9:00 AM To: Struts Users Mailing List Subject: RE: [OT] Estimating a Struts-based project Well given such constraints, your most accurate estimates are likely to come from an astrologer - or

RE: Question about message-resources

2003-03-25 Thread Mark Galbreath
Another fucking acronym illustrating kitsch. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 10:14 AM To: Struts Users Mailing List Subject: RE: Question about message-resources AFAIK it stands for As Far As I Know. -Original

Struts TestCase and Validator?

2003-03-25 Thread Mick . Knutson
Will StrutsTestCase test the Validator and Validator rules? = Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194 Mobile: 079.726.14.26 Visit our website at http://www.ubswarburg.com This message contains

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Chappell, Simon P
-Original Message- From: Michael Mattox [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 9:47 AM To: Struts Users Mailing List Subject: RE: [OT] Estimating a Struts-based project snip This sounds like a perfect scenario for eXtreme Programming. Actually, the first Struts

RE: Struts Sub Modules not Working with 1.1-rc1

2003-03-25 Thread James Mitchell
On Mon, 2003-03-24 at 22:05, Viji Sarathy wrote: I am not using Tomcat in the first place. I stepped through the Struts source code to find out how it figures out if a certain request is meant to be directed to a resource in a sub-module. That portion of the code, in the version of the source

RE: Question about message-resources

2003-03-25 Thread Andrew Hill
Uh oh! Now you've done it Mark! The thought police from aelera.com are on their way to arrest you even as we speak! You really should use the occasional * instead of a vowel so that simple minded country folk cant see what the word really is and get offended... snip eManager

RE: [OT] Estimating a Struts-based project

2003-03-25 Thread Mehra, Vishal
I would break these down to use cases and assign complexity to each one of them and then try estimating it that way. Regards, Vishal. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 11:14 AM To: Struts Mailing List (E-mail) Subject:

Declarative exceptions design question...

2003-03-25 Thread Mick . Knutson
Declarative exceptions design question... I am using EJB's, Entity with Session Facades, then a BusinessDelegate on top of that, then DispatchActions for this APP. As I understand, I can create simple Exception classes like LoginFailed.class and when that error is thrown, I can declare the

  1   2   3   >