How to accept resolv on all hosts?
Hi,
My web application is running under a security policy and I don't know how to write a rule to allow the application to resolve all host names. Is it possible to write a policy rule like:
grant codeBase"file:/usr/local/webapps/myapp/-"{
permission java.net.SocketPermission"*","resolve";
....
};
According to the SocketPermission javadoc, the "*" is only allowed at the left of a domain suffix and this former syntax is not supported.
How can I write such a rule?
Thanks for any hint.

