DTD being resolved using non-validating parser?

2004-05-03 Thread Greg Hess
or altering the DOCTYPE?   Thanks,   Greg Hess Software Engineer Wrapped Apps Corporation 275 Michael Cowpland Dr. Suite 201 Ottawa, Ontario K2M 2G2 Tel: (613) 591 -7552 ext 230

RE: [OT]-- Editing XML

2003-09-17 Thread Greg Hess
diagrams exist? Unfortunately I am new to XSLT, Schema where would I start? Many, Many thanks, Greg > -Original Message- > From: Colburn, Gordon (ATL) [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 17, 2003 3:47 PM > To: 'Greg Hess '; 'Xerces Use

RE: [OT]-- Editing XML

2003-09-17 Thread Greg Hess
EMAIL PROTECTED]' Subject: RE: [OT]-- Editing XML   Is there a reason that you can't just use the XSLT to convert the input XML directly to the output XML?  Does this really need human intervention?   Thanks, Donald Holliday       -Original Message----- From: Greg Hess

[OT]-- Editing XML

2003-09-17 Thread Greg Hess
greatly appreciated, I have been assigned this task and have no idea if it is possible or where to start.   Many Thanks,   Greg Hess Software Engineer Wrapped Apps Corporation 275 Michael Cowpland Dr. Suite 201 Ottawa

RE: General tips help, NEWBIE?

2003-04-17 Thread Greg Hess
quot;, "UTF-8", true); XMLSerializer ser = new XMLSerializer(System.out, of); Does any of this help? C To: "Xerces User Mail list" <[EMAIL PROTECTED]> "Greg Hess" cc:

General tips help, NEWBIE?

2003-04-17 Thread Greg Hess
Hi All,   I would greatly appreciate any help that you could provide on helping me complete my task. I am new to Xerces and XML parsing and having difficulty understanding how I should be implementing this functionality.   I have a web form that allows a user to enter text(may contain

How is the encoding attribute used?

2003-04-17 Thread Greg Hess
Hi All,   How does the Xerces parser handle the document declaration and is it used by the parser? Does it automatically encode and decode values inserted and fetched in text nodes? Is the programmer required to evaluate this attribute and determine how to decode the XML document? If it

DTD design advise?

2003-01-17 Thread Greg Hess
Hi All,   I am new to XML and am currently building a remote procedure call(RPC) Web Service adapter to allow clients access to one of our web applications functionality. I have build the adapter enabling some 100+ RPC’s. Each RPC has a base data structure eg:   //The method name

RE: Parsing DTD's with CDATA elements

2003-01-15 Thread Greg Hess
I have changed my DTD as suggested and all is well :-). Many Thanks, Greg -Original Message- From: Joseph Kesselman [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 14, 2003 4:59 PM To: [EMAIL PROTECTED] Subject: Re: Parsing DTD's with CDATA elements This looks like the standard confu

Parsing DTD's with CDATA elements

2003-01-14 Thread Greg Hess
Hi All,   I have build a data structure that contains an element of type CDATA. When I parse the xml data I get the error org.xml.sax.SAXParseException: A '(' character or an element type is required in the declaration of element type "initData". Does anyone have any insight as to why my

RE: How to build DOM with a DOCTYPE?

2003-01-14 Thread Greg Hess
using org.apache.xml.serialize.DOMSerializer, then the OutputFormat object which is passed to its constructor has the following method: OutputFormat.setDoctype(String doctypePublic, String doctypeSystem) Regards, Simon On Tue, 2003-01-14 at 05:15, Greg Hess wrote: > Hi All, > > > > I

How to build DOM with a DOCTYPE?

2003-01-13 Thread Greg Hess
Hi All,   I have been building a Document with a DOCTYPE using the DOMImplementation but when I serialize the DOM to file or OutputStream the DOCTYPE is missing.   How can I achieve this?   Many thanks,   Greg

Building DOM with DOCTYPE

2003-01-10 Thread Greg Hess
Hi All,   I am new to this list and using Xerces. I am having trouble building a DOM with a DOCTYPE declaration. No errors occur when I build the DOM but when I serialize the DOM to file the DOCTYPE declaration is excluded from the output. My code is as follows:   DOMImplementation dom