You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xmlbeans.apache.org by "Dan Diephouse (JIRA)" <xm...@xml.apache.org> on 2004/10/28 18:18:40 UTC

[jira] Created: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

NPE when processing XMLStreamReader Midstream
---------------------------------------------

         Key: XMLBEANS-78
         URL: http://issues.apache.org/jira/browse/XMLBEANS-78
     Project: XMLBeans
        Type: Bug
    Versions: Version 2    
 Environment: Latest CVS, Windows XP, Java 1.5
    Reporter: Dan Diephouse
    Priority: Blocker


I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:

java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
	at javax.xml.namespace.QName.<init>(Unknown Source)
	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at junit.framework.TestCase.runTest(TestCase.java:154)
	at junit.framework.TestCase.runBare(TestCase.java:127)
	at junit.framework.TestResult$1.protect(TestResult.java:106)
	at junit.framework.TestResult.runProtected(TestResult.java:124)
	at junit.framework.TestResult.run(TestResult.java:109)
	at junit.framework.TestCase.run(TestCase.java:118)
	at junit.framework.TestSuite.runTest(TestSuite.java:208)
	at junit.framework.TestSuite.run(TestSuite.java:203)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)

This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:

java.lang.NullPointerException
	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at junit.framework.TestCase.runTest(TestCase.java:154)
	at junit.framework.TestCase.runBare(TestCase.java:127)
	at junit.framework.TestResult$1.protect(TestResult.java:106)
	at junit.framework.TestResult.runProtected(TestResult.java:124)
	at junit.framework.TestResult.run(TestResult.java:109)
	at junit.framework.TestCase.run(TestCase.java:118)
	at junit.framework.TestSuite.runTest(TestSuite.java:208)
	at junit.framework.TestSuite.run(TestSuite.java:203)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)

I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Assigned: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Rajiv Bala (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=all ]

Rajiv Bala reassigned XMLBEANS-78:
----------------------------------

    Assign To: Lawrence Jones  (was: Rajiv Bala)

The IllegalArgumentException is still thrown. Please verify patch and checkin if appropriate. A test case for this issue can be found at misc.detailed. JiraRegression50_100Test. test_jira_xmlbeans78() 

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Assignee: Lawrence Jones
>     Priority: Blocker
>      Fix For: Version 2
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, depth.patch, prefix.patch, prefixanddepth.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Assigned: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Lawrence Jones (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=all ]

Lawrence Jones reassigned XMLBEANS-78:
--------------------------------------

    Assign To: Rajiv Bala  (was: Lawrence Jones)

For testing/closure.

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Assignee: Rajiv Bala
>     Priority: Blocker
>      Fix For: Version 2
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, depth.patch, prefix.patch, prefixanddepth.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Commented: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=comments#action_54764 ]
     
Dan Diephouse commented on XMLBEANS-78:
---------------------------------------

Upon reflection, this might be because it is continuing on all the way to the end of the document, regardless of where it starts.  Can someone with more expertise than I comment on that?

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, prefix.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Commented: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://nagoya.apache.org/jira/browse/XMLBEANS-78?page=comments#action_56106 ]
     
Dan Diephouse commented on XMLBEANS-78:
---------------------------------------

The newer versions of the STAX RI (1.1+) and Woodstox do not have an issue with putting nulls into the QName. So, XMLBeans should just be patched to take XMLStreamReaders at an arbitrary depth.  This is the attachment called "depth.patch".

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://nagoya.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, depth.patch, prefix.patch, prefixanddepth.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Assigned: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Lawrence Jones (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=all ]

Lawrence Jones reassigned XMLBEANS-78:
--------------------------------------

    Assign To: Lawrence Jones  (was: Kevin Krouse)

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Assignee: Lawrence Jones
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, depth.patch, prefix.patch, prefixanddepth.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Updated: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=history ]

Dan Diephouse updated XMLBEANS-78:
----------------------------------

    Attachment: XMLStreamReaderBug.java

The testcase.

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Updated: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=history ]

Dan Diephouse updated XMLBEANS-78:
----------------------------------

    Attachment: prefixanddepth.patch

This patch fixes both issues.  With this patch it keeps track of the depth and only hits as many END_ELEMENTS as it hit START_ELEMENTS.

Still waiting to hear for StAX experts on what the resolution is for the QName problem, but this definitely needs to be in there as a near term fix.  I've submitted a patch to Woodstox.  Haven't looked at the BEA-RI yet.

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, prefix.patch, prefixanddepth.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Updated: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=history ]

Dan Diephouse updated XMLBEANS-78:
----------------------------------

    Attachment: prefix.patch

A patch which checks for a null prefix in the XMLStreamReader and acts accordingly.

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, prefix.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Updated: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=history ]

Dan Diephouse updated XMLBEANS-78:
----------------------------------

    Attachment: amazon2.xml

Support xml file for the testcase.

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Resolved: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://issues.apache.org/jira/browse/XMLBEANS-78?page=all ]
     
Dan Diephouse resolved XMLBEANS-78:
-----------------------------------

    Fix Version: Version 2
     Resolution: Fixed

This issue is all resolved now in CVS (I can't remember, but either my patch was applied or the latest version of stax fixed it).

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://issues.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Assignee: Lawrence Jones
>     Priority: Blocker
>      Fix For: Version 2
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, depth.patch, prefix.patch, prefixanddepth.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org


[jira] Updated: (XMLBEANS-78) NPE when processing XMLStreamReader Midstream

Posted by "Dan Diephouse (JIRA)" <xm...@xml.apache.org>.
     [ http://nagoya.apache.org/jira/browse/XMLBEANS-78?page=history ]

Dan Diephouse updated XMLBEANS-78:
----------------------------------

    Attachment: depth.patch

I have been working with StAX people to get the QName bug fixed. Evidentally in some implementations QName doesn't throw an illegalAccessExceptpion when a prefix of null is passed to it.  But the XMLBeans implementation of QName does. This attached patch then only fixes the depth problem.

> NPE when processing XMLStreamReader Midstream
> ---------------------------------------------
>
>          Key: XMLBEANS-78
>          URL: http://nagoya.apache.org/jira/browse/XMLBEANS-78
>      Project: XMLBeans
>         Type: Bug
>     Versions: Version 2
>  Environment: Latest CVS, Windows XP, Java 1.5
>     Reporter: Dan Diephouse
>     Priority: Blocker
>  Attachments: XMLStreamReaderBug.java, amazon2.xml, depth.patch, prefix.patch, prefixanddepth.patch
>
> I am attempting to read in a SOAP response into XmlBeans with an XMLStreamReader. I've skipped to body in the XMLStreamReader.  When doing a XmlObject.Factory.parse( streamReader ) it throws this:
> java.lang.IllegalArgumentException: prefix cannot be "null" when creating a QName
> 	at javax.xml.namespace.QName.<init>(Unknown Source)
> 	at com.bea.xml.stream.MXParser.getName(MXParser.java:1432)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:979)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> This is fixed easily enough, by checking if the prefix is null in the Locale class and acting accordingly.  Once this is done though, I get:
> java.lang.NullPointerException
> 	at org.apache.xmlbeans.impl.newstore2.Cur$CurLoadContext.finish(Cur.java:3032)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.loadXMLStreamReader(Locale.java:1069)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:703)
> 	at org.apache.xmlbeans.impl.newstore2.Locale.parseToXmlObject(Locale.java:693)
> 	at org.apache.xmlbeans.impl.schema.SchemaTypeLoaderBase.parse(SchemaTypeLoaderBase.java:217)
> 	at org.apache.xmlbeans.XmlObject$Factory.parse(XmlObject.java:645)
> 	at XMLStreamReaderBug.testBug(XMLStreamReaderBug.java:25)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:154)
> 	at junit.framework.TestCase.runBare(TestCase.java:127)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:118)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:208)
> 	at junit.framework.TestSuite.run(TestSuite.java:203)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305)
> 	at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
> I'll attach a testcase showing this bug and my patch for Locale which checks for a null prefix.  The null prefix bug could also be problem with the StAX RI - however I'ved tried it with both the RI and Woodstox.  Both give me the same issue with the prefix being null.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://nagoya.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: dev-help@xmlbeans.apache.org