Re: Two questions

2000-07-10 Thread Mark Torr
quotes are the key thing... > -Original Message- > From: Mark Torr > Sent: Monday, July 10, 2000 10:11 > To: '[EMAIL PROTECTED]' > Subject: Two questions > > Hi, > > 1. A long time back someone pasted an example of using James Clarks XT > pro

Two questions

2000-07-10 Thread Mark Torr
Hi, 1. A long time back someone pasted an example of using James Clarks XT processor with JSP pages. I cannot locate it in the archives. Can someone send it to me if they still have a copy. 2. I am trying to read a parameter and based on that I want to include a file... am I correct in thinking

Re: JSP/HTML to Word/Excel

2000-06-15 Thread Mark Torr
any examples? -Original Message- From: Fernando Ribeiro [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 15, 2000 12:51 To: [EMAIL PROTECTED] Subject: Re: JSP/HTML to Word/Excel If you want to create a true Word or Excel file you will need to use a Java-COM bridge. fribeiro ===

Re: Passing XML Files between JSP's

2000-06-14 Thread Mark Torr
: Wednesday, June 14, 2000 20:04 To: [EMAIL PROTECTED] Subject: Re: Passing XML Files between JSP's Mark Torr wrote: > This is just what I expected :-( > > I was hoping for a more elegant solution. > An approach to dealing with this kind of filtering is being discussed in the context of

Re: Passing XML Files between JSP's

2000-06-14 Thread Mark Torr
sort of filtering/chaining, then it's not directly supported in the spec currently otherwise you can put the xml in form of string(or any other suitable data structure) in the appropriate scope and access from the other jsp. vishu > -Original Message- > From: Mark Torr [SMTP:

No Subject

2000-06-14 Thread Mark Torr
take a look at: http://java.sun.com/products/jsp/docs.html -Original Message- From: Yogesh Nath [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 14, 2000 18:58 To: [EMAIL PROTECTED] Subject: How do I get CGI variables from a servlet?

No Subject

2000-06-14 Thread Mark Torr
You could also look at : http://archive.coreservlets.com/Chapter5.html. This has code samples! -Original Message- From: Mark Torr Sent: Wednesday, June 14, 2000 19:20 To: 'A mailing list about Java Server Pages specification and reference' Subject: RE: take a loo

Re: Support needed

2000-06-14 Thread Mark Torr
Take a look at http://java.sun.com/products/jsp/docs.html -Original Message- From: Sandipan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 14, 2000 19:01 To: [EMAIL PROTECTED] Subject: Support needed Hi Members, I am the new member joined today. I need support on two points. 1) I do

Passing XML Files between JSP's

2000-06-14 Thread Mark Torr
Hi, If I have read in a file and created an XML file from it how can I then pass this file directly to another JSP as it's input? If this possible? Mark. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-

A question about JSP and XML

2000-05-26 Thread Mark Torr
I am using the DOM via a JavaServer Page and need to render my output. I currently have the following code: <%@ page import="javax.xml.parsers.*"%> <%@ page import="org.w3c.dom.*" %> <% try { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance (); DocumentBuilder db =