Re: JSTL 1.1 - 1.0

2003-12-12 Thread Manolo Ramirez T.
Maybe the El evaluation is disabled by Tomcat, this happens with old 
versions of the web.xml file. Make sure that your web.xml file is 
according to the servlet 2.4 specification.

Regards,

_
Manolo Ramirez T.
Ernst Plüss wrote:
Hi all

I'm using Apache Tomcat/5.0.16.

As a JSTL newbee I tried the following with the
jakarta-taglibs-standard-1.1.0-B1:
  c:set var=customerID value=007 /
  c:out value=${customerID} default=008/
Unfortunately the output was:
${customerID}
No errors habe been reported.

Then I tried the very same JSP with
jakarta-taglibs-standard-1.0.4 and the output was as
exptected:
007
Can somebody tell me why this is working for 1.0.4 but
not for 1.1.0-B1?
Best Regards
Ernst
__

Gesendet von Yahoo! Mail - http://mail.yahoo.de
Logos und Klingeltöne fürs Handy bei http://sms.yahoo.de
-
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]


Re: Unstandard Library Source / Developing custom EL taglibs

2003-11-09 Thread Manolo Ramirez T.
Check the struts-el taglibs in the struts src's, its is a wrapper over 
the struts tags to support EL.

Regards,

_
Manolo Ramirez T.
Chaimungkalanot, Mark wrote:
Hi there,

I'm looking for examples of Taglibs that uses EL and so I thought that a
relatively simple library like the Unstandard taglibs in sandbox would be
the most appropriate.
I've downloaded the src dist. for Jakarta taglibs but the source for
unstandard doesn't seem to be there. Does anyone know where I can d/l this
from?
Or does anyone have a good reference site for developing custom taglibs with
EL?
Thanks

Mark C

**   IMPORTANT MESSAGE  **
This e-mail message is intended only for the addressee(s) and contains information 
which may be confidential. If you are not the intended recipient please advise the 
sender by return email, do not use or disclose the contents, and delete the message 
and any attachments from your system. Unless specifically indicated, this email does 
not constitute formal advice or commitment by the sender or the Commonwealth Bank of 
Australia (ABN 48 123 123 124) or its subsidiaries.
**
-
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]


c:import: relative links inside WEB-INF don't work

2003-10-07 Thread Manolo Ramirez T.
Hi,

I have this problem with Tomcat 4.1.24 and taglibs-standard 1.0.3. When 
I try lo include a jsp inside WEB-INF I must to use an absolute url, 
this are my files:

###
# /WEB-INF/jsp/prueba.jsp #
###
%@ taglib uri=http://java.sun.com/jstl/core; prefix=c %
c:import url=prueba2.jsp/ %-- doesn't work! --%

# /WEB-INF/jsp/prueba1.jsp #

%@ taglib uri=http://java.sun.com/jstl/core; prefix=c %
c:import url=/WEB-INF/jsp/prueba2.jsp/ %-- works fine --%

# /WEB-INF/jsp/prueba2.jsp #

HELLO WORLD!
#/END

jsp:include works well with relative url's, What I'm missing? Is there 
any way to use c:import to do this?. Help please.

Thanks in advance.


Manolo Ramirez T.
PD: forgive my english!

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


Re: c:import: relative links inside WEB-INF don't work

2003-10-07 Thread Manolo Ramirez T.
Hi,

I'm using jsp's outside WEB-INF to include prueba and prueba1, I forget 
to say that.

_
Manolo Ramirez T.
Serge Knystautas wrote:
You shouldn't be able to execute JSPs within your WEB-INF, so all 3 of 
your examples should be forbidden.

I think you might want to submit a bug report to whatever servlet engine 
you're using.



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