RE: Getting XML from request

2002-06-10 Thread Mike Ash
Title: RE: Getting XML from request Oops...on my way...thanks for being patient -Original Message- From: Vadim Gritsenko [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 1:20 PM To: [EMAIL PROTECTED] Subject: RE: Getting XML from request You should get it from CVS directly

RE: Getting XML from request

2002-06-10 Thread Mike Ash
Title: RE: Getting XML from request Vadim, Thanks again the new stuff works just fine -Original Message- From: Vadim Gritsenko [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 1:20 PM To: [EMAIL PROTECTED] Subject: RE: Getting XML from request You should get it from

RE: Getting XML from request

2002-06-10 Thread Vadim Gritsenko
ou can wait till tomorrow and get snapshot. Vadim -Original Message- From: Mike Ash [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 2:11 PM To: '[EMAIL PROTECTED]' Subject: RE: Getting XML from request I got the latest automated dist and the source file from 2

RE: Getting XML from request

2002-06-10 Thread Mike Ash
Title: RE: Getting XML from request I got the latest automated dist and the source file from 2.02 is the sameis XSPObjectHelper the class you meant? I got it from this org.apache.cocoon.components.language.markup.xsp.XSPObjectHelper -Original Message- From: Vadim

RE: Getting XML from request

2002-06-10 Thread Vadim Gritsenko
Gritsenko [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 10:37 AM To: [EMAIL PROTECTED] Subject: RE: Getting XML from request Now you can go to XSPObjectHelper.xspExpr and see that if object is XMLizable it does not print anything like classname@memory-address. Can it come from your

RE: Getting XML from request

2002-06-10 Thread Mike Ash
Title: RE: Getting XML from request The XMLizable object I am using is from org.apache.cocoon.components.source.URLSource Which gets an xml file from a url.  The file is a regular xml file with a couple of nodes in it. This class extends from

RE: Getting XML from request

2002-06-10 Thread Vadim Gritsenko
:16 AM To: '[EMAIL PROTECTED]' Subject: RE: Getting XML from request I did and here is the line in java    XSPObjectHelper.xspExpr(contentHandler, request.getAttribute("xmlData")); the XSPObjectHelper.xspExpr is suppossed to work with the XMLizable object to get the xml.  So

RE: Getting XML from request

2002-06-10 Thread Mike Ash
Title: RE: Getting XML from request I did and here is the line in java    XSPObjectHelper.xspExpr(contentHandler, request.getAttribute("xmlData")); the XSPObjectHelper.xspExpr is suppossed to work with the XMLizable object to get the xml.  So is this saying that the URLSource ob

RE: Getting XML from request

2002-06-10 Thread Vadim Gritsenko
Check Java code generated from the XSP, in tomcat/work directory. Vadim -Original Message- From: Mike Ash [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 8:26 AM To: '[EMAIL PROTECTED]' Subject: RE: Getting XML from request Well I finally got an XMLizable object

RE: Getting XML from request

2002-06-10 Thread Mike Ash
Title: RE: Getting XML from request Well I finally got an XMLizable object (URLSource) put into the request, however when I try to get it like this it returns the xml but also my.class.name@memoryaddress the above line make the xml it returns invalid. Anyone know how to turn off

RE: Getting XML from request

2002-06-06 Thread Christopher Watson
her -Original Message- From: Deepak Mehta [mailto:[EMAIL PROTECTED]] Sent: 06 June 2002 09:05 To: [EMAIL PROTECTED]; Mike Ash Subject: Re: Getting XML from request Mike, I had the same problem... Deepak, I suspect you've got something like myStringVariable try replacing this with myStringV

Re: Getting XML from request

2002-06-06 Thread Deepak Mehta
Title: Re: Getting XML from request Mike, I had the same problem... Deepak, I suspect you've got something like myStringVariable try replacing this with myStringVariable pr> Also, to use the util: logicsheet, you'll need to add   xmlns:util="http://apache.org/xsp/

RE: Getting XML from request

2002-06-05 Thread Mike Ash
Title: RE: Getting XML from request Thanks!  Making my object XMLizable works great. -Original Message- From: Vadim Gritsenko [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 12:09 PM To: [EMAIL PROTECTED] Subject: RE: Getting XML from request Your object must be

RE: Getting XML from request

2002-06-05 Thread Vadim Gritsenko
PROTECTED]] Sent: Wednesday, June 05, 2002 12:25 PM To: '[EMAIL PROTECTED]' Subject: RE: Getting XML from request Sorry about not using plain text. What I would like to end up with is nodes from the xsp page that contain the nodes from the object i put in t

RE: Getting XML from request

2002-06-05 Thread Mike Ash
Title: RE: Getting XML from request Sorry about not using plain text. What I would like to end up with is nodes from the xsp page that contain the nodes from the object i put in the request

RE: Getting XML from request

2002-06-05 Thread Vadim Gritsenko
Sent: Wednesday, June 05, 2002 11:25 AM To: '[EMAIL PROTECTED]' Subject: Getting XML from request I am storing xml data in the request object by using request.setAttribute("xmlData", someObject); I need that object back as xml in an xsp page, when I try this xsp:request:get-att

Getting XML from request

2002-06-05 Thread Mike Ash
Title: Getting XML from request I am storing xml data in the request object by using request.setAttribute("xmlData", someObject); I need that object back as xml in an xsp page, when I try this xsp:request:get-attribute name="xmlData" as="xml" it ret