Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dynamically Creating Security Roles

Status
Not open for further replies.

GreatDreamer

Programmer
Feb 11, 2006
15
CA
Does anyone know how to Dynamically Create Security Roles in Actuate?
 
The answer is yes, but you'll have to write a small application to it. I'm guessing you want to create roles in batch more. The IDAPI (SOAP interface) supports a create role service. Below is a cut from the manual.

Check out the API manual.


Request "CreateRole"
schema
<xsd:element name="CreateRole">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Role" type="actu:Role"/>
<xsd:element name="IgnoreDup" type="xsd:boolean"
minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>

Request
elements
Role

The properties of the role to create. A name is required.
IgnoreDup Specifies whether to report an error when creating the role if one with the
same name already exists. Actuate iServer always rejects a duplicate request
regardless of the IgnoreDup setting. If True, Actuate iServer does not report an
error. If False, Actuate iServer reports an error. The default value is False.
Description CreateRole creates a role. CreateRole is available only to users with the
Administrator role.

 
Can you be more specific about what API your are refering to. Are you refering to Actuate API or SOAP API? Also manual you are refering to, I am not sure which manual, actuate manual?
 
The SOAP API.
There's a manual that covers Actuate APIs.
The Actuate iServer has a SOAP API. ANything you can do from Management console, you can do from your own client prog using the SOAP API.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top