Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2018-07-03 Thread Slava Pankov
For me the following helps in my project's pom.xml: xerces xercesImpl 2.11.0 On Sunday, July 1, 2018 at 12:13:43 AM UTC-7, Leto wrote: > > > > Am Samstag, 30. Juni 2018 14:35:17 UTC+2 schrieb Thomas Broyer: >> >> What's in your classpath? There might probably

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2018-07-01 Thread Leto
Am Samstag, 30. Juni 2018 14:35:17 UTC+2 schrieb Thomas Broyer: > > What's in your classpath? There might probably be ways to avoid those > situations, in GWT, but so few people have run into this that no one > investigated further. I stripped down my dependencies to just only a few, and if

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2018-06-30 Thread Thomas Broyer
What's in your classpath? There might probably be ways to avoid those situations, in GWT, but so few people have run into this that no one investigated further. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2018-06-29 Thread Leto
Am Dienstag, 25. Oktober 2016 14:21:40 UTC+2 schrieb Ian Whyman: > > It seems still to be an issue with the final 2.8.0 release > > Ian > I recently upgraded to GWT 2.8.2 (from the old version 2.6.0) I ran into the same problem ("org.apache.xerces.parsers.XIncludeAwareParserConfiguration

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2017-01-09 Thread Peter Petranik
I found the solution for my problem with this exception, according to Javadoc and databasesandlife.com I have used two system properties and problem was gone, because our code was written to use JDK

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-15 Thread Adam Gerbert
Ran into the same issue after upgrading to 2.8 from 2.7. Only happened in super dev mode, as the xerces dependency was coming from gwt-dev.jar. I fixed it in the same manner as Ian Whyman (thanks!), by including the dependency explicitly. -- You received this message because you are

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-05 Thread Peter Petranik
Thx guys for quick response, but my problem was only in some Eclipse related file. I am using Eclipse SDK 4.6.1 with GWT Eclipse Plugin . After I have switched from GWT 2.7 to GWT 2.8 I missed in $PROJECT_DIR/.settings /

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-02 Thread Ian Whyman
In the end we fixed that by shipping our own version of xerces & co in our war. On 2 December 2016 at 09:36, Peter Petranik wrote: > Hi, I have a same problem after I updated my application from GWT 2.7 to 2.8 > > That is the code that raises the exception: >

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-02 Thread Juan Pablo Gardella
Check http://stackoverflow.com/questions/24805360/classcastexception-org-apache-xerces-parsers-xincludeawareparserconfiguration-c On Fri, 2 Dec 2016 at 11:55 Peter Petranik wrote: > I have the Xerces library as dependency as part of gwt-dev.jar that is set > by GWT

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-02 Thread Peter Petranik
I have the Xerces library as dependency as part of gwt-dev.jar that is set by GWT SDK. I am not using the maven for a project. My dependencies are defined just by Eclipse in Project Settings (check the screenshot)

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-02 Thread Juan Pablo Gardella
Try by removing/exluding (if you have it in you r dependencies) xerces. On Fri, 2 Dec 2016 at 07:10 Peter Petranik wrote: > Hi, I have a same problem after I updated my application from GWT 2.7 to > 2.8 > > That is the code that raises the exception: >

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-12-02 Thread Peter Petranik
Hi, I have a same problem after I updated my application from GWT 2.7 to 2.8 That is the code that raises the exception: DocumentBuilderFactory.newInstance().newDocumentBuilder() And that is the exception: java.lang.ClassCastException: org.apache.xerces.parsers.XIncludeAwareParserConfiguration

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-10-25 Thread Ian Whyman
It seems still to be an issue with the final 2.8.0 release Ian On Tuesday, 18 October 2016 10:37:08 UTC+1, Darren Smith wrote: > > Hi Ian, > > Yes, we are still seeing the problem. I've put it aside for the moment, > hoping to revisit once we upgrade to a new GWT Release Candidate. > Glad to

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-10-18 Thread Darren Smith
Hi Ian, Yes, we are still seeing the problem. I've put it aside for the moment, hoping to revisit once we upgrade to a new GWT Release Candidate. Glad to know I'm not the only one suffering from this :) Cheers Darren On Monday, October 10, 2016 at 5:10:08 PM UTC+2, Ian Whyman wrote: > > Hi

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-10-10 Thread Drew Spencer
Hey guys, this might help you. I had an issue with an old Xerces on the path before: http://stackoverflow.com/questions/38457973/cant-compile-gwt-app-using-2-8-0-snapshot-and-java-8-with-gwt-maven-plugin Happy coding! Drew On Monday, 10 October 2016 16:10:08 UTC+1, Ian Whyman wrote: > > Hi

Re: GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-10-10 Thread Ian Whyman
Hi Darren, We are seeing the same issue, did you find any resolution? Regards, Ian On Thursday, 6 October 2016 08:20:49 UTC+1, Darren Smith wrote: > > Hi, > > I am developing a that contains within it > - a vanilla HttpServlet > - a GWT RPC Service implementation (RemoteServiceServlet) >

GWT2.8 : org.apache.xerces.parsers.XIncludeAwareParserConfiguration cannot be cast to org.apache.xerces.xni.parser.XMLParserConfiguration

2016-10-06 Thread Darren Smith
Hi, I am developing a that contains within it - a vanilla HttpServlet - a GWT RPC Service implementation (RemoteServiceServlet) I am currently using [GWT2.8rc1]. Both servlets manipulate XML documents, and hence make calls to the following code DocumentBuilderFactory docfactory =