|
 |
asp_web_howto thread: component security
Message #1 by "Morgan, Rob" <Rob.Morgan@o...> on Thu, 27 Sep 2001 08:17:41 -0400
|
|
Hey all,
I'm writing a few components, which have public functions, and I'm putting
the components on servers which asp programms will have access to. What is
the best way to set security on the component so that only certain asp
programs can use the components. I don't want to open the functions to
every programmer.
Rob
Message #2 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Thu, 27 Sep 2001 13:27:37 +0100
|
|
If you set up MTS roles, that means only the registered users of the
specified applications will be able to use the components. There would then
be no point in other developers using the components for other applications,
as their users would not have permissions to run the methods of the
components.
-----Original Message-----
From: Morgan, Rob [mailto:Rob.Morgan@o...]
Sent: 27 September 2001 13:18
To: ASP Web HowTo
Subject: [asp_web_howto] component security
Hey all,
I'm writing a few components, which have public functions, and I'm putting
the components on servers which asp programms will have access to. What is
the best way to set security on the component so that only certain asp
programs can use the components. I don't want to open the functions to
every programmer.
Rob
Message #3 by "Morgan, Rob" <Rob.Morgan@o...> on Thu, 27 Sep 2001 08:47:51 -0400
|
|
Thanks,
I'll have to look up the specifics on MTS for this. When the
component gets install/configured do you think I might be able to set up MTS
programically with the groups/users? Or is this only a manual operation?
Rob
-----Original Message-----
From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
Sent: Thursday, September 27, 2001 8:28 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: component security
If you set up MTS roles, that means only the registered users of the
specified applications will be able to use the components. There would then
be no point in other developers using the components for other applications,
as their users would not have permissions to run the methods of the
components.
-----Original Message-----
From: Morgan, Rob [mailto:Rob.Morgan@o...]
Sent: 27 September 2001 13:18
To: ASP Web HowTo
Subject: [asp_web_howto] component security
Hey all,
I'm writing a few components, which have public functions, and I'm putting
the components on servers which asp programms will have access to. What is
the best way to set security on the component so that only certain asp
programs can use the components. I don't want to open the functions to
every programmer.
Rob
Message #4 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Thu, 27 Sep 2001 14:39:27 +0100
|
|
the only way that i know how to do it it through the MMC, but its entirely
possible that there is a way of doing it through the command line, in which
case you could write a bat file
-----Original Message-----
From: Morgan, Rob [mailto:Rob.Morgan@o...]
Sent: 27 September 2001 13:48
To: ASP Web HowTo
Subject: [asp_web_howto] RE: component security
Thanks,
I'll have to look up the specifics on MTS for this. When the
component gets install/configured do you think I might be able to set up MTS
programically with the groups/users? Or is this only a manual operation?
Rob
-----Original Message-----
From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
Sent: Thursday, September 27, 2001 8:28 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: component security
If you set up MTS roles, that means only the registered users of the
specified applications will be able to use the components. There would then
be no point in other developers using the components for other applications,
as their users would not have permissions to run the methods of the
components.
-----Original Message-----
From: Morgan, Rob [mailto:Rob.Morgan@o...]
Sent: 27 September 2001 13:18
To: ASP Web HowTo
Subject: [asp_web_howto] component security
Hey all,
I'm writing a few components, which have public functions, and I'm putting
the components on servers which asp programms will have access to. What is
the best way to set security on the component so that only certain asp
programs can use the components. I don't want to open the functions to
every programmer.
Rob
Message #5 by "TomMallard" <mallard@s...> on Thu, 27 Sep 2001 09:12:01 -0700
|
|
You might try controlling things using ADSI for the folder where it's
installed.
A way I've handled reuse for a network for a package is to add what amounts
to a developer role for the package. This is a group for the domain, easy to
add or update any user or group.
tom mallard
seattle
----- Original Message -----
From: "Alex Shiell, ITS, EC, SE" <alex.shiell@s...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Thursday, September 27, 2001 6:39 AM
Subject: [asp_web_howto] RE: component security
> the only way that i know how to do it it through the MMC, but its entirely
> possible that there is a way of doing it through the command line, in
which
> case you could write a bat file
>
> -----Original Message-----
> From: Morgan, Rob [mailto:Rob.Morgan@o...]
> Sent: 27 September 2001 13:48
> To: ASP Web HowTo
> Subject: [asp_web_howto] RE: component security
>
>
> Thanks,
> I'll have to look up the specifics on MTS for this. When the
> component gets install/configured do you think I might be able to set up
MTS
> programically with the groups/users? Or is this only a manual operation?
>
> Rob
>
> -----Original Message-----
> From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
> Sent: Thursday, September 27, 2001 8:28 AM
> To: ASP Web HowTo
> Subject: [asp_web_howto] RE: component security
>
>
> If you set up MTS roles, that means only the registered users of the
> specified applications will be able to use the components. There would
then
> be no point in other developers using the components for other
applications,
> as their users would not have permissions to run the methods of the
> components.
>
> -----Original Message-----
> From: Morgan, Rob [mailto:Rob.Morgan@o...]
> Sent: 27 September 2001 13:18
> To: ASP Web HowTo
> Subject: [asp_web_howto] component security
>
>
> Hey all,
>
> I'm writing a few components, which have public functions, and I'm putting
> the components on servers which asp programms will have access to. What
is
> the best way to set security on the component so that only certain asp
> programs can use the components. I don't want to open the functions to
> every programmer.
>
> Rob
|
|
 |