Re: XML, XSL a real problem

2002-02-02 Thread Anil Pinto
Hi Mike, Can you be a little more specific ? Coz we are not able to correctly understand what u need. Does your servlet actually need the xml and xsl as Java String inputs OR is it gonna read a .xml and .xsl file as Java File inputs to generate the .pdf file ? Anil. --- "Zahigian, Mike" <[EMA

RE: XML, XSL a real problem

2002-02-01 Thread Zahigian, Mike
if (parserClassName == null) { parserClassName = "org.apache.xerces.parsers.SAXParser"; } try { return (XMLReader) Class.forName( parserClassName).newInstance(); } catch (Exception e) { throw new ServletExcep

Re: XML, XSL a real problem

2002-02-01 Thread Scott Moore
Yes, at least the XML part. The XSLT is on the server so the client doesn't send it, but I could get it exactly the same way I get the XML. What exactly are you having problems with? Writing the servlet code to retrieve an XML document from a POST? Scott - Original Message - From: "Zah