Re: standard-1.1.1 expression language not working

2004-09-20 Thread Pedro Salgado
On 20/9/04 10:11 pm, "Karr, David" <[EMAIL PROTECTED]> wrote: > Other replies indicated your problem with the web.xml and JSP page. > Another point is that you don't use Struts-EL with JSP 2.0. well I finally made a simple jsp page with EL to work and everything well configured... but for what

Re: VoiceXML RDC with return element

2004-09-20 Thread Rahul P Akolkar
I don't understand what you mean by "generate RDC with element". A RDC can be used in any VoiceXML form, and whether that form is referenced as a subdialog elsewhere does not change the RDC behavior (and hence, you shouldn't have to "create a RDC that can be used in "). The underlying princip

RE: standard-1.1.1 expression language not working

2004-09-20 Thread Karr, David
Other replies indicated your problem with the web.xml and JSP page. Another point is that you don't use Struts-EL with JSP 2.0. > -Original Message- > From: Pedro Salgado [mailto:[EMAIL PROTECTED] > Sent: Monday, September 20, 2004 10:07 AM > To: [EMAIL PROTECTED] > Subject: standard-1.1.

Re: standard-1.1.1 expression language not working

2004-09-20 Thread Pedro Salgado
I have found this version on a thread answer : http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"; version="2.4"> My IDE likes it better tha

RE: standard-1.1.1 expression language not working

2004-09-20 Thread Johnson, Chris
The xsi:schemaLocation attribute accepts namespace/schema pairs (space delimited), hence the space. But in trying it with a '/' instead, it seems to work fine. -Original Message- From: Mark Page [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 1:00 PM To: Tag Libraries Users Li

RE: standard-1.1.1 expression language not working

2004-09-20 Thread Mark Page
Chris, what happens if you have a "/" will it still work? On Mon, 2004-09-20 at 18:55, Johnson, Chris wrote: > It should be a whitespace, try it. (in an app, not from a browser) > > -Original Message- > From: Pedro Salgado [mailto:[EMAIL PROTECTED] > Sent: Monday, September 20, 2004 12:5

Re: standard-1.1.1 expression language not working

2004-09-20 Thread Mark Page
Oh yeah, I see what you mean now! It is a typo (which seems to be in all my web.xml files :) Thanks for the spot. On Mon, 2004-09-20 at 18:53, Pedro Salgado wrote: >What I meant was before "web-app_2_4.xsd" on xsi: schemaLocation there is > a "white space character". shouldn't it be a "/"? >

RE: standard-1.1.1 expression language not working

2004-09-20 Thread Johnson, Chris
It should be a whitespace, try it. (in an app, not from a browser) -Original Message- From: Pedro Salgado [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 12:53 PM To: Tag Libraries Users List Subject: Re: standard-1.1.1 expression language not working What I meant was bef

Re: standard-1.1.1 expression language not working

2004-09-20 Thread Pedro Salgado
What I meant was before "web-app_2_4.xsd" on xsi: schemaLocation there is a "white space character". shouldn't it be a "/"? If you use a browser and put http://java.sun.com/xml/ns/j2ee%20web-app_2_4.xsd -> http 404 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd -> downloads the xsd fil

VoiceXML RDC with return element

2004-09-20 Thread Soonthorn A
Hi, Does anyone has an example that generate RDC with element? I just learn about jsp taglib today and looked at RDC's tag lib files and config files. I couldn't find anything relate to . Is VoiceXML's element in your current model? Basically, what I tried to do is to create a RDC that c

Re: standard-1.1.1 expression language not working

2004-09-20 Thread Mark Page
i.e. after all my , etc. tags. On Mon, 2004-09-20 at 18:31, Mark Page wrote: > I stick at the end. > > On Mon, 2004-09-20 at 18:26, Pedro Salgado wrote: > > Maybe this is a silly question but isnt http://java.sun.com/xml/ns/j2ee > > web-app_2_4.xsd lacking a final / before web-app_2_4.xsd? >

Re: standard-1.1.1 expression language not working

2004-09-20 Thread Mark Page
I stick at the end. On Mon, 2004-09-20 at 18:26, Pedro Salgado wrote: > Maybe this is a silly question but isnt http://java.sun.com/xml/ns/j2ee > web-app_2_4.xsd lacking a final / before web-app_2_4.xsd? > > Pedro Salgado > > On 20/9/04 6:15 pm, "Karl Coleman" <[EMAIL PROTECTED]> > wrote: >

Re: standard-1.1.1 expression language not working

2004-09-20 Thread Pedro Salgado
Maybe this is a silly question but isnt http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd lacking a final / before web-app_2_4.xsd? Pedro Salgado On 20/9/04 6:15 pm, "Karl Coleman" <[EMAIL PROTECTED]> wrote: > Is this not well-documented? This seems to get asked quite a bit. > > Karl > > >

RE: standard-1.1.1 expression language not working

2004-09-20 Thread Derek
It's in the specifications, but people tend to not read them. I have to admit that before joining a couple of the Jakarta listservs, I didn't bother reading specs at all. It's been a while since I read them, but the JSTL and JSP 2.0 specs are well worth reading. Unlike some specifications, they

RE: standard-1.1.1 expression language not working

2004-09-20 Thread Karl Coleman
Is this not well-documented? This seems to get asked quite a bit. Karl web.xml should begin... http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd" version="2.4">

Re: standard-1.1.1 expression language not working

2004-09-20 Thread Mark Page
web.xml should begin... http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd" version="2.4"> On Mon, 2004-09-20 at 18:07, Pedro Salgado wrote: > Hi to everyone! > >

standard-1.1.1 expression language not working

2004-09-20 Thread Pedro Salgado
Hi to everyone! I have already used taglibs before but I am having some trouble making jstl core 1.1.1 taglib to evaluate expression languages on Tomcat 5.0.27. I have all of the required libraries on WEB-INF/lib/ (jstl, standard, jdbc_2_0_stdext, xalan and xerces). Tomcat does not give any