First off, you can't nest JSP tags that way...

Try this -

<s:url id="urlPlugin" namespace="%{#attr.myBean.myProperty}" action="myAction">

If you don't get the value you want or expect, try using <s:property
/> with your OGNL expressions for a while until you get what you want.
Also, read this page -

http://struts.apache.org/2.x/docs/ognl.html

It should point you in the right direction.

-Wes


On Fri, Nov 7, 2008 at 9:35 AM, doahh <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> I have a jsp page that uses a custom iterate tag from a custom tag library.
> The tag puts objects into the pageContext but does not know anything about
> Struts2 (the values were retrieved through a plugin framework - JPF). While
> developing my tag I have been using <jsp:getProperty to get at the values
> exposed by the taglib. Now I have that working I would like to convert the
> JSP page to be using struts2 tags. How can I use the value that was
> previously <jsp:getProperty in a struts2 tag? I have tried the obvious:
>
> %{pageContext.myBean.myProperty}
>
> and a few others but have not had any success so far.
>
> This is what I am trying to do:
>
> <s:url id="urlPlugin" namespace='<jsp:getProperty
> name="thisHyperlinkUserHome" property="linkText"/>' action="myAction">
> --
> View this message in context: 
> http://www.nabble.com/Use-%3Cjsp%3AgetProperty-as-value-of-struts2-tag-tp20381725p20381725.html
> Sent from the Struts - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-- 
Wesley Wannemacher
President, Head Engineer/Consultant
WanTii, Inc.
http://www.wantii.com

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

Reply via email to