EducationSoftwareStrategy.com
StrategyCommunity

Knowledge Base

Product

Community

Knowledge Base

TopicsBrowse ArticlesDeveloper Zone

Product

Download SoftwareProduct DocumentationSecurity Hub

Education

Tutorial VideosSolution GalleryEducation courses

Community

GuidelinesGrandmastersEvents
x_social-icon_white.svglinkedin_social-icon_white.svg
Strategy logoCommunity

© Strategy Inc. All Rights Reserved.

LegalTerms of UsePrivacy Policy
  1. Home
  2. Topics

10.431: Advanced Enterprise Security Analytics


Stefan Zepeda

Salesforce Solutions Architect • Strategy


Learn about identity intelligence, and how to gather and use telemetry services to understand your user behavior and actions. Take advantage of Usher Professionals mobile productivity app to monitor and communicate with teams, including push notifications. Get hands-on experience creating custom analytics that help you deconstruct data silos and understand the truth in your organization.

 
This code accomplishes two basic steps in establishing a 3-tier mode connection to Strategy Intelligence Server:

  1. Connect to Strategy Intelligence Server.
  2. Open a session in a project.

'STEP 1 : Connect to I-Server
Dim objServer As New DSSDataSource
objServer.Name = Servername.Text
objServer.Type = DssDataSourceTypeServer
objServer.Location = Servername.Text
objServer.Mode = DssConnectionModeServerAccess
objServer.AuthMode = DssAuthStandard
objServer.Login = Login.Text
objServer.Passwd = Pwd.Text
objServer.Init
'STEP 2: Login to Project
Dim objProjectList As DSSDataSourceEnumerator
Dim objDataSource As DSSDataSource
Set objProjectList = objServer.Enumerator
Set objDataSource = objProjectList.ItemByProjectName(ProjectName.Text)
objDataSource.Init
 
The Strategy 9.x MSDL > Intelligence Server Reference, shipped with the Strategy SDK, offers a description of each of the interface used in the code above.
 
Code Customization
Warning:
This customization is provided as a convenience to Strategy users and is only directly applicable to the version stated. While this code may apply to other releases directly, Strategy Technical Support makes no guarantees that the code provided will apply to any future or previous builds. In the event of a code change in future builds, Strategy may not be able to provide additional code on this matter even though this customization is provided at this time for this specific build.
 
 
 


Comment

0 comments

Details

Knowledge Article

Published:

April 27, 2017

Last Updated:

April 27, 2017