You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Tim McConnell (JIRA)" <ji...@apache.org> on 2008/05/10 00:45:55 UTC

[jira] Created: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
---------------------------------------------

                 Key: GERONIMODEVTOOLS-344
                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
             Project: Geronimo-Devtools
          Issue Type: Bug
    Affects Versions: 2.1.0
            Reporter: Tim McConnell
            Assignee: Tim McConnell
             Fix For: 2.1.1


During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell updated GERONIMODEVTOOLS-344:
-------------------------------------------

    Fix Version/s:     (was: 2.1.1)
                   2.1.2

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.2
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12595770#action_12595770 ] 

Tim McConnell commented on GERONIMODEVTOOLS-344:
------------------------------------------------

According to the stack traces it appears there is a classpath clash somewhere with: 

\javax\xml\namespace\QName.class

which is in fact included in xpp3-1.1.3.4.O.jar. So what I did was to use the xpp3_min-1.1.3.4.O.jar, which appears to be a minimal version of the xpp3 jar since it only has two classes (XmlPullParser and XmlPullParserException) so there is no clash. A that I was able to define a dynamic web application, deploy, and execute it with no errors. I could also do that same with the calculator-stateless ear file. In fact, the GEP never uses xpp3 directly -- it's used somehow by the xstream class, which is use to create/read/update the servermodele.info file for WTP and this is isolated to a single class (i.e., ModuleArtifactMapper). 

Not yet sure this is the optimal solution but one possible alternative.....

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell reopened GERONIMODEVTOOLS-344:
--------------------------------------------


Hi Jason, could you elaborate a bit ?? Or maybe provide an example of what you mean ?? Sorry but it's not obvious to mean but if there is a better solution we should consider it.....

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell closed GERONIMODEVTOOLS-344.
------------------------------------------

    Resolution: Fixed

Commited patch to trunk and also deleted the references to xpp3 and xstream. Thanks to BJ Reed for the patch !!

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Jason Dillon (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12599088#action_12599088 ] 

Jason Dillon commented on GERONIMODEVTOOLS-344:
-----------------------------------------------

probably would have been easier to just configure a new driver type instead of adding this custom marshaling muck... :-\

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell closed GERONIMODEVTOOLS-344.
------------------------------------------

    Resolution: Fixed

Closing since XStream causes other problems with Java 1.6, so would rather have a working custom solution that supports both Java 1.5 and 1.6....

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.2.0
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell reassigned GERONIMODEVTOOLS-344:
----------------------------------------------

    Assignee: B.J. Reed  (was: Tim McConnell)

Hi BJ, could you look into this when you get a chance ?? Thanks

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Jason Dillon (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12599366#action_12599366 ] 

Jason Dillon commented on GERONIMODEVTOOLS-344:
-----------------------------------------------

I just meant that its a shame to pull out XStream in this fashion because you were unable to configure the build correctly to pickup the proper dependencies.

IMO, XStream is an awesome tool, and IMO I'd rather not see it yanked out and replaced by all that custom marshaling muck.

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Ted Kirby (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ted Kirby updated GERONIMODEVTOOLS-344:
---------------------------------------

    Fix Version/s:     (was: 2.1.3)
                   2.2.0

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.2.0
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "B.J. Reed (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

B.J. Reed updated GERONIMODEVTOOLS-344:
---------------------------------------

    Attachment: GERONIMODEVTOOLS-344.patch

I was unable to figure out exactly where the clash was occurring, so I went the second route....removing the need for xstream and xpp3 from ModuleArtifactMapper.  I have added an inner class that does simple parsing and writing for the moduleserver.info file.  I'm sure we could use JAXB or some other solution to be more elegant, but I figure for the small amount of data that we are dealing with in that file, we can just roll our own.  Also needed to change a few pom's and a manifest.mf since we no longer need the xstream and xpp3 jars so it will make the whole GEP smaller.

Ted, please give this a try and see if it helps.

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12599649#action_12599649 ] 

Tim McConnell commented on GERONIMODEVTOOLS-344:
------------------------------------------------

Hi again Jason, thanks for the advise -- we shall pursue another option then.....

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell updated GERONIMODEVTOOLS-344:
-------------------------------------------

    Fix Version/s:     (was: 2.1.2)
                   2.1.3

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.3
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "Ted Kirby (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12598978#action_12598978 ] 

Ted Kirby commented on GERONIMODEVTOOLS-344:
--------------------------------------------

Thanks Tim and BJ.  Both solutions appear to work!  BJ's seems preferable as I like the minimalist approach.

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.1.1
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (GERONIMODEVTOOLS-344) Cannot utilize the xpp3-1.1.3.4.O jar in GEP

Posted by "B.J. Reed (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

B.J. Reed updated GERONIMODEVTOOLS-344:
---------------------------------------

    Component/s: eclipse-plugin

> Cannot utilize the xpp3-1.1.3.4.O jar in GEP 
> ---------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-344
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-344
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.1.0
>            Reporter: Tim McConnell
>            Assignee: B.J. Reed
>             Fix For: 2.2.0
>
>         Attachments: GERONIMODEVTOOLS-344.patch
>
>
> During the release of the GEP 2.1.0 we encountered problems with the xpp3-1.1.3.4.O.jar file when trying to create a new dynamic web problem (i.e., unhandled event condition). Need to investigate and understand why so that we can use the same version of this artifact that the server is using. 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.