User Pawel Piatkowski - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T01:13:05Zhttp://stackoverflow.com/feeds/user/35281http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/762459/how-to-disable-java-security-manager1How to disable Java security manager?Pawel Piatkowski2009-04-17T22:40:34Z2009-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#7639590Answer by Pawel Piatkowski for How to disable Java security manager?Pawel Piatkowski2009-04-18T19:00:44Z2009-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-member8C++: undefined reference to static class memberPawel Piatkowski2008-11-07T17:39:56Z2008-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 <vector>
class Foo {
public:
static const int MEMBER = 1;
};
int main(){
vector<int> 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#2729420Answer by Pawel Piatkowski for C++: undefined reference to static class memberPawel Piatkowski2008-11-07T17:52:26Z2008-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-managerComment by Pawel Piatkowski on How to disable Java security manager?Pawel Piatkowski2009-04-18T16:04:58Z2009-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#762989Comment by Pawel Piatkowski on How to disable Java security manager?Pawel Piatkowski2009-04-18T16:02:04Z2009-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-managerComment by Pawel Piatkowski on How to disable Java security manager?Pawel Piatkowski2009-04-18T15:32:17Z2009-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#762618Comment by Pawel Piatkowski on How to disable Java security manager?Pawel Piatkowski2009-04-18T14:32:38Z2009-04-18T14:32:38ZDoesn't work :/ thanks anywayhttp://stackoverflow.com/questions/762459/how-to-disable-java-security-manager/762494#762494Comment by Pawel Piatkowski on How to disable Java security manager?Pawel Piatkowski2009-04-17T23:09:35Z2009-04-17T23:09:35ZThat 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#272942Comment by Pawel Piatkowski on C++: undefined reference to static class memberPawel Piatkowski2008-11-08T12:32:39Z2008-11-08T12:32:39Zthanks :)
10 characters min rule is annoying ;)http://stackoverflow.com/questions/272900/c-undefined-reference-to-static-class-memberComment by Pawel Piatkowski on C++: undefined reference to static class memberPawel Piatkowski2008-11-08T12:30:10Z2008-11-08T12:30:10Zcheers :)
10 character min rule is sometimes annoying ;)