Cannot find bean under name org.apache.struts.taglib.html.BEAN

2002-12-11 Thread aduprat . struts
Hello all. I'm back with my modules problems. Someone taold me that hmtl:form is bugged in struts 1.1 and that it is for this reason i can find any action when in a module witch is not the default one. So i transformed my html:form... /html:form in FORM.../FORM Then i have another problem :

Re: RE: Cannot find bean under name org.apache.struts.taglib.html.BEAN

2002-12-11 Thread aduprat . struts
I'm sure each property of the form has a getter in the for bean cause it was working in struts 1.0 without any module... can it be becuse i put FORM in place of html:form ? Message d'origine Sujet: RE: Cannot find bean under name org.apache.struts.taglib.html.BEAN Date: Wed, 11 Dec

Re: struts 1.1. modules examples.

2002-12-04 Thread aduprat . struts
What do you mean with : where you need to modify the config initialization parameter to be a comma-delimited list of all the config files for all the modules I declared my module as this : init-param param-nameconfig/param-name param-value/WEB-INF/struts-config.xml/param-value

Re: Re: Re: struts 1.1. modules examples.

2002-12-03 Thread aduprat . struts
Tahnks for help. I've seen the struts 1.1 migrating article But there is no example dealing with struts config.xml file. I'm currently downloading an eval version of camino in order to see how it worswith modules... Message d'origine De: Dan Tran [EMAIL PROTECTED] A: Struts Users

struts 1.1. modules examples.

2002-12-02 Thread aduprat . struts
Hello all, I try to use struts 1.1 modules. I will be glad if somebody tells me how to find examples of : - how to declare an action un a struts-config.xml module file ie what is the pattern of the path? (path=/myModuleName/myActionName ?) - how to invoque a module action (html:form

Re: Re: struts 1.1. modules examples.

2002-12-02 Thread aduprat . struts
You can get some doc here : http://jakarta.apache.org/struts/userGuide/building_controller.html#dd_config_modules But there are no example of what i was asking for... Message d'origine Date: Mon, 02 Dec 2002 10:38:01 -0600 De: Hanasaki JiJi [EMAIL PROTECTED] A: [EMAIL PROTECTED] Sujet:

Re: Re: Modules in struts 1.1

2002-11-28 Thread aduprat . struts
Hello Eddie, Im sorry. I did not send any response since last week. I was working on another subject :-( For my problem in actions not found in strut-moduel1.xml i'll try to invoque actions like this in my jsp : /module1/myaction.do Then I'll try to switch modules as you do. If you have any

Re: Re: Modules in struts 1.1

2002-11-20 Thread aduprat . struts
My problem is when im in my module called module1, it seems action mapping is schearching for actions in my default struts-congig.xml file?... What makes you say this? Which build are you using? You probably want to be using a nightly build if you're using modules. There was a bug for a

Modules in struts 1.1

2002-11-19 Thread aduprat . struts
Hi all, I'm trying to use struts 1.1 modules. I'm migrating old Struts 1.0 web application. For the moment i have isolated a part of this application and followed the user guide to put it in a module. The other part is defaut ans still use struts-config.xml. So i have : - struts-config.xml -

struts 1.1 : setInput ?

2002-11-15 Thread aduprat . struts
Hi all. We were using struts 1.0 and doing something like this : //If error occurs : go on tabbed pane where it is raised. if (errors.size() != 0) { mapping.setInput(INPUT_INFORMATIONS); return errors; } It was working well in struts 1.0. My problem is that uin struts 1.1 when i'm

Re: Re: Struts1.1 : subclass ActionServlet

2002-11-06 Thread aduprat . struts
Thanks for reponse and help Eddie. I've found documentation for the plugins architecture. I'm testing today. I'll let you know but i think it matches my need. Alexandre Duprat. Message d'origine Date: Tue, 05 Nov 2002 09:44:13 -0600 De: Eddie Bush [EMAIL PROTECTED] Sujet: Re: Struts1.1

Re: Re: Struts1.1 : subclass ActionServlet

2002-11-05 Thread aduprat . struts
Hi. Thanks for your response Eddie. First : I redefined init cause I did it in struts 1.0 to initialise my struts menu repository. I'm not aware of the plugin architecture. Do you think i should go ahead for 1.1 documentation? :-) Where can i find details about this plugin architecture? It can

Struts1.1 : subclass ActionServlet

2002-11-04 Thread aduprat . struts
Hi all, I'm trying to migrate my struts 1.0 application to struts 1.1. I'm also using struts menu extention. For this extention initialisation, I have to subclass ActionServlet in order to redefine init() method. So, i've done it and declare my new servlet in web.xml in place of ActionServlet.