Re: Set the effective user ID of the Java process.

2017-09-11 Thread Jonathan Yu
> > > >> Hello. > >> > >> Please explain someone why the Java API has not yet implemented a method > >> that allows you to set the effective user ID of the Java process. > >> > >> To accomplish this simple task, you have to make so

Re: Set the effective user ID of the Java process.

2017-09-11 Thread Andrew Haley
On 11/09/17 09:29, DoWhile ForEach wrote: > > Please explain someone why the Java API has not yet implemented a method > that allows you to set the effective user ID of the Java process. Because it's tricky to do in Java, but trivial to do in C and then use the invocation API? --

Re: Set the effective user ID of the Java process.

2017-09-11 Thread dalibor topic
2017 at 9:29 AM, DoWhile ForEach wrote: Hello. Please explain someone why the Java API has not yet implemented a method that allows you to set the effective user ID of the Java process. To accomplish this simple task, you have to make some workarounds. A striking example of such workarounds is j

Re: Set the effective user ID of the Java process.

2017-09-11 Thread Dmitrii Kashin
meone why the Java API has not yet implemented a method >> that allows you to set the effective user ID of the Java process. >> >> To accomplish this simple task, you have to make some workarounds. >> A striking example of such workarounds is jsvc tool from the Apache >>

Re: Set the effective user ID of the Java process.

2017-09-11 Thread bruno ais
plemented a method > that allows you to set the effective user ID of the Java process. > > To accomplish this simple task, you have to make some workarounds. > A striking example of such workarounds is jsvc tool from the Apache > commons-daemon project for Tomcat server: > https:

Set the effective user ID of the Java process.

2017-09-11 Thread DoWhile ForEach
Hello. Please explain someone why the Java API has not yet implemented a method that allows you to set the effective user ID of the Java process. To accomplish this simple task, you have to make some workarounds. A striking example of such workarounds is jsvc tool from the Apache commons-daemon