You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Andrew Zhang (JIRA)" <ji...@apache.org> on 2006/08/28 05:55:23 UTC

[jira] Updated: (HARMONY-1286) [classlib][logging] LogManager.addLogger(Logger) throws unexpected AccessControlException when SecurityManager is enabled.

     [ http://issues.apache.org/jira/browse/HARMONY-1286?page=all ]

Andrew Zhang updated HARMONY-1286:
----------------------------------

    Attachment: Harmony-1286.diff

Hi,

Would you please try my patch?

P.S: I forgot to select "classlib" when reporting this issue. Would you please help set "classlib" for component type? 

Thanks a lot!

Best regards,
Andrew

> [classlib][logging] LogManager.addLogger(Logger) throws unexpected AccessControlException when SecurityManager is enabled.
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1286
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1286
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Andrew Zhang
>         Attachments: Harmony-1286.diff
>
>
> Following test reproduces the bug:
> 	public void test_addLogger() throws Exception {
> 		SecurityManager originalSecurityManager = System.getSecurityManager();
> 		System.setSecurityManager(new SecurityManager());
> 		try {
> 			LogManager manager = LogManager.getLogManager();
> 			manager.addLogger(new MockLogger("mock", null));
> 		} finally {
> 			System.setSecurityManager(originalSecurityManager);
> 		}
> 	}
> The test passes against RI while fails against Harmony. 
> I'll upload a patch to fix this problem soon.
> Best regards,
> Andrew

-- 
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