Erik,

Maybe I'm missing something, but do you have a bean in-scope named
org, which has a property named foo, which has a property named
ATTRIBUTE?

Maybe:

<c:if test="${ requestScope['org.foo.ATTRIBUTE'] != null }"> or
<c:if test="${ requestScope['org.foo.ATTRIBUTE'] }">

Tried that?  I could totally be missing your point ... but, if the
"name" of the bean is "org.foo.ATTRIBUTE", you're probably going to
have to reference it in a fashion similar to what I've shown here. 
Unless there's something I don't know about JSTL that enables you to
reference it the way you've said (which, I'll grant you, is beyond
conceivable!).

It's that complex name that's throwing you off, I'll bet ...

On Sat, 29 Jan 2005 21:46:56 -0500, Erik Weber <[EMAIL PROTECTED]> wrote:
> What is the JSTL equivalent of this logic tag?
> 
> <logic:present name="org.foo.ATTRIBUTE" scope="request">
> 
> I tried this:
> 
> <c:when test="${org.foo.ATTRIBUTE != null}">
> 
> but it didn't work. Neither did "${!empty org.foo.ATTRIBUTE}".
> 
> Erik

-- 
Eddie Bush

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

Reply via email to