Re: Using RDC's in a stand-alone Java application

2006-11-21 Thread Charles Godfrey
Thanks Rahul, In the question I posed earlier, I was referring to a stand-alone Java application that had no communication to the browser. Lets just assume that I want to create some vxml pages on the local drive. From your response it sounds like it might be easier to just write some classes

Re: Using RDC's in a stand-alone Java application

2006-11-21 Thread Rahul Akolkar
On 11/21/06, Charles Godfrey [EMAIL PROTECTED] wrote: Thanks Rahul, In the question I posed earlier, I was referring to a stand-alone Java application that had no communication to the browser. Lets just assume that I want to create some vxml pages on the local drive. snip/ OK. From your

Re: Usin JSTL from jakarta with tomcat and the new web.xml descriptors

2006-11-21 Thread Alexander Shopov
Rashmi, Kris, Martin: Thank you very much for your attention and help. I got my simple test cases working. We are currently trying to exchange Oracle' XSQL servlet with some free software solution. The JSTL just seems a bit verbose for generating XML from simple queries. I am going to try

Usin JSTL from jakarta with tomcat and the new web.xml descriptors

2006-11-21 Thread Alexander Shopov
Hi guys, I am trying to use the jakarta JSTL implementation for a project that employs tomcat and the new web.xml descriptors. After reading the documentation, FAQ, searching google ant the mail list I still do not get is, so I am asking for some help. Now onto the real config: I am using

Re: Using RDC's in a stand-alone Java application

2006-11-21 Thread Rahul Akolkar
On 11/20/06, Charles Godfrey [EMAIL PROTECTED] wrote: Quick question, I'm building a stand-alone Java application that will output some VXML pages. Is there any way for me to use RDC to help with this? Is there a Java API for RDCs? snip/ One of the primary assumptions for the RDC taglib is

Re: Usin JSTL from jakarta with tomcat and the new web.xml descriptors

2006-11-21 Thread Rashmi Rubdi
Hi al_shopov, What problem are you facing, are you getting an error message or do you need examples of how to use JSTL XML tags? Please provide details. -Rashmi - Original Message From: Alexander Shopov [EMAIL PROTECTED] To: taglibs-user@jakarta.apache.org Sent: Monday, November 20,

Re: Usin JSTL from jakarta with tomcat and the new web.xml descriptors

2006-11-21 Thread Kris Schneider
Alexander Shopov wrote: Hi guys, I am trying to use the jakarta JSTL implementation for a project that employs tomcat and the new web.xml descriptors. After reading the documentation, FAQ, searching google ant the mail list I still do not get is, so I am asking for some help. Now onto the

AW: Usin JSTL from jakarta with tomcat and the new web.xml descriptors

2006-11-21 Thread Martin Kindler
Alexander, if you are using an up-to-date container (Tomcat 5.x) there is nearly nothing you have to configure: 1. include standard.jar and jstl.jar to your WEB-INF/lib directory. 2. Address the taglibs on your jsps using the official URI, e. g. http://java.sun.com/jsp/jstl/core for the core

Re: AW: Usin JSTL from jakarta with tomcat and the new web.xml descriptors

2006-11-21 Thread Rashmi Rubdi
Here are some more details Example of How to use JSTL tags insdie a JSP: ~~~ example.jsp %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % %@ taglib prefix=x uri=http://java.sun.com/jsp/jstl/xml; % c:import url=/data.xml var=xml/ c:import

Re: AW: AW: Usin JSTL from jakarta with tomcat and the new web.xml descriptors

2006-11-21 Thread Rashmi Rubdi
I see it. Thank you for correcting. - Original Message From: Martin Kindler [EMAIL PROTECTED] To: Tag Libraries Users List taglibs-user@jakarta.apache.org Sent: Monday, November 20, 2006 11:11:06 AM Subject: AW: AW: Usin JSTL from jakarta with tomcat and the new web.xml descriptors It

Using RDC's in a stand-alone Java application

2006-11-21 Thread Charles Godfrey
Quick question, I'm building a stand-alone Java application that will output some VXML pages. Is there any way for me to use RDC to help with this? Is there a Java API for RDCs? Thanks, Charles