[dom4j-user] (no subject)

2002-08-08 Thread JavaXML Developer
All, 
Though my xml file has  processing Instruction. when i tried document.removeProcessingInstruction("xml"); it's not removing PI from my xml. Since it was not removing that PI i thought of trying first to check what it returns with document.processingInstructions(); method, but it returns empty list. 
Could anyone tell me why it's not removing PI from xml ? am using dom4j-full-1.3 and JDK1.3. 
Thanks,
Vicky 
 
 
 
 Do You Yahoo!?
HotJobs, a Yahoo! service - Search Thousands of New Jobs

[dom4j-user] Procession Instruction issue

2002-08-08 Thread JavaXML Developer
All, 
Though my xml file has  processing Instruction. when i tried document.removeProcessingInstruction("xml"); it's not removing PI from my xml. Since it was not removing that PI i thought of trying first to check what it returns with document.processingInstructions(); method, but it returns empty list. 
Could anyone tell me why it's not removing PI from xml ? am using dom4j-full-1.3 and JDK1.3. 
Thanks,
Vicky Do You Yahoo!?
HotJobs, a Yahoo! service - Search Thousands of New Jobs

[dom4j-user] Processing Instruction problem with removeProcessingInstruction() method

2002-08-09 Thread JavaXML Developer
Hi All,
I badly need help to get removeProcessingInstruction() method wrok. If anybody could suggest me a solution, would highly be appreciated.Do You Yahoo!?
HotJobs, a Yahoo! service - Search Thousands of New Jobs--- Begin Message ---
All, 
Though my xml file has  processing Instruction. when i tried document.removeProcessingInstruction("xml"); it's not removing PI from my xml. Since it was not removing that PI i thought of trying first to check what it returns with document.processingInstructions(); method, but it returns empty list. 
Could anyone tell me why it's not removing PI from xml ? am using dom4j-full-1.3 and JDK1.3. 
Thanks,
Vicky Do You Yahoo!?
HotJobs, a Yahoo! service - Search Thousands of New Jobs--- End Message ---


RE: [dom4j-user] Processing Instruction problem with removeProcessingInstruction() method

2002-08-09 Thread JavaXML Developer
Thank you so much but in my case on the fly dom4j document is getting generated and before displaying or storing it i need to remove xml declaration. I am not using XMLWriter and so OutputFormat. Is there any other way i could remove xml declaration from dom4j document directly instead of setSuppressDeclaration(true); ? 
Thanks, 
Vicky 
 Mattias Reichel <[EMAIL PROTECTED]>wrote:





Hi,
The xml declaration is not a processing instruction.
So you cannot remove it this way.
 
Use the setSuppressDeclaration() method of OutputFormat and feed it to your XMLWriter constructor.
 
Cheers
/Mattias
 

-Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of JavaXML DeveloperSent: den 9 augusti 2002 14:03To: [EMAIL PROTECTED]Subject: [dom4j-user] Processing Instruction problem with removeProcessingInstruction() method
 
Hi All, 
I badly need help to get removeProcessingInstruction() method wrok. If anybody could suggest me a solution, would highly be appreciated.
 



Do You Yahoo!?HotJobs, a Yahoo! service - Search Thousands of New JobsDo You Yahoo!?
HotJobs, a Yahoo! service - Search Thousands of New Jobs

[dom4j-user] error while converting w3c DOM into dom4j

2003-06-11 Thread JavaXML Developer
I have been trying to convert w3c DOM document into dom4j document using 
DOMReader domReader = new DOMReader();org.dom4j.Document dom4jDoc = domReader.read(w3cDom);
//where w3cDom is com.sun.xml.tree.XmlDocument.
 
I keep getting following exception.
java.lang.AbstractMethodError at org.dom4j.io.DOMReader.readElement(DOMReader.java:181) at org.dom4j.io.DOMReader.readTree(DOMReader.java:106) at org.dom4j.io.DOMReader.read(DOMReader.java:88)
 
 
Can anyone tell , what could be the reason for this? I need to get this resolved ASAP.
 
Thank you all.
 
Do you Yahoo!?
Free online calendar with sync to Outlook(TM).

[dom4j-user] error while converting w3c DOM into dom4j

2003-06-11 Thread JavaXML Developer

I have been trying to convert w3c DOM document into dom4j document using 
DOMReader domReader = new DOMReader();org.dom4j.Document dom4jDoc = domReader.read(w3cDom);
//where w3cDom is com.sun.xml.tree.XmlDocument.
 
I keep getting following exception.
java.lang.AbstractMethodError at org.dom4j.io.DOMReader.readElement(DOMReader.java:181) at org.dom4j.io.DOMReader.readTree(DOMReader.java:106) at org.dom4j.io.DOMReader.read(DOMReader.java:88)
 
 
Can anyone tell , what could be the reason for this? I need to get this resolved ASAP.
 
Thank you all.
 
Do you Yahoo!?
Free online calendar with sync to Outlook(TM).

[dom4j-user] Error while converting W3C DOM to dom4j document

2003-06-11 Thread JavaXML Developer

I have been trying to convert w3c DOM document into dom4j document using 
DOMReader domReader = new DOMReader();org.dom4j.Document dom4jDoc = domReader.read(w3cDom);
//where w3cDom is com.sun.xml.tree.XmlDocument.
 
I keep getting following exception.
java.lang.AbstractMethodError at org.dom4j.io.DOMReader.readElement(DOMReader.java:181) at org.dom4j.io.DOMReader.readTree(DOMReader.java:106) at org.dom4j.io.DOMReader.read(DOMReader.java:88)
 
 
Can anyone tell , what could be the reason for this? I need to get this resolved ASAP.
 
Thank you all.
 
Do you Yahoo!?
Free online calendar with sync to Outlook(TM).

Re: [dom4j-user] Error while converting W3C DOM to dom4j document

2003-06-12 Thread JavaXML Developer
Dave, 
Thanks for your reply. could you point me where to find the sample which you are talking about? I am not able to see any example of converting JAXP created DOM into dom4j document. i would appreciate the early response.
Thanks,Vikas"David D. Lucas" <[EMAIL PROTECTED]> wrote:
The w3c DOM the DOM4J compiled with and the one Sun compiled with may be a mismatch. Did you look at the DOM samples in the source distribution?They show how to use JAXP to parse into DOM and the parse DOM to get DOM4J.Later,DaveJavaXML Developer wrote:> I have been trying to convert w3c DOM document into dom4j document using> DOMReader domReader = new DOMReader();> org.dom4j.Document dom4jDoc = domReader.read(w3cDom);> //where w3cDom is com.sun.xml.tree.XmlDocument.> > I keep getting following exception.> java.lang.AbstractMethodError> at org.dom4j.io.DOMReader.readElement(DOMReader.java:181)> at org.dom4j.io.DOMReader.readTree(DOMReader.java:106)> at org.dom4j.io.DOMReader.read(DOMReader.java:88)> > > Can anyone tell , what could be the reason for this? I need to get
 this > resolved ASAP.> > Thank you all.> > > > Do you Yahoo!?> Free online calendar > with > sync to Outlook(TM).-- ++| David Lucas mailto:[EMAIL PROTECTED] || Lucas Software Engineering, Inc. (740) 964-6248 Voice || Unix,Java,C++,CORBA,XML,EJB (614) 668-4020 Mobile || Middleware,Frameworks (888) 866-4728 Fax/Msg |++| GPS Location: 40.0150 deg Lat, -82.6378 deg Long || IMHC: "Jesus Christ is the way, the truth, and the life." || IMHC: "I know where I am; I know where I'm going." <>< |++Notes: PGP Key
 Block=http://www.lse.com/~ddlucas/pgpblock.txtIMHO="in my humble opinion" IMHC="in my humble conviction"All trademarks above are those of their respective owners.---This SF.NET email is sponsored by: eBayGreat deals on office technology -- on eBay now! Click here:http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5___dom4j-user mailing list[EMAIL PROTECTED]https://lists.sourceforge.net/lists/listinfo/dom4j-user
Do you Yahoo!?
Free online calendar with sync to Outlook(TM).

[dom4j-user] Error while converting DOM to dom4j (VERY URGENT)

2003-06-12 Thread JavaXML Developer
I have been trying to convert w3c DOM document into dom4j document using DOMReader domReader = new DOMReader();org.dom4j.Document dom4jDoc = domReader.read(w3cDom);//where w3cDom is com.sun.xml.tree.XmlDocument. I keep getting following exception.java.lang.AbstractMethodError at org.dom4j.io.DOMReader.readElement(DOMReader.java:181) at org.dom4j.io.DOMReader.readTree(DOMReader.java:106) at org.dom4j.io.DOMReader.read(DOMReader.java:88)  Can anyone tell , what could be the reason for this? I need to get this resolved ASAP. Thank you all.
Do you Yahoo!?
Free online calendar with sync to Outlook(TM).