I've already got the action tag working but what I really need is to
call an action from inside an action class.

What I'm trying to do is a web application that aggregates a set
sub-applications.

My plan is that the main application will process the
HttpServletRequest which can contain requests intended for many
sub-applications. This processing will create a HttpServletRequest for
each sub-application and then forward the request to the
sub-application that should receive it. After that, I want to
"Include" the executed result of each sub-application into a JSP that
will spatially organize all these results.

Is what i'm trying to do appropriate for the Struts 2 architecture?

How should I call the actions of the sub applications?

How should I "include" the executed results onto my main JSP?

Thanks in advance
Asaf



On 6/20/07, Martin Gainty <[EMAIL PROTECTED]> wrote:
can you associate a name with the compiled Java class? e.g.
<action name="actionTagAction1" class="tmjee.testing.ActionTagAction"
executeResult="true" id="HtmlID">

http://struts.apache.org/2.0.6/docs/action.html

?
M--
This email message and any files transmitted with it contain confidential
information intended only for the person(s) to whom this email message is
addressed.  If you have received this email message in error, please notify
the sender immediately by telephone or email and destroy the original
message without making a copy.  Thank you.

----- Original Message -----
From: "Asaf Paris Mandoki" <[EMAIL PROTECTED]>
To: <user@struts.apache.org>
Sent: Wednesday, June 20, 2007 8:20 PM
Subject: Re: Nested Struts


> Is there a way to use the <s:action> tag to call actions of other
> webapps deployed on the same container?
>
> Is there a way to get the result of an action from inside another action
> class?
>
> On 6/20/07, Asaf Paris Mandoki <[EMAIL PROTECTED]> wrote:
>> I'm trying to make a web application that organizes a bunch of
>> widgets. I want each widget to be programmed using struts and have
>> it's own struts.xml. Each widget should be packed as a war file.
>>
>> I was told on an older thread that I could use a different name space
>> for each widget and also that I could use the action tag to call the
>> actions on each widget.
>>
>> My question is how should I deploy my Widgets? Should I do it as
>> regular web applications?
>>
>> Thanks in advance ,
>> Asaf
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to