Cisco Cisco Process Orchestrator 3.0 Guida Utente

Pagina di 62
 
Runtime User Web Service 
This Web service allows users to create, update, and view specific runtime users in Cisco Process Orchestrator.  
The WSDL for the Runtime User Web service is 
http://<server>:<port>/WS/RuntimeUser?wsdl
.  
Creating Runtime Users  
The following topics describe how to create runtime users in Cisco Process Orchestrator. 
CreateClientCertificateUserConfiguration 
Specifies the user administrative credentials required to configure client certificates 
Validate (boolean)—indicates if the runtime user credentials are validated  
RawData (string)—raw data of the certificate 
Note: The RawData is expected to be a Base64 string returned by the following sequence of calls in C#:  
     X509Certificate2 cert = new X509Certificate2(filePath, password,X509KeyStorageFlags.Exportable);  
     byte[] bytes = cert.Export(X509ContentType.Pfx, ""); 
     string rawDataString = Convert.ToBase64String(bytes); 
UserName (string)—user name that will be associated with this user object 
Name (string)—display name of the runtime user 
Password (string)—password for this user account 
Description (string)—text that describes the runtime user 
string 
CreateCspUser 
Specifies the credentials required to create a CSP runtime user 
Validate (boolean)—indicates if the runtime user credentials are validated  
Authorization APID (string)—authorization APID of a CSP user from a CSP server 
UserName (string)—user name that will be associated with this user object 
Name (string)—display name of the runtime user 
Password (string)—password for this user account 
Description (string)—text that describes the object 
string