Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-22 Thread Mikhail Loenko
My bad. I should have checked that RI accepts block comments. The bug seems to be caused by HARMONY-1262 Thanks, Mikhail 2006/8/23, Andrew Zhang <[EMAIL PROTECTED]>: Reversion 433575 solves the bug, but seems Harmony still doesn't support /** */ style comment while RI does? I think it's a wor

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-22 Thread Alexey Varlamov
The o.a.h.security.DefaultPolicyScanner is configured by default to support both style comments: protected StreamTokenizer configure(StreamTokenizer st) { st.slashSlashComments(true); st.slashStarComments(true); st.wordChars('_', '_'); st.wordChars('$', '$');

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-22 Thread Andrew Zhang
Reversion 433575 solves the bug, but seems Harmony still doesn't support /** */ style comment while RI does? I think it's a workaround rather than fix. :) Will we plan to fix the problem by supporting /* */ style comment ? Thanks! On 8/22/06, Mikhail Loenko <[EMAIL PROTECTED]> wrote: Done 20

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-22 Thread Mikhail Loenko
Done 2006/8/22, Andrew Zhang <[EMAIL PROTECTED]>: It works! Thanks Mikhail! Another cool bug. :-) On 8/22/06, Mikhail Loenko <[EMAIL PROTECTED]> wrote: > > Be patient :) > > I'm running the tests... > > If you want it right now, remove copyright from the java.policy file > > Thanks, > Mikhail

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-22 Thread Andrew Zhang
It works! Thanks Mikhail! Another cool bug. :-) On 8/22/06, Mikhail Loenko <[EMAIL PROTECTED]> wrote: Be patient :) I'm running the tests... If you want it right now, remove copyright from the java.policy file Thanks, Mikhail 2006/8/22, Andrew Zhang <[EMAIL PROTECTED]>: > Any solutions? >

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-22 Thread Mikhail Loenko
Be patient :) I'm running the tests... If you want it right now, remove copyright from the java.policy file Thanks, Mikhail 2006/8/22, Andrew Zhang <[EMAIL PROTECTED]>: Any solutions? On 8/22/06, Mikhail Loenko <[EMAIL PROTECTED]> wrote: > > No > > The reason is these lines behave differentl

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-22 Thread Andrew Zhang
Any solutions? On 8/22/06, Mikhail Loenko <[EMAIL PROTECTED]> wrote: No The reason is these lines behave differently import java.security.*; import java.util.*; public class a { static public void main(String[] args) throws Exception { Permission p = new PropertyPermission("java.ver

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-21 Thread Paulex Yang
Mikhail Loenko wrote: No The reason is these lines behave differently import java.security.*; import java.util.*; public class a { static public void main(String[] args) throws Exception { Permission p = new PropertyPermission("java.version", "read"); ProtectionDomain d = a.cla

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-21 Thread Mikhail Loenko
No The reason is these lines behave differently import java.security.*; import java.util.*; public class a { static public void main(String[] args) throws Exception { Permission p = new PropertyPermission("java.version", "read"); ProtectionDomain d = a.class.getProtectionDomain(

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-21 Thread Paulex Yang
Andrew Zhang wrote: Hi all, I noticed that Harmony security manager throws unexpected security exception even when policy file allows the permission. I have raised HARMONY-1242( http://issues.apache.org/jira/browse/HARMONY-1242) for record. Would anybody help have a look? Thanks! Seems Secur

Re: [classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-21 Thread Mikhail Loenko
Looking 2006/8/22, Andrew Zhang <[EMAIL PROTECTED]>: Hi all, I noticed that Harmony security manager throws unexpected security exception even when policy file allows the permission. I have raised HARMONY-1242( http://issues.apache.org/jira/browse/HARMONY-1242) for record. Would anybody help h

[classlib][security] SecurityManager.checkPropertyAccess(String) bug?

2006-08-21 Thread Andrew Zhang
Hi all, I noticed that Harmony security manager throws unexpected security exception even when policy file allows the permission. I have raised HARMONY-1242( http://issues.apache.org/jira/browse/HARMONY-1242) for record. Would anybody help have a look? Thanks! On 8/21/06, Andrew Zhang (JIRA)