dev@glassfish.java.net

Re: "file:${com.sun.aas.installRoot}"

From: Ron Monzillo <Ronald.Monzillo_at_Sun.COM>
Date: Tue, 09 Sep 2008 16:25:04 -0400

Ludovic Champenois wrote:
> Ron Monzillo wrote:
>
>> for Glassfish v3, how is the value of this property established,
>> and is there an easy way to determine what it is set to (perhaps in
>> server.log, or via some command switch)?
>>
>> Ron
>
>
>
> http://localhost:8080/__asadmin/__locations
>
> on a a running server will tell you that. (change machine name/port to
> accomodate your env)
> Ludo
>
Ludo,

thanks very much.

I received a 500 status code for port 8080 so I changed the port to 4828
and got the folowing output

GlassFish __locations AdminCommand command report

Exit Code : SUCCESS
null
Domain-Root /space/monzillo/sandbox/v3-hard/b23/glassfish/domains/domain1
Base-Root /space/monzillo/sandbox/v3-hard/b23/glassfish

is Base-Root the value that shoudl correspond to the following?

  "file:${com.sun.aas.installRoot}"

I noticed that using "file:${com.sun.aas.installRoot}" as a prefix in a
codebase grant statement dod not achieve the same effect as using the
explicit code path.

iow,

grant codeBase
"file:${com.sun.aas.installRoot}/felix/bin/-" {
        permission java.security.AllPermission;
}

does not seem to grant AllPermission to the felix/bin subtree

while the following does appear to grant AllPermission to the subtree

grant codeBase
"file:/space/monzillo/sandbox/v3-hard/b23/glassfish/felix/bin/-" {
        permission java.security.AllPermission;
}

perhaps the properties are not defined at the time the server.policy
file is being Parsed.

Ron

>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe_at_glassfish.dev.java.net
>> For additional commands, e-mail: dev-help_at_glassfish.dev.java.net
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: dev-help_at_glassfish.dev.java.net
>