Re: [s1.35] Need help with Struts and Modules

2007-10-11 Thread Paul Benedict
ternalBusinessPartners (needs to be sured) > 2. ExternalAnonymous (no security required) > 3. Common > > I'd really appreciate any additional help anyone can provide. > > Thanks again, > > Eric > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EM

RE: [s1.35] Need help with Struts and Modules

2007-10-05 Thread Givler, Eric
riginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Paul Benedict Sent: Sunday, September 30, 2007 8:39 PM To: Struts Users Mailing List Subject: Re: [s1.35] Need help with Struts and Modules Get rid of modules. They aren't worth the hassle. You can easily split

Re: [s1.35] Need help with Struts and Modules

2007-09-30 Thread Paul Benedict
ROTECTED] > Sent: Saturday, September 22, 2007 1:25 AM > To: user@struts.apache.org > Subject: [s1.35] Need help with Struts and Modules > > > Hello, > > Let me just say that I'm struggling at times writing my first production > Struts application. The issue

RE: [s1.35] Need help with Struts and Modules

2007-09-28 Thread Givler, Eric
Can anyone assist with this? -Original Message- From: Givler, Eric [mailto:[EMAIL PROTECTED] Sent: Saturday, September 22, 2007 1:25 AM To: user@struts.apache.org Subject: [s1.35] Need help with Struts and Modules Hello, Let me just say that I'm struggling at times writing my

[s1.35] Need help with Struts and Modules

2007-09-21 Thread Givler, Eric
Hello, Let me just say that I'm struggling at times writing my first production Struts application. The issue that I'm trying to wrestle with now is that part of the application requires security, and part of it should allow general access to the public. This sounds like a case for modules (

Re: problem with forwardPattern and modules

2006-01-30 Thread Hubert Rabago
ich mir nicht so ganz sicher." > Albert Einstein > > > > > > -Original Message- > > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > > Sent: Monday, January 30, 2006 4:25 PM > > To: Struts Users Mailing List > > Subject: Re: problem with for

RE: problem with forwardPattern and modules

2006-01-30 Thread Günther Wieser
s Mailing List > Subject: Re: problem with forwardPattern and modules > > Günther, > > Can you file a Bugzilla issue for this? > > thanks, > Hubert > > On 1/30/06, Günther Wieser <[EMAIL PROTECTED]> wrote: > > hi, > > > > just for future ref

Re: problem with forwardPattern and modules

2006-01-30 Thread Hubert Rabago
nfig.xml sends the servlet > container the URI that is prefixed with the module path, and the container > loads the page/URI from filesystem). > > kr, > guenther > > > > > -Original Message- > > From: Günther Wieser [mailto:[EMAIL PROTECTED] > > Sent:

RE: problem with forwardPattern and modules

2006-01-30 Thread Günther Wieser
[EMAIL PROTECTED] > Sent: Friday, January 27, 2006 2:23 PM > To: 'Struts Users Mailing List' > Subject: problem with forwardPattern and modules > > hi, > > i'm trying to configure the controller using forwardPattern="/$P" pagePattern="/$P"

problem with forwardPattern and modules

2006-01-27 Thread Günther Wieser
hi, i'm trying to configure the controller using so that it looks for jsp pages in the webroot folder, no matter if we are inside a module or not. but whatever i enter in the forwardPattern or pagePattern properties, no changes in the behaviour. went through the source code of 1.2.8, and in Re

Re: forwardPattern and Modules

2005-11-13 Thread Laurie Harper
alec lee wrote: I am using Struts 1.2.4. I have 2 modules and was trying to switch from default to moduleA. In my moduleA, I've used , since my JSP's are inside WEB-INF. In my default module, I have these lines: ... path="/switch.do?prefix=/moduleA&page=/synForm.do" contextRel

forwardPattern and Modules

2005-11-13 Thread alec lee
I am using Struts 1.2.4. I have 2 modules and was trying to switch from default to moduleA. In my moduleA, I've used , since my JSP's are inside WEB-INF. In my default module, I have these lines: ... path="/switch.do?prefix=/moduleA&page=/synForm.do" contextRelative="false"

Using Tiles and Modules

2005-02-04 Thread Christian Hesse
Hi Everybody! I have the following constellation: I am using the Tiles with one tiles-defs.xml-File in a project containing different modules. It is up and running without any problems. At the moment I am inserting into any struts-myMod-config.xml-File the full plug-in-Tag for the module and t

SV: html:form and modules

2004-11-08 Thread hermod . opstvedt
Hi You need to use the Switch action - Look in the docs Hermod -Opprinnelig melding- Fra: Diego [mailto:[EMAIL PROTECTED] Sendt: 8. november 2004 09:25 Til: Struts Users Mailing List Emne: html:form and modules Hi! I have a modularized app here, and I'm having problems with html

html:form and modules

2004-11-08 Thread Diego
Hi! I have a modularized app here, and I'm having problems with html:form tags. Is there a way to specify that the target action is on a different module? Currently I'm forced to duplicate several action mappings in the struts-config.xml files of my modules because I don't know a way to do this. T

Re: and modules

2004-09-16 Thread Yves Sy
What I usually do is place the login functionality (and all common/general functionalities for that matter) in the default struts-config at the root context. Now if I have a more specific module or section in my app, i create a sub-context so that all action mappings for that particular submodule

Re: and modules

2004-09-16 Thread Ricardo Gladwell
Hi, Perhaps I'm misunderstandig the use of modules: I have a default module that handles basic webapp functionality (homepage forwarding, layout, etc) and other modules handle additional functionality such as user management (log in/out, registration, details modifications, etc) henc the need t

Re: and modules

2004-09-16 Thread Yves Sy
I would guess its because its not really standard practice to submit a form to a handler from another module. It's kind of a weird flow if you ask me. Usually you'd submit to a handler in your own module and THEN forward to wherever else using SwitchAction. Anyway if the SwitchAction does not work

Re: and modules

2004-09-16 Thread Ricardo Gladwell
Hi, Thanks for that, I will try to use the switch action to forward onto the correct module actions. Just out of interest, why doesn't the html:form tag have a module attribute? Yves Sy wrote: Try using SwitchAction -Regards- Yves On Wed, 15 Sep 2004 23:46:16 +0100, Ricardo Gladwell <[EMAIL PROT

Re: and modules

2004-09-15 Thread Hubert Rabago
I don't think submitting a form to a separate module is allowed by the Struts tags. Actions are specific to each module. IIRC, You can define the same path in different modules and they will be treated as different mappings. You can even define forms with the same form name in different modules

Re: and modules

2004-09-15 Thread Yves Sy
Try using SwitchAction -Regards- Yves On Wed, 15 Sep 2004 23:46:16 +0100, Ricardo Gladwell <[EMAIL PROTECTED]> wrote: > Hi, > > I'm experimenting with struts modules, but I've encountered a problem > whereby I have a struts referencing an action in my > non-default module. Instead of referenci

and modules

2004-09-15 Thread Ricardo Gladwell
Hi, I'm experimenting with struts modules, but I've encountered a problem whereby I have a struts referencing an action in my non-default module. Instead of referencing the correct action, I get a "Cannot retrieve mapping for action" JspException. How do I reference an action in another module f

Re: html:img tag and modules

2004-08-18 Thread David Erickson
Thanks Kishore, curious what does the pagePattern of the controller actually do? -David - Original Message - From: "Kishore Senji" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 2:03 PM Subje

Re: html:img tag and modules

2004-08-18 Thread Kishore Senji
module works only when an action is specified. But you can set the contextRelative attribute to true in the html:img (P.S: contextRelative is deprecated and removed after 1.2) OR given that for that module you set the pagePattern to $P of the controller OR using JSTL: OR Extend img tag

RE: html:img tag and modules

2004-08-18 Thread Jones, Demian
You guys are hysterical...thanks -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:25 PM To: Struts Users Mailing List Subject: Re: html:img tag and modules Man and I got all excited that someone was replying to my thread and I might

Re: html:img tag and modules

2004-08-18 Thread David Erickson
esday, August 18, 2004 12:16 PM Subject: RE: html:img tag and modules > > > > > > There is unsubscription information on the bottom of every post. You may > get better results that way. > > > > >

RE: html:img tag and modules

2004-08-18 Thread amr
PROTECTED]> PM cc Subject Please respond to RE: html:img tag and mo

RE: html:img tag and modules

2004-08-18 Thread Michael Finger
ct: RE: html:img tag and modules PLEASE TAKE ME OFF THIS MAILING -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:31 PM To: Struts Users Mailing List Subject: html:img tag and modules Hi I've got a pretty basic problem and I can

RE: html:img tag and modules

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:31 PM To: Struts Users Mailing List Subject: html:img tag and modules Hi I've got a pretty basic problem and I can't seem to understand why th

html:img tag and modules

2004-08-18 Thread David Erickson
Hi I've got a pretty basic problem and I can't seem to understand why the html:img tag doesn't support it. I've got all my images stored under the default module in the /images directory. I want to access them from different modules. I tried and it does not work, it tries to rewrite the url to