Silk Performance Manager API Help

Size: px
Start display at page:

Download "Silk Performance Manager API Help"

Transcription

1 Silk Performance Manager 18.5 API Help

2 Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK Copyright Micro Focus. All rights reserved. MICRO FOCUS, the Micro Focus logo, and Silk Performance Manager are trademarks or registered trademarks of Micro Focus IP Development Limited or its subsidiaries or affiliated companies in the United States, United Kingdom, and other countries. All other marks are the property of their respective owners

3 Contents Introduction 1 Chapter 1 Setting up Web Services 3 Overview 3 Testing Your Configuration 4 Chapter 2 Web Service Session Handling 5 Creating a Session Via Authentication 5 Session Handling via SOAP 6 Ending a Session 6 Chapter 3 Web Service Overview 7 Overview 7 Web Service "sccsystem" 8 Web Service "sccentities" 8 Web Service "sccadminctrl" 13 Web Service "sventities" 13 Web Service "svdata" 17 Web Service "svmonconfctrl" 20 Chapter 4 Web Service API Documentation 23 Overview 23 Exceptions 23 Web Service "sccsystem" 24 Class description 24 long logonuser(string username, String plainpwd) 24 String encryptpassword(long sessionid, String plainpwd) 25 String converttoreadabletime(long time) 25 long convertfromreadabletime(string time) 25 Silk Performance Manager API Help i

4 AppModule[] getapplicationmodules(long sessionid) 26 Web Service "sccentities" 26 Class description 26 Project[] getprojects(long sessionid) 29 Project[] getprojectsforuser( ) 29 Location[] getlocations(long sessionid) 29 Location[] getlocationsforproject(long sessionid, int projectid) 30 public Project[] getallprojects(long sessionid, String projectname) 30 public Project getprojectbyid(long sessionid, int projectid) 30 public int createproject(long sessionid, Project project) 30 public void updateproject(long sessionid, Project project) 31 public void deleteprojects(long sessionid, int[] projectids) 31 public void activateprojects(long sessionid, int[] projectids) 31 public void deactivateprojects(long sessionid, int[] projectids) 31 public LocationDetails getlocationdetails(long sessionid, int locationid) 32 public int createlocation(long sessionid, LocationDetails locationdetails) 32 public void updatelocation(long sessionid, LocationDetails locationdetails) 32 public void setproxyusernameandpasswordforlocation(long sessionid, int locationid, String proxyusername, String proxypassword) 33 public void deletelocations(long sessionid, int[] locationids) 33 public User[] getusers(long sessionid, String login) 33 public void deleteusers(long sessionid, int[] useridstodelete) 34 public UserDetails getuserdetails(long sessionid, int userid) 34 public int createuser(long sessionid, UserDetails userdetails) 34 public void updateuser(long sessionid, UserDetails userdetails) 34 public int createusergroup(long sessionid, UserGroup usergroup) 35 public UserGroup getgroupbyname(long sessionid, String groupname) 35 public UserGroup getgroupbyid(long sessionid, int groupid) 35 public UserGroup[] getallusergroups(long sessionid) 35 public void updateusergroup(long sessionid, Usergroup usergroup) 36 public void deleteusergroup(long sessionid, int groupid) 36 public UserGroupMembership getmembershipsofgroup(long sessionid, int groupid) 36 public UserGroupMembership getmembershipsofuser(long sessionid, int userid) 36 public UserGroupMembership getallmemberships(long sessionid) 37 public void updatemembershipsofgroup(long sessionid, int groupid, UserGroupMembership[] memberships) 37 public void updatemembershipsofuser(long sessionid, int userid, User- ii Silk Performance Manager API Help

5 GroupMembership[] memberships) 37 public Role[] getallroles(long sessionid) 37 public Role getrolebyid(long sessionid, int roleid) 38 public void setpassword(long sessionid, int userid, String password) 38 public void encryptandsetpassword(long sessionid, int userid, String password) 38 public int createexecserver(long sessionid, ExecServer execserver) 38 public ExecServer getexecserverbyid(long sessionid, int execserverid) 39 public ExecServer[] getexecserversoflocation(long sessionid, int locationid) 39 public void updateexecserver(long sessionid, ExecServer execserver) 39 public void activateexecserver(long sessionid, int execserverid, int locationid) 40 public void deactivateexecserver(long sessionid, int execserverid) 40 public String[] getallresourcetags(long sessionid, int locationid, int execserverid) 40 public void addresourcetag(long sessionid, int locationid, int execserver- Id, String resourcetag) 40 public void removeresourcetag(long sessionid, int locationid, int exec- ServerId, String resourcetag) 41 public EssentialDescription[] getallessentials(long sessionid) 41 public EssentialGroup[] getessentialgroups(long sessionid) 41 public EssentialSubGroup[] getessentialsubgroups(long sessionid, int essentialgroupid) 42 public EssentialDescription[] getessentials(long sessionid, int parentid) 42 public FilePoolEntry[] getfilepoolentries(long sessionid, int projectid) 42 public boolean addlocationtoproject(long sessionid, int projectid, int locationid) 42 public boolean removelocationfromproject(long sessionid, int projectid, int locationid) 43 boolean ismixedmodeauthentication(long sessionid, int userid) 43 void setmixedmodeauthentication(long sessionid, int userid, boolean usemixedmode) 43 Web Service "sccadminctrl" 44 void setprojectstate(long sessionid, int projectid, boolean active) 44 Web Service "sventities" 44 Class description 44 Monitor[] getmonitors(long sessionid, int projectid) 48 Server[] getserversforproject(long sessionid, int projectid) 48 Transaction[] gettransactionsforproject( ) 48 Silk Performance Manager API Help iii

6 Transaction[] gettransactionsformonitor( ) 49 boolean TransactionIsReal(long sessionid, int transactionid) 49 Location[] getresultlocations(long sessionid, int userid) 49 ClientSideExecutionSet[] getclientsideexecutionsets( ) 50 ServerSideExecutionSet[] getserversideexecutionsets( ) 50 Measure[] getmeasures(long sessionid, int execsetid) 50 String[] getmeasurenamesforproject(long sessionid, int projectid) 50 ExecutionLogEntry[] getexecutionlog( ) 51 public Condition[] getconditions(long sessionid, int projectid) 52 public Condition getcondition(long sessionid, int conditionid) 53 public int createcondition(long sessionid, String name, int projectid, int transactionid, String measurement, String operator, double thresholdvalue, String measuretype, short locationrestriction) 53 public boolean updatecondition(long sessionid, Condition condition) 54 public boolean deletecondition(long sessionid, int conditionid) 54 public Rule[] getrules(long sessionid, int projectid) 54 public Rule getrule(long sessionid, int ruleid) 54 public int createrule(long sessionid, String name, int projectid, String actiontype, boolean active, short recurthreshold, long recur- Timespan, String severity, int conditionid) 55 public int createdefaultrule(long sessionid, int monitorid, String[] measures) 55 public int addruleexpressionpart(long sessionid, int ruleid, String operator, int conditionid) 56 public RuleExpressionPart[] getruleexpressionparts(long sessionid, int ruleid) 56 public boolean deleteruleexpressionpart(long sessionid, int ruleid, int position) 56 public boolean updateruleexpressionpart(long sessionid, int ruleid, int position, int conditionid, String operator) 57 public boolean moveruleexpressionpart(long sessionid, int ruleid, int position, int destination) 57 public boolean updaterule(long sessionid, int id, String name, boolean active, short recurthreshold, long recurtimespan, String severity) 58 public boolean deleterule(long sessionid, int ruleid) 58 public RuleIncident[] getruleincidents(long sessionid, int projectid) 58 public RuleIncident[] getruleincidents(long sessionid, int projectid, long starttimeutc, long endtimeutc) 59 public CustomIncident[] getcustomincidents(long sessionid, int projectid) 59 public CustomIncident[] getcustomincidents(long sessionid, int projectid, long starttimeutc, long endtimeutc) 59 iv Silk Performance Manager API Help

7 public CustomIncident getcustomincident(long sessionid, int customincidentid) 60 public int createcustomincident(long sessionid, String name, String description, int projectid, boolean invalidateinreports, String severity, long beginsat, long endsat) 60 public boolean updatecustomincident(long sessionid, CustomIncident customincident) 61 public boolean deletecustomincident(long sessionid, int customincidentid) 61 public String getpageurl(long sessionid, int projectid, long begintime, long endtime, int[] transactions, int[] locations, String report, String[] params) 61 public String getpageurl(long sessionid, int projectid,string report, String[] params) 67 public int createrulewithessentialaction(long sessionid, String name, int projectid, String essential, boolean active, short recurthreshold, long recurtimespan, String severity, int conditionid) 68 public EssentialDescription[] getactionessentials(long sessionid, int projectid) 69 public ActionSetting[] getactionsettings(long sessionid, int ruleid) 69 public ActionSettingSpec getactionsettingspec(long sessionid, int ruleid, String setting) 69 public String[] getactiontypeids() 69 public int[] getalertinglocations(long sessionid, int projectid) 70 public String[] getprofiles(long sessionid, int projectid, String essential- Name) 70 public void updateactionsettings(long sessionid, int ruleid, String action- Type, ActionSetting[] settings) 70 public void updateessentialactionsettings(long sessionid, int ruleid, String essential, ActionSetting[] settings) 71 Web Service "svdata" 71 Class description 71 DataPoint[] getclientmeasuredata( ) 72 DataPoint[] getclientmeasuredataacrossprojects( ) 73 DataPoint[] getservermeasuredata( ) 74 DataPoint[] getservermeasuredataacrossprojects( ) 75 DataPoint[] getmeasuredata( ) 76 DataPoint[] getlastclientdata( ) 77 DataPoint[] getlastserverdata( ) 78 DataPoint[] getlastdata( ) 78 DataPoint mergeseries(datapoint[] series) 79 Web Service "svmonconfctrl" 79 Class description 79 Silk Performance Manager API Help v

8 String runmonitorsinproject( ) 81 String setmonitorstate( ) 81 String runmonitor(long sessionid, int monitorid) 82 Schedule getprojectschedule( ) 82 Schedule getmonitorschedule(long sessionid, int monitorid) 82 String redefineschedule(long sessionid, Schedule schedule) 83 String adddefiniterun(long sessionid, int scheduleid, DefiniteRun definiterun) 83 RunExclusion[] getscheduleexclusions( ) 83 String addscheduleexclusion( ) 84 String removescheduleexclusion( ) 84 public void makeschedulelocal(long sessionid, int monitorid) 84 public void removeschedule(long sessionid, int monitorid) 85 public void setlocationsofschedule(long sessionid, int scheduleid, int[] locationids) 85 public int[] getlocationsofschedule(long sessionid, int scheduleid) 85 public int createmonitor(long sessionid, int projectid, String essential- Name, String name, boolean activate) 86 public int createmonitor(long sessionid, int projectid, String essential- Name, String name, String testscriptname, boolean activate) 86 public int createmonitor(long sessionid, int projectid, String essential- Name, String name, String testscriptname, String usergroup- Name, boolean activate) 87 public MonitorSettingSpec getmonitorsettingspec(long sessionid, int monitorid, String settingname) 87 public MonitorSetting[] getmonitorsettings(long sessionid, int monitorid) 88 public void updatemonitorsettings(long sessionid, int monitorid, MonitorSetting[] monitorsettings) 88 public void deletemonitor(long sessionid, int monitorid) 88 public String[] gettestscripts(long sessionid, int projectid, String essentialname) 89 public String[] getusergroupnames(long sessionid, int projectid, String essentialname, String scriptname) 89 Chapter 5 Accessing Web Services via Java 91 Introduction 91 Generating Stub Classes 92 Instantiating Stub Classes and Invoking Methods 93 Sample Transaction 93 Index 95 vi Silk Performance Manager API Help

9 Introduction About this manual In addition to offering access via HTML Web pages, Silk Performance Manager provides an additional option for querying data and applying configuration changes: Web services. Web services are available through SOAP calls (standardized XML messages) that are sent and received via a frontend server using the HTTP protocol, allowing SOAP-enabled clients to get fast, direct access to Performance Manager data and configuration settings. Silk Performance Manager API Help 1

10 INTRODUCTION 2 Silk Performance Manager API Help

11 1 Setting 1Chapter up Web Services Introduction What you will learn This chapter explains how to set up Web Services. This chapter contains the following sections: Section Page Overview 3 Testing Your Configuration 4 Overview Web Services don t require setup; they are enabled by default on each frontend server. For example, if is the URL that you use to access Silk Performance Manager, then is the base URL you use to access available Web Services. When you access the base URL using your browser, you are presented with a simple HTML list of all available Web Services. This list is provided by Apache Axis the SOAP stack that Silk Performance Manager uses ( ws.apache.org/axis/). This basic Web page provides links to WSDL (Web Service Description Language) standardized XML files, where each file describes the interface of a single Web Service. These files are not human readable. For this reason, SOAP-enabled clients (e.g., Silk Performer Java Explorer) read WSDL files and thereby retrieve information required for invoking methods on corresponding Web Services. Silk Performance Manager API Help 3

12 1 SETTING UP WEB SERVICES Testing Your Configuration Testing Your Configuration In general, SOAP clients use HTTP POST requests for method invocation of Web Services. However when method calls are not overly complex, you can also use GET requests for invocation. You can test your Performance Manager Web Service configuration directly from your Web browser (browsers generally use HTTP GET requests). The simple list of Web Services mentioned in the Overview section contains the service "Version" (an Axis service), which provides a single method "getversion()". You can invoke this method directly from your browser using the following URL format: The response you receive consists of an XML file (also not human readable) that contains the return value of the method an Axis version information string similar to: Apache Axis version: 1.1 Built on Jun 13, 2003 (09:19:43 EDT) Directly from your browser, you can also call Web Service methods that take parameters. If your installation starts and is properly connected to a database, you can login to Silk Performance Manager through a Web Service call. If you haven't changed the default login credentials of your Performance Manager installation, you can use the username "admin" and the password "admin". Use method "logonuser" of Web Service "sccsystem": sccsystem?method=logonuser&username=admin&plainpwd=admin When the login credentials you supply are correct, the response contains a session identifier that can be used in subsequent calls. The response should contain a line that resembles the following: <logonuserreturn xsi:type="xsd:long"> </ logonuserreturn> 4 Silk Performance Manager API Help

13 2 Web 2Chapter Service Session Handling What you will learn This chapter contains the following sections: Section Page Creating a Session Via Authentication 5 Session Handling via SOAP 6 Ending a Session 6 Creating a Session Via Authentication Silk Performance Manager data is protected against unauthorized access. Login credentials must be provided before data access is granted. This is true not only when working with the HTML front-end, but also for communication with Performance Manager via SOAP calls. The first step in querying data, or applying configuration changes for Performance Manager, is authentication. When authentication is successful, a user session is created that allows execution of subsequent operations in the context of that user login. When accessing Performance Manager via a Web browser, session information is not visible to the user; the browser (using cookies) handles session information. In contrast to using Performance Manager via HTML, SOAP calls must handle information manually. Silk Performance Manager API Help 5

14 2 WEB SERVICE SESSION HANDLING Session Handling via SOAP Session Handling via SOAP Authentication via Web Services is done through the SOAP call "logonuser()" of Web Service "sccsystem" (In the Testing Your Configuration section you'll find a sample that shows you how to invoke this method directly from your browser). The method call returns a session identifier that references the session created on the server and at the same time is used as a key to access Performance Manager in the context of that session. Each subsequent SOAP call that requires a session for execution takes such an identifier as one of its parameters, checks its validity, and executes in the context of the corresponding session. The following (Java) code sample shows simple access to Performance Manager via Web Services and demonstrates use of the session identifier: long sessionid = sccsystem.logonuser("admin", "admin"); Project[] projects = sccentities.getprojects(sessionid); Ending a Session A Performance Manager session created via Web Services cannot be ended explicitly. Instead, sessions end automatically when they're not used for a period of time. As soon as a session times out on a server, subsequent SOAP calls attempting to use the session throw exceptions. 6 Silk Performance Manager API Help

15 3 Web 3Chapter Service Overview What you will learn This chapter contains the following sections: Section Page Overview 7 Web Service "sccsystem" 8 Web Service "sccentities" 8 Web Service "sccadminctrl" 13 Web Service "sventities" 13 Web Service "svdata" 17 Web Service "svmonconfctrl" 20 Overview Available functionality is provided by the following Web Services: sccsystem sccentities sccadminctrl sventities svdata svmonconfctrl Silk Performance Manager API Help 7

16 3 WEB SERVICE OVERVIEW Web Service "sccsystem" This chapter offers a brief description of each of these services, lists the location of the corresponding WSDL documents, and gives a short description of the methods that are available with each service. For more detailed descriptions, see Chapter 5. The descriptions use pseudo-code syntax (closely related to Java syntax). Web Service "sccsystem" This is the root service. It provides an authentication method and simple utility methods. The service's WSDL file is available at /services/sccsystem?wsdl. long logonuser(string username, String plainpwd) Logs on with given username and password. String encryptpassword(long sessionid, String plainpwd) Takes a clear text password and returns the encrypted version. String converttoreadabletime(long time) Converts the given time (number of milliseconds since midnight, January 1, 1970 UTC) into a human readable string representation. long convertfromreadabletime(string time) Converts the given date/time to the number of milliseconds since midnight, January 1, 1970 UTC. AppModule[] getapplicationmodules(long sessionid) Retrieves the list of installed application modules (Performance Manager, etc.). Web Service "sccentities" This service provides read access to the two main entities that exist on the SCA level Project and Location. The service's WSDL file is available at /services/sccentities?wsdl. Project[] getprojects(long sessionid) Retrieves all defined projects. Project[] getprojectsforuser( long sessionid, int userid, int appmoduleid) 8 Silk Performance Manager API Help

17 3 WEB SERVICE OVERVIEW Web Service "sccentities" Retrieves all defined projects that meet the specified filter criteria. Location[] getlocations(long sessionid) Retrieves all defined locations. Location[] getlocationsforproject( long sessionid, int projectid) Retrieves all locations associated with the given project. void activateexecserver(long sessionid, int execserverid, int locationid) Activates an existing execution server if it is not already active. void activateprojects(long sessionid, int[] projectids) Activates the projects with the given Ids. boolean addlocationtoproject(long sessionid, int projectid, int locationid) Adds an association from a location to a project. void addresourcetag(long sessionid, int locationid, int execserverid, String resourcetag) Adds resource tags to an execution server. int createexecserver(long sessionid, ExecServer execserver) Creates a new executionsever for the given properties. int createlocation(long sessionid, LocationDetails locationdetails) Creates a new location with the data provided by the location details. int createproject(long sessionid, Project project) Creates a new Project with the given properties. int createuser(long sessionid, UserDetails userdetails) Creates a new user with the data of the given userdetails - the given sessionid is ignored and the login has to be unique. void deactivateexecserver(long sessionid, int execserverid) Deactivates an existing execution server if it is active. Silk Performance Manager API Help 9

18 3 WEB SERVICE OVERVIEW Web Service "sccentities" void deactivateprojects(long sessionid, int[] projectids) Deactivates the projects with the given IDs. void deletelocations(long sessionid, int[] locationids) Deletes the location identified by the locationid (only if no execution servers exist for the location). void deleteprojects(long sessionid, int[] projectids) Deletes projects with the given Ids (if the logged in user has the right to). void deleteusers(long sessionid, int[] useridstodelete) Deletes existing users (identified by the IDs). void encryptandsetpassword(long sessionid, int userid, String password) Sets the password for the user (the password is encrypted on the server and therefore is transmitted in plain text). EssentialDescription[] getallessentials(long sessionid) Queries all Essentials. Project[] getallprojects(long sessionid, String projectname) Retrieves all projects assigned to the logged in User (or all Projects if the user is an administrator) with the given name (wildcards * and?). String[] getallresourcetags(long sessionid, int locationid, int execserverid) Retrieves all resource tags of a location. EssentialGroup[] getessentialgroups(long sessionid) Queries all Essential Groups. EssentialDescription[] getessentials(long sessionid, int parentid) Queries all essentials which are children of the given subgroup. EssentialSubGroup[] getessentialsubgroups(long sessionid, int essentialgroupid) Queries all Essential Sub Groups. 10 Silk Performance Manager API Help

19 3 WEB SERVICE OVERVIEW Web Service "sccentities" ExecServer getexecserverbyid(long sessionid, int execserverid) Retrieves the Execution Server identified by the given ID. ExecServer[] getexecserversoflocation(long sessionid, int locationid) Retrieves the execution servers of a location. FilePoolEntry[] getfilepoolentries(long sessionid, int projectid) Retrieves information about the file pool entries. LocationDetails getlocationdetails(long sessionid, int locationid) Retrieves detailed information about the Location identified by the ID. Project getprojectbyid(long sessionid, int projectid) Retrieves the project with the given ID. UserDetails getuserdetails(long sessionid, int userid) Retrieves details of a user (identified by ID). User[] getusers(long sessionid, String login) Retrieves all users matching the given login name. boolean removelocationfromproject(long sessionid, int projectid, int locationid) Removes an association from a location to a project. void removeresourcetag(long sessionid, int locationid, int execserverid, String resourcetag) Removes resource tags from an execution server. void setpassword(long sessionid, int userid, String password) Sets the password for the user - the password has to be encrypted on the client (this call is for internal use only). void setproxyusernameandpasswordforlocation(long sessionid, int locationid, String proxyusername, String proxypassword) Sets proxy username and password for a location (identified by the locationid). void updateexecserver(long sessionid, ExecServer execserver) Silk Performance Manager API Help 11

20 3 WEB SERVICE OVERVIEW Web Service "sccentities" Updates the properties of an existing execution server. void updatelocation(long sessionid, LocationDetails locationdetails) Updates an existing location (identified by the ID) with the data provided by the location details. void updateproject(long sessionid, Project project) Updates an existing Project with the given properties. void updateuser(long sessionid, UserDetails userdetails) Updates the properties of an existing user. public int createusergroup(long sessionid, UserGroup usergroup) Creates a new Usergroup. public UserGroup getgroupbyname(long sessionid, String groupname) Retrieve user group by name. public UserGroup getgroupbyid(long sessionid, int groupid) Retrieves user group by ID. public UserGroup[] getallusergroups(long sessionid) Retrieves all user groups. public void updateusergroup(long sessionid, Usergroup usergroup) Updates an existing user group. public void deleteusergroup(long sessionid, int groupid) Deletes the user group identified by ID. public UserGroupMembership getmembershipsofgroup(long sessionid, int groupid) Retrieves all memberships of the user group identified by ID. public UserGroupMembership getmembershipsofuser(long sessionid, int userid) Retrieves all memberships of the user group identified by ID. public UserGroupMembership getallmemberships(long sessionid) Retrieves all memberships. public void updatemembershipsofgroup(long sessionid, int groupid, UserGroupMembership[] memberships) Updates the memberships of a group. All UserGroupMemberships have to be of the same group. public void updatemembershipsofuser(long sessionid, int userid, UserGroupMembership[] memberships) Updates the memberships of a user. All UserGroupMemberships have to be of the same user. 12 Silk Performance Manager API Help

21 3 WEB SERVICE OVERVIEW Web Service "sventities" public Role[] getallroles(long sessionid) Retrieves all Roles. public Role getrolebyid(long sessionid, int roleid) Retrieves a Role identified by ID. boolean ismixedmodeauthentication(long sessionid, int userid) Retrieves the information whether mixed mode authentication is active for a user. void setmixedmodeauthentication(long sessionid, int userid, boolean usemixedmode) Sets the authentication mode for a user. Web Service "sccadminctrl" This service provides methods for configuring entities on the SCA level. The service's WSDL file is available at /services/sccadminctrl?wsdl. void setprojectstate(long sessionid, int projectid, boolean active) Activates or deactivates the given project. Web Service "sventities" This service provides read access to several Silk Performance Manager Performance Manager entities. The service's WSDL file is available at /services/sventities?wsdl. Monitor[] getmonitors(long sessionid, int projectid) Retrieves all monitors for a given project. String getpageurl(long sessionid, int projectid, long begintime, long endtime, int[] transactions, int[] locations, String report, String[] params) a URL (except host:port) which can be used as bookmark. String getpageurl(long sessionid, int projectid, String report, String[] params) a URL (except host:port) which can be used as bookmark. Server[] getserversforproject(long sessionid, int projectid) Silk Performance Manager API Help 13

22 3 WEB SERVICE OVERVIEW Web Service "sventities" Retrieves all infrastructure servers where monitoring data exists for a given project. Transaction[] gettransactionsforproject(long sessionid, int projectid) Retrieves all transactions for a given project. Transaction[] gettransactionsformonitor(long sessionid, int monitorid) Retrieves all transactions for a given monitor. boolean moveruleexpressionpart(long sessionid, int ruleid, int position, int destination) Move rule expression part up or down. boolean updatecondition(long sessionid, Condition condition) Updates a condition with the given values. boolean updatecustomincident(long sessionid, CustomIncident customincident) Updates a custom incident with the given values. boolean updaterule(long sessionid, int id, java.lang.string name, boolean active, short recurthreshold, long recurtimespan, java.lang.string severity) Updates a rule with the given values. boolean updateruleexpressionpart(long sessionid, int ruleid, int position, int conditionid, String operator) Update values of rule expresson part. Location[] getresultlocations(long sessionid, int userid) Retrieves all locations where monitoring data exist for a given user. Rule getrule(long sessionid, int ruleid) Query rule with given ID. RuleExpressionPart[] getruleexpressionparts(long sessionid, int ruleid) all rule expression parts for rule. RuleIncident[] getruleincidents(long sessionid, int projectid) Query all incidents for the given project. 14 Silk Performance Manager API Help

23 3 WEB SERVICE OVERVIEW Web Service "sventities" RuleIncident[] getruleincidents(long sessionid, int projectid, long starttimeutc, long endtimeutc) Query all rule incidents for the given project within given timespan. Rule[] getrules(long sessionid, int projectid) Query all rules for given project. int addruleexpressionpart(long sessionid, int ruleid, String operator, int conditionid) Adds a rule expression part to rule with ruleid as last expression part. int createcondition(long sessionid, String name, int projectid, int transactionid, String measurement, String operator, double thresholdvalue, String measuretype, short locationrestriction) Create a condition from the given parameters. int createcustomincident(long sessionid, String name, String description, int projectid, boolean invalidateinreports, String severity, long beginsat, long endsat) Create a custom incident from the given parameters. int createdefaultrule(long sessionid, int monitorid, String[] measures) Create a default rule for a monitor from the given default conditions. int createrule(long sessionid, String name, int projectid, String actiontype, boolean active, short recurthreshold, long recurtimespan, String severity, int conditionid) Create a rule from the given parameters. int createrulewithessentialaction(long sessionid, java.lang.string name, int projectid, java.lang.string essential, boolean active, short recurthreshold, long recurtimespan, java.lang.string severity, int conditionid) Create a rule from the given parameters. EssentialDescription[] getactionessentials(long sessionid, int projectid) Get all action essentials. Silk Performance Manager API Help 15

24 3 WEB SERVICE OVERVIEW Web Service "sventities" ActionSetting[] getactionsettings(long sessionid, int ruleid) Get action settings for rule. ActionSettingSpec getactionsettingspec(long sessionid, int ruleid, String setting) Get detailed information about an action setting. String[] getactiontypeids() Get action type ids. int[] getalertinglocations(long sessionid, int projectid) Get locations which have an alerting execution server. String[] getprofiles(long sessionid, int projectid, String essentialname) Get the profiles available for this essential. void updateactionsettings(long sessionid, int ruleid, String actiontype, ActionSetting[] settings) Update action settings for a non essential action. void updateessentialactionsettings(long sessionid, int ruleid, String essential, ActionSetting[] settings) Update action settings for a essential action. boolean deletecondition(long sessionid, int conditionid) Deletes a condition specified by the given ID. boolean deletecustomincident(long sessionid, int customincidentid) Deletes a custom incident specified by the given ID. boolean deleterule(long sessionid, int ruleid) Deletes a condition specified by the given ID. boolean deleteruleexpressionpart(long sessionid, int ruleid, int position) Deletes rule expression part with the given position. ClientSideExecutionSet[] getclientsideexecutionsets(long sessionid, int transactionid) Retrieves all execution sets of client side monitoring transactions. Condition getcondition(long sessionid, int conditionid) Query condition with given ID. 16 Silk Performance Manager API Help

25 3 WEB SERVICE OVERVIEW Web Service "svdata" Condition[] getconditions(long sessionid, int projectid) Query all conditions for given project. CustomIncident getcustomincident(long sessionid, int customincidentid) Query custom incident with given ID. CustomIncident[] getcustomincidents(long sessionid, int projectid) Query all custom incidents for the given project. CustomIncident[] getcustomincidents(long sessionid, int projectid, long starttimeutc, long endtimeutc) Query all custom incidents for the given project within given timespan. ServerSideExecutionSet[] getserversideexecutionsets(long sessionid, int transactionid) Retrieves all execution sets of server side monitoring transactions. Measure[] getmeasures(long sessionid, int execsetid) Retrieves all measures for a given execution set. String[] getmeasurenamesforproject(long sessionid, int projectid) Retrieves all measure names available for a given project. ExecutionLogEntry[] getexecutionlog( long sessionid, int projectid, long from, long to, byte sortcol, boolean isascending, byte[] filtercolumns, int[] filterids, int maxlistsize, int actualpage) Queries execution log entries that meet the specified filter criteria. Web Service "svdata" This service provides functionality for querying monitor data. Silk Performance Manager API Help 17

26 3 WEB SERVICE OVERVIEW Web Service "svdata" The service's WSDL file is available at /services/svdata?wsdl. DataPoint[] getclientmeasuredata( long sessionid, String measurename, int projectid, int[] transactionids, int[] locationids, String starttime, String endtime, int mergespan) Queries monitoring data of client side monitoring transactions from the database. DataPoint[] getclientmeasuredataacrossprojects( long sessionid, String measurename, int projectid, int[] transactionids, int[] locationids, String starttime, String endtime, int mergespan) Queries monitoring data of client side monitoring transactions across multiple projects from the database. DataPoint[] getservermeasuredata( long sessionid, String measurename, int projectid, int[] transactionids, int[] serverids, String starttime, String endtime, int mergespan) Queries monitoring data of server side monitoring transactions from the database. DataPoint[] getservermeasuredataacrossprojects( long sessionid, String measurename, int projectid, int[] transactionids, int[] serverids, String starttime, String endtime, int mergespan) 18 Silk Performance Manager API Help

27 3 WEB SERVICE OVERVIEW Web Service "svdata" Queries monitoring data of server side monitoring transactions across multiple projects from the database. DataPoint[] getmeasuredata( long sessionid, String measurename, int projectid, String starttime, String endtime, int mergespan) Queries monitoring data from the database. Both, client and server side monitoring data is included. DataPoint getlastclientdata( long sessionid, String measurename, int projectid, int[] transactionids, int[] locationids) Queries the most recent monitoring data of client side monitoring transactions from the database. DataPoint getlastserverdata( long sessionid, String measurename, int projectid, int[] transactionids, int[] serverids) Queries the most recent monitoring data of server side monitoring transactions from the database. DataPoint getlastdata( long sessionid, String measurename, int projectid, int[] transactionids) Queries the most recent monitoring data from the database (including client and server side transactions). DataPoint mergeseries(datapoint[] series) Merges a specified series to a single DataPoint. Silk Performance Manager API Help 19

28 3 WEB SERVICE OVERVIEW Web Service "svmonconfctrl" Web Service "svmonconfctrl" This service enables the caller to query and apply changes to the active configuration. The service's WSDL file is available at /services/svmonconfctrl?wsdl. String runmonitorsinproject( long sessionid, int projectid, boolean onlyactive) Initiates a "Run-Once" of the monitors belonging to a given project. String setmonitorstate( long sessionid, int monitorid, boolean active) Activates or deactivates a given monitor. String runmonitor( long sessionid, int monitorid) Runs a single monitor. ScheduleSettings getprojectschedule( long sessionid, int projectid, boolean serverside) Retrieves the settings of the client or server side project schedule. ScheduleSettings getmonitorschedule( long sessionid, int monitorid) Retrieves the settings of a monitor's schedule. MonitorSetting[] getmonitorsettings(long sessionid, int monitorid) Get the settings of the monitor (such as browser type, name, etc.) MonitorSettingSpec getmonitorsettingspec(long sessionid, int monitorid, String settingname) Retrieves detailed information about a monitor setting (name, description, data type, etc.) 20 Silk Performance Manager API Help

29 3 WEB SERVICE OVERVIEW Web Service "svmonconfctrl" void updatemonitorsettings(long sessionid, int monitorid, MonitorSetting[] monitorsettings) Updates settings of the monitor (such as browser type, name, etc). String redefineschedule( long sessionid, ScheduleSettings schedule) Redefines the settings of a schedule specified by the ID of a given schedule. void removeschedule(long sessionid, int monitorid) If the monitor has a monitor schedule this schedule is removed and the project schedule is set instead. void setlocationsofschedule(long sessionid, int scheduleid, int[] locationids) Sets the locations of a schedule. RunExclusion[] getscheduleexclusions( long sessionid, int scheduleid) Retrieves all exclusions of a specified schedule. String addscheduleexclusion( long sessionid, int scheduleid, RunExclusion exclusion) Adds an exclusion to a specified schedule. String removescheduleexclusion( long sessionid, int scheduleid, int exclusionid) Removes an exclusion from a specified schedule. String[] gettestscripts(long sessionid, int projectid, String essentialname) Retrieves the names of the available test scripts for a given Essential / file pool entry. String[] getusergroupnames(long sessionid, int projectid, String essentialname, String scriptname) Retrieves the available usergroups for the Essential / file pool entry and test script. void makeschedulelocal(long sessionid, int monitorid) Silk Performance Manager API Help 21

30 3 WEB SERVICE OVERVIEW Web Service "svmonconfctrl" If the monitor does not have a monitor schedule the project schedule is duplicated and set as monitor schedule. int createmonitor( long sessionid, int projectid, String essentialname, String name, boolean activate) Creates a new monitor. int createmonitor(long sessionid, int projectid, String essentialname, String name, String testscriptname, boolean activate) Creates a new monitor with the given test script. int createmonitor(long sessionid, int projectid, String essentialname, String name, String testscriptname, String usergroupname, boolean activate) Creates a new monitor with the given test script and usergroup. void deletemonitor(long sessionid, int monitorid) Deletes the monitor with the given ID int[] getlocationsofschedule(long sessionid, int scheduleid) Retrieves the IDs of the locations of a schedule. 22 Silk Performance Manager API Help

31 4 Web 4Chapter Service API Documentation What you will learn This chapter contains the following sections: Section Page Overview 23 Web Service "sccsystem" 24 Web Service "sccentities" 26 Web Service "sccadminctrl" 44 Web Service "sventities" 44 Web Service "svdata" 71 Web Service "svmonconfctrl" 79 Overview This Application Programming Interface (API) description provides detailed information about the methods of each of the services, the methods' parameters, the return values, and the classes that are used as parameters and return values. Exceptions For the web services the following exception types are used. InvalidIdException Silk Performance Manager API Help 23

32 Web Service "sccsystem" Invalid session id. LoginException Current user does not have enough rights to perform operation. MissingValueException A required value is not set. NotExistingValueException Id does not exist, e.g. project id is unknown. ExistingKeyException A given value which should be unique is not unique, e.g. a name for a new condition. InvalidStateException Manipulated object is in invalid state for current operation, e.g. object is activated, but must be inactive for manipulation. InternalException Internal error on server, e.g. database error. Web Service "sccsystem" Class description Class AppModule int ID The application module's unique identifier (among all application modules) String name The name of the application module String description The description of the application module long logonuser(string username, String plainpwd) Logs on with a given username and password. The returned session identifier can be used in subsequent calls. It acts as a unique key. The session created with the method expires when it is not used for a period of time. Parameters String username The login username String plainpwd The password of the specified username 24 Silk Performance Manager API Help

33 Web Service "sccsystem" A unique identifier (used as a key) that identifies the session created with the method. String encryptpassword(long sessionid, String plainpwd) Takes a clear text password and returns the encrypted version. Parameters long sessionid The unique ID of the actual session String plainpwd The password of the specified username Throws Encrypted password of the specified clear text password. java.rmi.remoteexception String converttoreadabletime(long time) Converts a given time (number of milliseconds since midnight, January 1, 1970 UTC) to a human-readable string representation. The returned format is "YYYY-MM-DD HH:MM:SS.MMM". Parameters long time The time to convert (specified in milliseconds since midnight, January 1, 1970 UTC) Human-readable string representation of the given time (based on UTC). long convertfromreadabletime(string time) Converts a given date/time to the number of milliseconds since midnight, January 1, 1970 UTC. Parameters String time Date/time to be converted (based on UTC) using the format "YYYY-MM-DD HH:MM:SS.MMM". Number of milliseconds since midnight, January 1, 1970 UTC. Silk Performance Manager API Help 25

34 Web Service "sccentities" AppModule[] getapplicationmodules(long sessionid) Retrieves the list of application modules installed (Performance Manager, etc.). Parameters long sessionid The unique ID of the actual session An array of all installed application modules. Web Service "sccentities" Class description Class Project int ID The project's unique identifier (among all projects) String name The name of the project String description The project description boolean active Indicates an active/inactive project int[] appmoduleids The application module Ids (allowed values are: 1 ) Class Location int ID The location's unique identifier (among all locations) String name The name of the location boolean isactive Indicates if at least one active Execution Server exists for the location Class LocationDetails String proxyhostname Hostname of the proxy server int proxyport Port of the proxy server int proxytype Type of proxy server 0..no proxy 1..type http 2..type socks boolean usecentralproxyindicates whether the central proxy shall be used or not 26 Silk Performance Manager API Help

35 Web Service "sccentities" boolean isreal Deprecated. Should always be false. Used to indicate that this location is a real location, created by third party tool. Class ExecServer boolean active Indicates whether this execution server is activated or not int appmoduleid Application server module ID (1 for Performance Manager) String execserverhostname Hostname of this execution server int locationid ID of the location the execution server is assigned to int maxbandwidth Maximum bandwidth int maxconcurrentexecutions Maximum of concurrent executions on this execution server int problemalerttimeout Responsiveness timeout [s] int rmiproxyport Java RMI port of this execution server int rmiproxyportssljava RMI port of this execution server for ssl int state Current state of this execution server; allowed states: 0..inactive 1..active 2..failure boolean usessl Indicates whether SSL is used for connecting this execution server or not Class User int id Unique ID of this user String description Description String name Last name String firstname First name boolean islocked Indicates whether the user is locked or not Silk Performance Manager API Help 27

36 Web Service "sccentities" Class UserDetails (extends User) String login Login name String dateformat Date format (for example "EEE, MMM dd, yyyy - h:mm:ss a") String address for notifications int firstdayofweekfirst day of week (1..Sunday, 2..Monday,.., 7..Saturday) int pagerefreshtimedelay between automatical page refreshes int roleid Role ID of the user allowed values: 0..system administrator 1..domain administrator 2..project manager 3..analyst -2..interim user String separatorstring The prefered separator string of the user (for example "," or ";") String shortdateformatshort date format (for example "M/d/ yyyy, h:mm a") String timezoneid TimeZone ID (continent + "/" + city) int[] assignedprojectsthe ids of the projects assigned to the user Class UserGroup int Id ID of the user group String name Name of the user group boolean islocked Indicates whether the user group is locked or not String description Group description long createdat Timestamp of group creation String createdby Name of the user who created the group int[] projectassignmentsids of the projects assigned to this group Class UserGroupMembershi p int Id User ID int groupid Group ID 28 Silk Performance Manager API Help

37 Web Service "sccentities" int roleid ID of the role assigned to the user for the given user group String groupname Group name String rolename Role name Class Role int Id ID of the role String name Name of the role Project[] getprojects(long sessionid) Retrieves all defined projects. Parameters long sessionid The unique ID of the actual session An array of all found projects. Project[] getprojectsforuser( ) Retrieves all projects defined that meet the specified filter criteria. Parameters long sessionid The unique ID of the actual session int userid The unique identifier of the user whose projects should be returned, or -1 if the projects of the currently logged-in user should be returned. int appmoduleid The unique identifier of the application module to return projects for or -1 if projects for all modules should be returned. An array of all projects found. Location[] getlocations(long sessionid) Retrieves all defined locations. Parameters long sessionid The unique ID of the actual session An array of all found locations. Silk Performance Manager API Help 29

38 Web Service "sccentities" Location[] getlocationsforproject(long sessionid, int projectid) Retrieves all locations associated with the given project. Parameters long sessionid The unique ID of the actual session int projectid The identifier of the project that will be searched for locations An array of all locations associated with the given project. public Project[] getallprojects(long sessionid, String projectname) Retrieves all projects assigned to the logged in User (or all Projects if the user is an administrator) with the given name (wildcards * and? allowed). Parameters long sessionid The unique ID of that session created with logonuser() String projectname Name of the project to return (wildcards? and * are allowed) An array of all projects found. public Project getprojectbyid(long sessionid, int projectid) Retrieves the project with the given ID. Parameters long sessionid The unique ID of that session created with logonuser() int projectid ID of the project to return The project with the given ID if it exists and the logged in user has the right to retrieve it. public int createproject(long sessionid, Project project) Creates a new Project with the given properties. 30 Silk Performance Manager API Help

39 Web Service "sccentities" Parameters long sessionid The unique ID of that session created with logonuser() Project project Attributes of the new project to be created The ID of the created project. public void updateproject(long sessionid, Project project) Updates an existing Project with the given properties. Parameters long sessionid The unique ID of that session created with logonuser() Project project Attributes of the project to be changed public void deleteprojects(long sessionid, int[] projectids) Deletes projects with the given Ids (if the logged in user has the right to). Parameters long sessionid The unique ID of that session created with logonuser() int[] projectids ProjectIds to delete public void activateprojects(long sessionid, int[] projectids) Activates the projects with the given Ids. Parameters long sessionid The unique ID of that session created with logonuser() int[] projectids IDs of the projects to activate public void deactivateprojects(long sessionid, int[] projectids) Deactivates the projects with the given IDs Silk Performance Manager API Help 31

40 Web Service "sccentities" Parameters long sessionid The unique ID of that session created with logonuser() int[] projectids ProjectIds of the projects to deactivate public LocationDetails getlocationdetails(long sessionid, int locationid) Retrieves detailed information about the Location identified by the ID. Parameters long sessionid The unique ID of that session created with logonuser() int locationid The identifier of the location The location details of the given location. public int createlocation(long sessionid, LocationDetails locationdetails) Creates a new location with the data provided by the location details. Parameters long sessionid The unique ID of that session created with logonuser() locationdetails Properties of the location to create (ID is ignored and set by the system) The location ID assigned to the new location by the system. public void updatelocation(long sessionid, LocationDetails locationdetails) Updates an existing location (identified by the ID) with the data provided by the location details. Parameters long sessionid The unique ID of that session created with logonuser() locationdetails Properties of the location to create (ID identifies the location to update on the system ) 32 Silk Performance Manager API Help

OnWeb IIS Plug-in: Installation Guide

OnWeb IIS Plug-in: Installation Guide OnWeb 7.5.0 IIS Plug-in: Installation Guide Micro Focus (IP) Ltd. The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2010 Micro Focus (IP) Limited. All Rights

More information

Caliber Visual Studio.NET Integration Visual Studio Integration

Caliber Visual Studio.NET Integration Visual Studio Integration Caliber Visual Studio.NET Integration 11.5 Visual Studio Integration Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2016. All rights

More information

Silk Performance Manager Installation and Setup Help

Silk Performance Manager Installation and Setup Help Silk Performance Manager 18.5 Installation and Setup Help Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2004-2017 Micro Focus. All rights reserved.

More information

Rumba 9.4. Using MSS for Centralized Management

Rumba 9.4. Using MSS for Centralized Management Rumba 9.4 Using MSS for Centralized Management Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1984-2016. All rights reserved. MICRO

More information

Artix Version Release Notes: Java

Artix Version Release Notes: Java Artix Version 5.6.4 Release Notes: Java Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights reserved. MICRO FOCUS, the

More information

Silk Test Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition

Silk Test Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition Silk Test 18.5 Silk Test Classic Quick Start Tutorial for Dynamic Object Recognition Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus

More information

Oracle Utilities Opower Solution Extension Partner SSO

Oracle Utilities Opower Solution Extension Partner SSO Oracle Utilities Opower Solution Extension Partner SSO Integration Guide E84763-01 Last Updated: Friday, January 05, 2018 Oracle Utilities Opower Solution Extension Partner SSO Integration Guide Copyright

More information

Silk Central The Reporting Data Mart

Silk Central The Reporting Data Mart Silk Central 18.5 The Reporting Data Mart Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2004-2017. All rights reserved. MICRO FOCUS,

More information

Micro Focus Enterprise View. Installing Enterprise View

Micro Focus Enterprise View. Installing Enterprise View Micro Focus Enterprise View Installing Enterprise View Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2014. All rights reserved.

More information

AccuRev Plugin for IntelliJ IDEA Installation and Release Notes

AccuRev Plugin for IntelliJ IDEA Installation and Release Notes AccuRev Plugin for IntelliJ IDEA 2018.1 Installation and Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018. All

More information

StarTeam LDAP QuickStart Manager Administration Guide

StarTeam LDAP QuickStart Manager Administration Guide StarTeam 15.1 LDAP QuickStart Manager Administration Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2016. All rights reserved.

More information

ACS 5.x: LDAP Server Configuration Example

ACS 5.x: LDAP Server Configuration Example ACS 5.x: LDAP Server Configuration Example Document ID: 113473 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Directory Service Authentication Using

More information

ICANN Monitoring System API (MoSAPI)

ICANN Monitoring System API (MoSAPI) ICANN Monitoring System API (MoSAPI) Version 2.7 2018-03-06 1. Introduction... 3 1.1. Date and Time... 3 1.2. Credentials... 3 1.3. Glossary... 3 2. Common elements used in this specification... 5 3. Session

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g (

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g ( Oracle Adaptive Access Manager Release Notes Release 10g (10.1.4.5) E13648-03 May 2009 These release notes contain important last minute information not included in the Oracle Adaptive Access Manager Release

More information

Artix Version Session Manager Guide: C++

Artix Version Session Manager Guide: C++ Artix Version 5.6.4 Session Manager Guide: C++ Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights reserved. MICRO FOCUS,

More information

Globalbrain Administration Guide. Version 5.4

Globalbrain Administration Guide. Version 5.4 Globalbrain Administration Guide Version 5.4 Copyright 2012 by Brainware, Inc. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system,

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administering Web Services 12c (12.1.2) E28131-01 June 2013 Documentation for developers and administrators that describes how to administer Web services. Oracle Fusion Middleware

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

How to Configure Authentication and Access Control (AAA)

How to Configure Authentication and Access Control (AAA) How to Configure Authentication and Access Control (AAA) Overview The Barracuda Web Application Firewall provides features to implement user authentication and access control. You can create a virtual

More information

HappyFox API Technical Reference

HappyFox API Technical Reference HappyFox API Technical Reference API Version 1.0 Document Version 0.1 2011, Tenmiles Corporation Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK

Micro Focus The Lawn Old Bath Road Newbury, Berkshire RG14 1QN UK Rumba 9.4.1 Readme Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1984-2016. All rights reserved. MICRO FOCUS, the Micro Focus logo

More information

RSA Archer GRC Application Guide

RSA Archer GRC Application Guide RSA Archer GRC Application Guide Version 1.2 vember 2017 Contact Information RSA Link at https://community.rsa.com contains a knowledgebase that answers common questions and provides solutions to known

More information

AppSpider Enterprise. Getting Started Guide

AppSpider Enterprise. Getting Started Guide AppSpider Enterprise Getting Started Guide Contents Contents 2 About AppSpider Enterprise 4 Getting Started (System Administrator) 5 Login 5 Client 6 Add Client 7 Cloud Engines 8 Scanner Groups 8 Account

More information

Secret Server SOAP Web Services API Guide

Secret Server SOAP Web Services API Guide Secret Server SOAP Web Services API Guide Table of Contents Overview... 1 Accessing Web Services... 1 Concepts... 1 Token... 1 s... 2 Windows Authentication... 2 Common... 2 Sample Code... 3 Web Service

More information

Rumba+ Server 1.2. Readme

Rumba+ Server 1.2. Readme Rumba+ Server 1.2 Readme Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1984-2014. All rights reserved. MICRO FOCUS, the Micro Focus

More information

KYOCERA Net Admin User Guide

KYOCERA Net Admin User Guide KYOCERA Net Admin User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Silk Test Using the Basic Workflow with the Classic Agent

Silk Test Using the Basic Workflow with the Classic Agent Silk Test 17.5 Using the Basic Workflow with the Classic Agent Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1992-2016. All rights

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

Micro Focus VisiBroker 8.5 SP5. Release Notes

Micro Focus VisiBroker 8.5 SP5. Release Notes Micro Focus VisiBroker 8.5 SP5 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2018. All rights reserved. MICRO

More information

IaaS API Reference (Management Administration)

IaaS API Reference (Management Administration) FUJITSU Cloud Service K5 IaaS API Reference (Management Administration) Version 1.18 FUJITSU LIMITED All Rights Reserved, Copyright FUJITSU LIMITED 2015-2018 K5IA-DC-M-001-001E Preface Structure of the

More information

Micro Focus Visual COBOL 4.0 Build Tools for Windows. Release Notes

Micro Focus Visual COBOL 4.0 Build Tools for Windows. Release Notes Micro Focus Visual COBOL 4.0 Build Tools for Windows Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018. All rights

More information

Sostenuto 4.1 title page. System Management User s Guide

Sostenuto 4.1 title page. System Management User s Guide Sostenuto 4.1 title page System Management User s Guide Date: November 2013 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored in any

More information

McAfee Next Generation Firewall 5.8.0

McAfee Next Generation Firewall 5.8.0 Reference Guide Revision A McAfee Next Generation Firewall 5.8.0 SMC API This guide gives an overview of the Security Management Center (SMC) application programming interface (API). It describes how to

More information

Using the e- Science Central REST API

Using the e- Science Central REST API Using the e- Science Central REST API API Client version 3.0 Page 1 of 43 Using the API The esc API is broken into a number of sections, each of which allow you to access a specific piece of system functionality.

More information

Silk Test Using the Basic Workflow with the Open Agent

Silk Test Using the Basic Workflow with the Open Agent Silk Test 18.5 Using the Basic Workflow with the Open Agent Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1992-2017. All rights

More information

HPE SiteScope. SiteScope Public API Reference Guide. Software Version: Go to HELP CENTER ONLINE

HPE SiteScope. SiteScope Public API Reference Guide. Software Version: Go to HELP CENTER ONLINE HPE SiteScope Software Version: 11.40 SiteScope Public API Reference Guide Go to HELP CENTER ONLINE http://sitescope-help.saas.hpe.com Document Release Date: August 2017 Software Release Date: August 2017

More information

EMC Isilon. Cisco UCS Director Support for EMC Isilon

EMC Isilon. Cisco UCS Director Support for EMC Isilon Cisco UCS Director Support for, page 1 Adding an Account, page 2 Storage Pool Tiers, page 3 Storage Node Pools, page 4 SMB Shares, page 5 Creating an NFS Export, page 7 Quotas, page 9 Configuring a space

More information

Cryptshare for Outlook Installation Guide

Cryptshare for Outlook Installation Guide Cryptshare for Outlook Installation Guide V1.6.2 Befine Solutions AG Werthmannstr. 15 79098 Freiburg i. Br. Germany Web: https://www.cryptshare.com E-Mail: info@cryptshare.com Tel.: +49 761 389 13 0 Fax:

More information

RSA Identity Governance and Lifecycle Collector Data Sheet for Zendesk

RSA Identity Governance and Lifecycle Collector Data Sheet for Zendesk RSA Identity Governance and Lifecycle Collector Data Sheet for Zendesk Version 1.1 December 2017 Contents Purpose... 4 Supported Software... 4 Prerequisites... 4 Account Data Collector... 4 Configuration...

More information

Solutions Business Manager Web Application Security Assessment

Solutions Business Manager Web Application Security Assessment White Paper Solutions Business Manager Solutions Business Manager 11.3.1 Web Application Security Assessment Table of Contents Micro Focus Takes Security Seriously... 1 Solutions Business Manager Security

More information

OPC XML-DA Client Driver PTC Inc. All Rights Reserved.

OPC XML-DA Client Driver PTC Inc. All Rights Reserved. 2018 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 4 Overview 4 Project Architecture 5 Setup 6 Channel Properties General 6 Channel Properties Write Optimizations 7 Channel Properties

More information

Mobile Access Guide Using WhatsUp Gold Mobile Access

Mobile Access Guide Using WhatsUp Gold Mobile Access Mobile Access Guide Using WhatsUp Gold Mobile Access Contents CHAPTER 1 Using WhatsUp Gold Mobile Access Managing WhatsUp Gold Mobile Access... 1 Accessing WhatsUp Gold from a mobile device... 2 CHAPTER

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP SiteScope Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only warranties

More information

AccuRev Plugin for Crucible Installation and Release Notes

AccuRev Plugin for Crucible Installation and Release Notes AccuRev Plugin for Crucible 2017.2 Installation and Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2017. All rights

More information

Database Connectors Net Express/Server Express 5.1 Update 16. Release Notes

Database Connectors Net Express/Server Express 5.1 Update 16. Release Notes Database Connectors Net Express/Server Express 5.1 Update 16 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2018.

More information

VisiBroker for Visual Studio 2013

VisiBroker for Visual Studio 2013 VisiBroker 8.5.2 for Visual Studio 2013 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2015. All rights reserved.

More information

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit Oracle Cloud Mobile Cloud Service Known Issues 18.1.3 E93163-01 February 2018 General MCS Instance Has Predefined Storage Limit Each MCS instance has a set storage space that can t be changed manually.

More information

Intel Unite Solution Version 4.0

Intel Unite Solution Version 4.0 Intel Unite Solution Version 4.0 System Broadcast Application Guide Revision 1.0 October 2018 October 2018 Dcoument # XXXX Legal Disclaimers and Copyrights This document contains information on products,

More information

External Data Connector for SharePoint

External Data Connector for SharePoint External Data Connector for SharePoint Last Updated: August 2014 Copyright 2014 Vyapin Software Systems Private Limited. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

Grid4All Security User's Manual, Release 0.6

Grid4All Security User's Manual, Release 0.6 Grid4All Security User's Manual, Release 0.6 by Leif Lindbäck and Vladimir Vlassov Royal Institute of Technology (KTH), Stockholm, Sweden Email {leifl, vladv}@kth.se FP6 Project Grid4All (IST-2006-034567)

More information

OneView Installation

OneView Installation OneView Installation 1. Introduction... 4 1.1 The OneView Software Package... 4 1.2 OneView server Disk Layout... 4 1.3 OneView Software Download... 5 2. Hardware Recommendations... 5 3. Software Requirements...

More information

User Manual. ARK for SharePoint-2007

User Manual. ARK for SharePoint-2007 User Manual ARK for SharePoint-2007 Table of Contents 1 About ARKSP (Admin Report Kit for SharePoint) 1 1.1 About ARKSP 1 1.2 Who can use ARKSP? 1 1.3 System Requirements 2 1.4 How to activate the software?

More information

Network Policy Controller UAM/RADIUS Guide

Network Policy Controller UAM/RADIUS Guide Network Policy Controller UAM/RADIUS Guide 1. Introduction... 3 1.1. Terminology... 3 2. Web Authentication... 5 2.1. Redirect URL Parameters... 5 2.2. UAM Login URL... 5 2.3. UAM Logout URL... 6 3. UAM/RADIUS

More information

Database Connectors Net Express/Server Express 5.1 Update 14. Release Notes

Database Connectors Net Express/Server Express 5.1 Update 14. Release Notes Database Connectors Net Express/Server Express 5.1 Update 14 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017.

More information

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies CNIT 129S: Securing Web Applications Ch 3: Web Application Technologies HTTP Hypertext Transfer Protocol (HTTP) Connectionless protocol Client sends an HTTP request to a Web server Gets an HTTP response

More information

GoToMyPC Reporting Services API

GoToMyPC Reporting Services API GoToMyPC Reporting Services API Developer s Guide Version 1.2 Last Updated: March 8, 2013 Contents Overview of GoToMyPC API Offerings... 1 GoToMyPC Reporting API Overview... 1 Benefits... 1 Example Implementations...

More information

Geneos Gateway Authentication Technical Reference. Functional Area: Geneos Gateway Authentication. Geneos Release: v4.9. Document Version: v1.0.

Geneos Gateway Authentication Technical Reference. Functional Area: Geneos Gateway Authentication. Geneos Release: v4.9. Document Version: v1.0. Geneos Gateway Authentication Technical Reference Functional Area: Geneos Gateway Authentication Geneos Release: v4.9 Document Version: v1.0.0 Date Published: 25 October 2018 Copyright 2018. ITRS Group

More information

Web and MAC Authentication

Web and MAC Authentication 3 Web and MAC Authentication Contents Overview..................................................... 3-2 Client Options.............................................. 3-3 General Features............................................

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Last Updated: October 12, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users and applications by implementing support for HTTP 1.1

More information

Overview of Web Services API

Overview of Web Services API CHAPTER 1 The Cisco IP Interoperability and Collaboration System (IPICS) 4.0(x) application programming interface (API) provides a web services-based API that enables the management and control of various

More information

CA Single Sign-On and LDAP/AD integration

CA Single Sign-On and LDAP/AD integration CA Single Sign-On and LDAP/AD integration CA Single Sign-On and LDAP/AD integration Legal notice Copyright 2017 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED

More information

Interactive Voice Response (IVR) Extension Type Guide

Interactive Voice Response (IVR) Extension Type Guide 4PSA VoipNow 2.0.3 Interactive Voice Response (IVR) Extension Type Guide For more information about 4PSA VoipNow, check: http://www.voipnow.com Copyrights 2002-2009 Rack-Soft, LLC. VoipNow is a registered

More information

Cisco Unified Workforce Optimization Quality Management

Cisco Unified Workforce Optimization Quality Management Cisco Unified Workforce Optimization Quality Management Server API Programmer's Guide Version 10.5 First Published: June 18, 2014 Last Updated: February 11, 2015 THE SPECIFICATIONS AND INFORMATION REGARDING

More information

TIBCO ActiveMatrix Policy Director Administration

TIBCO ActiveMatrix Policy Director Administration TIBCO ActiveMatrix Policy Director Administration Software Release 2.0.0 November 2014 Document Updated: January 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Perceptive Process Mining

Perceptive Process Mining Perceptive Process Mining Installation and Setup Guide Version: 2.14.x Written by: Product Knowledge, R&D Date: May 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents About Perceptive

More information

Oracle Communications WebRTC Session Controller

Oracle Communications WebRTC Session Controller Oracle Communications WebRTC Session Controller Security Guide Release 7.0 E40975-01 November 2013 Oracle Communications WebRTC Session Controller Security Guide, Release 7.0 E40975-01 Copyright 2013,

More information

WhatsUp Gold 2016 Mobile Access

WhatsUp Gold 2016 Mobile Access WhatsUp Gold 2016 Mobile Access Contents Using Managing WhatsUp Gold mobile access... 1 Accessing WhatsUp Gold from a mobile device... 1 Learning about About... 5 Mobile Access supported browsers... 5

More information

Replicator. Enterprise API Guide VERSION January 04,

Replicator. Enterprise API Guide VERSION January 04, Replicator Enterprise API Guide VERSION 7.4.0 January 04, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018. All rights reserved. No part or section of the

More information

VisiBroker Release Notes

VisiBroker Release Notes VisiBroker 8.5.2 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2015. All rights reserved. VisiBroker contains derivative

More information

Management Tools. Management Tools. About the Management GUI. About the CLI. This chapter contains the following sections:

Management Tools. Management Tools. About the Management GUI. About the CLI. This chapter contains the following sections: This chapter contains the following sections:, page 1 About the Management GUI, page 1 About the CLI, page 1 User Login Menu Options, page 2 Customizing the GUI and CLI Banners, page 3 REST API, page 3

More information

Contents. Java RMI. Java RMI. Java RMI system elements. Example application processes/machines Client machine Process/Application A

Contents. Java RMI. Java RMI. Java RMI system elements. Example application processes/machines Client machine Process/Application A Contents Java RMI G53ACC Chris Greenhalgh Java RMI overview A Java RMI example Overview Walk-through Implementation notes Argument passing File requirements RPC issues and RMI Other problems with RMI 1

More information

Oracle Utilities Smart Grid Gateway Adapter for Itron OpenWay

Oracle Utilities Smart Grid Gateway Adapter for Itron OpenWay Oracle Utilities Smart Grid Gateway Adapter for Itron OpenWay User's Guide Release 2.1.0 Service Pack 2 E41627-02 April 2014 Oracle Utilities Smart Grid Gateway Adapter for Itron OpenWay User's Guide Release

More information

Microsoft Dynamics CRM Integration with Bomgar Remote Support

Microsoft Dynamics CRM Integration with Bomgar Remote Support Microsoft Dynamics CRM Integration with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown

More information

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Published: 2018-Oct-09 Contents 1 Microsoft SharePoint 2013, 2016 and Online Connector 4 1.1 Products 4 1.2 Supported

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018

ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk. November 2018 ZENworks Service Desk 8.0 Using ZENworks with ZENworks Service Desk November 2018 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions,

More information

Web-to-Host 6.9 SP1. Readme

Web-to-Host 6.9 SP1. Readme Web-to-Host 6.9 SP1 Readme Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1984-2017. All rights reserved. MICRO FOCUS, the Micro

More information

HTTP 1.1 Web Server and Client

HTTP 1.1 Web Server and Client HTTP 1.1 Web Server and Client Finding Feature Information HTTP 1.1 Web Server and Client Last Updated: June 01, 2011 The HTTP 1.1 Web Server and Client feature provides a consistent interface for users

More information

Webthority can provide single sign-on to web applications using one of the following authentication methods:

Webthority can provide single sign-on to web applications using one of the following authentication methods: Webthority HOW TO Configure Web Single Sign-On Webthority can provide single sign-on to web applications using one of the following authentication methods: HTTP authentication (for example Kerberos, NTLM,

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

JobFeed Push Services

JobFeed Push Services JobFeed Push Services Introduction This document describes the technical aspects of the Push Services supported by JobFeed. In general, two types of Push-Services are supported, both serving as a transport

More information

Cisco IOS HTTP Services Command Reference

Cisco IOS HTTP Services Command Reference Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE SPECIFICATIONS AND INFORMATION

More information

Open XML Gateway User Guide. CORISECIO GmbH - Uhlandstr Darmstadt - Germany -

Open XML Gateway User Guide. CORISECIO GmbH - Uhlandstr Darmstadt - Germany - Open XML Gateway User Guide Conventions Typographic representation: Screen text and KEYPAD Texts appearing on the screen, key pads like e.g. system messages, menu titles, - texts, or buttons are displayed

More information

Secret Server Web Services API Guide

Secret Server Web Services API Guide Table of Contents Overview... 1 Accessing Web Services... 1 Concepts... 1 Token... 1 s... 2 Windows Authentication... 2 Common... 2 Sample Code... 3 Web Service Methods... 3 AddDependency... 3 AddNewSecret...

More information

Micro Focus Visual COBOL Development Hub R4 Update 1. Release Notes

Micro Focus Visual COBOL Development Hub R4 Update 1. Release Notes Micro Focus Visual COBOL Development Hub R4 Update 1 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus IP Development

More information

KYOCERA Device Manager User Guide

KYOCERA Device Manager User Guide KYOCERA Device Manager User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held

More information

User Manual. Admin Report Kit for IIS 7 (ARKIIS)

User Manual. Admin Report Kit for IIS 7 (ARKIIS) User Manual Admin Report Kit for IIS 7 (ARKIIS) Table of Contents 1 Admin Report Kit for IIS 7... 1 1.1 About ARKIIS... 1 1.2 Who can Use ARKIIS?... 1 1.3 System requirements... 2 1.4 Technical Support...

More information

Using ZENworks with Novell Service Desk

Using ZENworks with Novell Service Desk www.novell.com/documentation Using ZENworks with Novell Service Desk Novell Service Desk 7.1 April 2015 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or

More information

NotifySCM Workspace Security Server Guide

NotifySCM Workspace Security Server Guide NotifySCM Workspace Security Server Guide Version 3.16.0 - October 2017 NotifySCM Workspace: Security Server Guide Table of Contents 1 Overview... 4 Roles... 4 Login... 4 2 Technical Configuration... 6

More information

ER/Studio Enterprise Portal 1.1 New Features Guide

ER/Studio Enterprise Portal 1.1 New Features Guide ER/Studio Enterprise Portal 1.1 New Features Guide 2nd Edition, April 16/2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

Microfocus VBA Add-On for Rumba+ Desktop. Quick Start Guide

Microfocus VBA Add-On for Rumba+ Desktop. Quick Start Guide Microfocus VBA Add-On for Rumba+ Desktop Quick Start Guide Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 1984-2018. All rights

More information

ELODEA USER'S GUIDE HOW TO SETUP, CONFIGURE AND USE ELODEA

ELODEA USER'S GUIDE HOW TO SETUP, CONFIGURE AND USE ELODEA ELODEA USER'S GUIDE HOW TO SETUP, CONFIGURE AND USE ELODEA Table of Contents 1. Introduction... 2 2. Understanding Elodea... 3 2.1. Deployment approaches... 4 2.2. Feeds and subscriptions... 7 3. System

More information

Microsoft Dynamics CRM Integration with Remote Support

Microsoft Dynamics CRM Integration with Remote Support Microsoft Dynamics CRM Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property

More information

Identity Provider for SAP Single Sign-On and SAP Identity Management

Identity Provider for SAP Single Sign-On and SAP Identity Management Implementation Guide Document Version: 1.0 2017-05-15 PUBLIC Identity Provider for SAP Single Sign-On and SAP Identity Management Content 1....4 1.1 What is SAML 2.0.... 5 SSO with SAML 2.0.... 6 SLO with

More information

Borland Connect 1.6. Using Borland Connect

Borland Connect 1.6. Using Borland Connect Borland Connect 1.6 Using Borland Connect Borland Software Corporation 700 King Farm Blvd, Suite 400 Rockville, MD 20850 Copyright Micro Focus 2015. All rights reserved. Portions Copyright 1998-2009 Borland

More information

Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On

Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On Oracle Utilities Opower Energy Efficiency Web Portal - Classic Single Sign-On Configuration Guide E84772-01 Last Update: Monday, October 09, 2017 Oracle Utilities Opower Energy Efficiency Web Portal -

More information

Service Portal User Guide

Service Portal User Guide FUJITSU Cloud Service K5 IaaS Service Portal User Guide Version 1.4 FUJITSU LIMITED All Rights Reserved, Copyright FUJITSU LIMITED 2015-2016 K5IA-DC-M-005-001E Preface Purpose of This Manual This manual

More information

Project Manager User Manual

Project Manager User Manual Project Manager User Manual Overview Welcome to your new Project Manager application. The Project Managaer is implemented as a web site that interfaces to an SQL database where all of the project and time

More information

Using ANM With Virtual Data Centers

Using ANM With Virtual Data Centers APPENDIXB Date: 3/8/10 This appendix describes how to integrate ANM with VMware vcenter Server, which is a third-party product for creating and managing virtual data centers. Using VMware vsphere Client,

More information