User Pawel Piatkowski - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:13:05Z http://stackoverflow.com/feeds/user/35281 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager 1 How to disable Java security manager? Pawel Piatkowski 2009-04-17T22:40:34Z 2009-04-21T05:15:08Z <p>Is there any way to completely disable Java security manager? <br/></p> <p>I'm experimenting with source code of db4o. It uses reflection to persist objects and it seems that security manager doesn't allow reflection to read and write private or protected fields.</p> <p>My code:</p> <pre><code>public static void main(String[] args) throws IOException { System.out.println("start"); new File( DB_FILE_NAME ).delete(); ObjectContainer container = Db4o.openFile( DB_FILE_NAME ); String ob = new String( "test" ); container.store( ob ); ObjectSet result = container.queryByExample( String.class ); System.out.println( "retrieved (" + result.size() + "):" ); while( result.hasNext() ) { System.out.println( result.next() ); } container.close(); System.out.println("finish"); } </code></pre> <p>Output:</p> <pre> start [db4o 7.4.68.12069 2009-04-18 00:21:30] AccessibleObject#setAccessible() is not available. Private fields can not be stored. retrieved (0): finish </pre> <p><br/> <a href="http://developer.db4o.com/forums/permalink/10482/10482/ShowThread.aspx" rel="nofollow"> This thread </a> suggests modifying java.policy file to allow reflection but it doesn't seem to work for me.</p> <p>I'm starting JVM with arguments<br /> <code>-Djava.security.manager -Djava.security.policy==/home/pablo/.java.policy</code> <br/> so specified policy file will be the only policy file used</p> <p>The file looks like this:</p> <pre> grant { permission java.security.AllPermission; permission java.lang.reflect.ReflectPermission "suppressAccessChecks"; }; </pre> <p>I spent last 3 hrs on this and don't have any ideas how to make this work. Any help appreciated.</p> http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager/763959#763959 0 Answer by Pawel Piatkowski for How to disable Java security manager? Pawel Piatkowski 2009-04-18T19:00:44Z 2009-04-18T19:00:44Z <p>Problem solved. Well, sort of. Problem does not occur with db4o 7.8. </p> http://stackoverflow.com/questions/272900/c-undefined-reference-to-static-class-member 8 C++: undefined reference to static class member Pawel Piatkowski 2008-11-07T17:39:56Z 2008-11-07T19:01:19Z <p>Hey,<br /> Can anyone explain why following code won't compile? At least on g++ 4.2.4.<br /> And more interesting, why it will compile when I cast MEMBER to int?</p> <pre><code>#include &lt;vector&gt; class Foo { public: static const int MEMBER = 1; }; int main(){ vector&lt;int&gt; v; v.push_back( Foo::MEMBER ); // undefined reference to `Foo::MEMBER' v.push_back( (int) Foo::MEMBER ); // OK return 0; } </code></pre> http://stackoverflow.com/questions/272900/c-undefined-reference-to-static-class-member/272942#272942 0 Answer by Pawel Piatkowski for C++: undefined reference to static class member Pawel Piatkowski 2008-11-07T17:52:26Z 2008-11-07T17:52:26Z <p>@JaredPar I did. I copypasted the code but anything in angle brackets just disappears. Don't know why.</p> http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager Comment by Pawel Piatkowski on How to disable Java security manager? Pawel Piatkowski 2009-04-18T16:04:58Z 2009-04-18T16:04:58Z @Tom: I can call setAccesible in my code which is weird because my code is a class I added in db4o sources. Yet, the same db4o seems to not be able to access setAccesible. Maybe it's a bug in db4o? http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager/762989#762989 Comment by Pawel Piatkowski on How to disable Java security manager? Pawel Piatkowski 2009-04-18T16:02:04Z 2009-04-18T16:02:04Z @Kevin: I can call setAccesible for private fields in my own code. And by 'my own code' I mean a class I added to db4o sources. http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager Comment by Pawel Piatkowski on How to disable Java security manager? Pawel Piatkowski 2009-04-18T15:32:17Z 2009-04-18T15:32:17Z @Brian: double '=' means that specified file is the only policy file used. Single '=' means that specified file will be used along with standard policy files. At least that's what've read. http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager/762618#762618 Comment by Pawel Piatkowski on How to disable Java security manager? Pawel Piatkowski 2009-04-18T14:32:38Z 2009-04-18T14:32:38Z Doesn't work :/ thanks anyway http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager/762494#762494 Comment by Pawel Piatkowski on How to disable Java security manager? Pawel Piatkowski 2009-04-17T23:09:35Z 2009-04-17T23:09:35Z That doesn't work. Neither does not passing any arguments to JVM. BTW '==' means that specified file will be the only file used. Single '=' means that the file will be used along with standard policy files. At least that's what I've read. http://stackoverflow.com/questions/272900/c-undefined-reference-to-static-class-member/272942#272942 Comment by Pawel Piatkowski on C++: undefined reference to static class member Pawel Piatkowski 2008-11-08T12:32:39Z 2008-11-08T12:32:39Z thanks :) 10 characters min rule is annoying ;) http://stackoverflow.com/questions/272900/c-undefined-reference-to-static-class-member Comment by Pawel Piatkowski on C++: undefined reference to static class member Pawel Piatkowski 2008-11-08T12:30:10Z 2008-11-08T12:30:10Z cheers :) 10 character min rule is sometimes annoying ;)