output XML

2002-11-26 Thread Shaw, Chris
Hi, Simple question (I hope!) Is it possible to have a generator that opens an XML file and outputs it quite simply 'as is' ? I have such a thing written at the moment but when I use contentHandler.characters(..) then all the XML tags get escaped into lt; and gt; tags! Thanks (in advance)

AW: output XML

2002-11-26 Thread Scherler, Thorsten
map:generate type=xsp src=xsp.xsp/ map:serialize type=xml/ /map:match King regards -Ursprüngliche Nachricht- Von: Shaw, Chris [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 26. November 2002 10:01 An: '[EMAIL PROTECTED]' Betreff: output XML Hi, Simple question (I hope

RE: output XML

2002-11-26 Thread Shaw, Chris
Message- From: Scherler, Thorsten [mailto:[EMAIL PROTECTED]] Sent: Tuesday 26 November 2002 10:43 To: [EMAIL PROTECTED] Subject: AW: output XML Helo Chris, try snipIs it possible to have a generator that opens an XML file and outputs it quite simply 'as is' ? /snip map:match pattern=*.xml

Re: output XML

2002-11-26 Thread Bertrand Delacretaz
On Tuesday 26 November 2002 10:00, Shaw, Chris wrote: . . . Is it possible to have a generator that opens an XML file and outputs it quite simply 'as is' ? . . . I'm not sure if I understand your problem, why not simply use the FileGenerator together with the XML serializer? Or the CInclude

Re: output XML

2002-11-26 Thread Ludovic de Beaurepaire
, November 26, 2002 10:00 AM Subject: output XML Hi, Simple question (I hope!) Is it possible to have a generator that opens an XML file and outputs it quite simply 'as is' ? I have such a thing written at the moment but when I use contentHandler.characters(..) then all the XML tags get

AW: output XML

2002-11-26 Thread Scherler, Thorsten
after the other). Other way with XSLT. Regards Thorsten -=-=-= -Original Message- From: Scherler, Thorsten [mailto:[EMAIL PROTECTED]] Sent: Tuesday 26 November 2002 10:43 To: [EMAIL PROTECTED] Subject: AW: output XML Helo Chris, try snipIs it possible to have a generator that opens

RE: output XML

2002-11-26 Thread Shaw, Chris
a Generator? but it kinda made sense since that I want to generate XML. Chris -=-=-= -Original Message- From: Bertrand Delacretaz [mailto:[EMAIL PROTECTED]] Sent: Tuesday 26 November 2002 10:52 To: [EMAIL PROTECTED] Subject: Re: output XML On Tuesday 26 November 2002 10:00, Shaw, Chris

Re: output XML

2002-11-26 Thread Bertrand Delacretaz
(please use reply-to if possible when replying to mailing lists messages) On Tuesday 26 November 2002 11:04, Shaw, Chris wrote: . . . I simply want to open one (or more) XML files - the names of which are not known to the sitemap (not even available client-side), the file names have to be

Re: output XML

2002-11-26 Thread Ludovic de Beaurepaire
Sorry, The previous title is Inserting XML String, if u want to insert your XML from a XSP. Ludovic - Original Message - From: Shaw, Chris [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 26, 2002 10:56 AM Subject: RE: output XML previous thread? sorry the previous

RE: output XML

2002-11-26 Thread Shaw, Chris
of the file is easily figured out using the Log Manager. I had no luck with 3rd party applications which are no longer an option, and it doesn't *sound* that complicated. In fact, the code is written, I just need to figure out how to output XML as XML within XML! Thanks Chris

Re: output XML

2002-11-26 Thread Bertrand Delacretaz
. Client requests http://myserver/LogPipeline/xyz.xml 2. Generator gets the XML data of xyz over RMI (xyz is some form of identifier for the data, not necessarily a filename). 3. Generator parses the XML and generates SAX events. . . . I just need to figure out how to output XML as XML within XML

Re: output XML

2002-11-26 Thread Bertrand Delacretaz
On Tuesday 26 November 2002 14:36, Shaw, Chris wrote: . . . Can someone in the know point me to the 'how to write a serializer' documentation? . . . I don't think there are specific docs on this yet but you might find the following pages helpful:

RE: output XML

2002-11-26 Thread Shaw, Chris
Delacretaz [mailto:[EMAIL PROTECTED]] Sent: Tuesday 26 November 2002 14:49 To: [EMAIL PROTECTED] Subject: Re: output XML On Tuesday 26 November 2002 14:36, Shaw, Chris wrote: . . . Can someone in the know point me to the 'how to write a serializer' documentation? . . . I don't think there are specific

Re: output XML

2002-11-26 Thread Joerg Heinicke
:[EMAIL PROTECTED]] Sent: Tuesday 26 November 2002 10:52 To: [EMAIL PROTECTED] Subject: Re: output XML On Tuesday 26 November 2002 10:00, Shaw, Chris wrote: . . . Is it possible to have a generator that opens an XML file and outputs it quite simply 'as is' ? . . . I'm not sure if I understand

Re: what is good way to output XML from Java objects?

2002-05-16 Thread Werner Guttmann
object to output xml content. But from what you tell me, it looks like xmlizable doesn't help generate the xml at all. only how it is treated by cocoon. From my experience, creating an XML output string from Java object is messy work. As bad as the original problem of outputting HTML content

what is good way to output XML from Java objects?

2002-05-15 Thread ptv
the Xmlizable interface would make it easier for the java object to output xml content. But from what you tell me, it looks like xmlizable doesn't help generate the xml at all. only how it is treated by cocoon. From my experience, creating an XML output string from Java object is messy work. As bad