[appengine-java] Re: Xml Support in GAE (xerces.jar SAXNotSupportedException)

2009-08-19 Thread Toby Reyelts
Ah, I just noticed that your root error was that your parser does not support validation. We currently don't allow those. You can either use the JDK's built-in parser, or you can use one that supports validation. On Wed, Aug 19, 2009 at 8:22 AM, Max wrote: > > No. My servlet does not work. I get

[appengine-java] Re: Xml Support in GAE (xerces.jar SAXNotSupportedException)

2009-08-19 Thread Max
No. My servlet does not work. I get exception when call servlet that I provided in first post. Once I delete xerces.jar from war/WEB-INF/lib it works. My code does not call any XML stuff right now. I wish to add XML functionality but I do not know how. Cheers, Max On Aug 19, 1:46 am, Toby Reye

[appengine-java] Re: Xml Support in GAE (xerces.jar SAXNotSupportedException)

2009-08-18 Thread Toby Reyelts
If I understood you correctly, you're saying you now have xerces.jar in WEB-INF/lib and things are behaving correctly? On Tue, Aug 18, 2009 at 5:05 PM, Max wrote: > > Hi, I just copied xerces.jar in war/WEB-INF/lib > > I have not edited anything in Projects Properties because first time > GWT co

[appengine-java] Re: Xml Support in GAE (xerces.jar SAXNotSupportedException)

2009-08-18 Thread Max
Hi, I just copied xerces.jar in war/WEB-INF/lib I have not edited anything in Projects Properties because first time GWT code stopped work. So I rolled back to point where everything works and I just copied xerces.jar to war/WEB-INF/lib Thanks, Max On Aug 18, 7:58 pm, Toby Reyelts wrote: > H

[appengine-java] Re: Xml Support in GAE (xerces.jar SAXNotSupportedException)

2009-08-18 Thread Toby Reyelts
Hey Max, There's an issue where the dev_appserver does not work correctly when XML libraries are put on its system classpath. By default, the Eclipse plugin adds all libraries to the system classpath for GWT. Can you try just removing the XML library from the system classpath but leaving it in WEB-

[appengine-java] Re: Xml Support in GAE (xerces.jar SAXNotSupportedException)

2009-08-18 Thread Mike
Hi Max, I used javax.xml.parsers.SAXParser. Mike On Aug 18, 8:50 am, Max wrote: > I have read that I must add xerces.jar to project to add support for > XML. > > I have project in Eclipse with Google Plugin that works fine without > XML. > I added xerces.jar to war/WEB-INF/lib > > I have not