James MV
James MV

Reputation: 8717

Tomcat6 permissions?

Just got my tomcat server working online and trying out a few tutorials, I'm getting this error:

java.security.AccessControlException: access denied (java.util.PropertyPermission http.strictPostRedirect read)

When working with this tutorial:

http://www.frank-buss.de/echoservlet/index.html

Could someone advise me in simple terms what needs to be done to rectify this?

TIA

Upvotes: 1

Views: 200

Answers (1)

k.honsali
k.honsali

Reputation: 726

Salaam,

Try using this context definition

<Context path="/echo" docBase="echo" reloadable="true" privileged="true" />

else, you may have to setup tomcat security manager :s

Upvotes: 1

Related Questions