You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Kevin Zhou (JIRA)" <ji...@apache.org> on 2008/06/05 11:19:45 UTC

[jira] Updated: (HARMONY-5866) [classlib][beans] java.beans.XMLDecoder(4) always use Thread.currentThread().getContextClassLoader()

     [ https://issues.apache.org/jira/browse/HARMONY-5866?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kevin Zhou updated HARMONY-5866:
--------------------------------

    Attachment: HARMONY-5866.diff

Please help me to try it

> [classlib][beans] java.beans.XMLDecoder(4) always use Thread.currentThread().getContextClassLoader()
> ----------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-5866
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5866
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 5.0M6
>            Reporter: Kevin Zhou
>             Fix For: 5.0M6
>
>         Attachments: HARMONY-5866.diff
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> I read java.beans.XMLDecoder code and find that XMLDecoder(4) as follows:
> public XMLDecoder(InputStream inputStream, Object owner, ExceptionListener listener, ClassLoader cl) {
>         this(inputStream, owner, listener);
>         defaultClassLoader = cl;
> }
> This constructor will first call XMLDecoder(3) which always use Thread.currentThread().getContextClassLoader() regardless of user's ClassLoader.
> I think the solution is to set the deafultClassLoader first before use SAXParser to parse xml.

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