VConnect
Download the below installers and extract Vconnect.Zip file https://cloudassertdownloads.blob.core.windows.net/vconnect/2.1.7/2.1.7.1/CloudAssert.WAP.VConnect.AdminExtension.Setup.msi https://cloudassertdownloads.blob.core.windows.net/vconnect/2.1.7/2.1.7.1/CloudAssert.WAP.VConnect.TenantExtension.Setup.msi https://cloudassertdownloads.blob.core.windows.net/vconnect/2.1.7/2.1.7.1/Tool.zip
Install CloudAssert.WAP.VConnect.Service.Setup.msi
Update the Password in web.config of VConnect (Path: C:\inetpub\MgmtSvc-CloudAssert-Vconnect\Web.config). Password for dev purpose - CAAAANHhnqvpWD0oTkgG9K3lgho2t0PJl+Cvrj+lcgJWzj1CLQfKxJLhlxI=
Create database for VConnect
Execute the below command to update the database
Navigate to the VConnect folder (extracted from VConnect.zip file)
Execute the below command from command prompt
VConnect.exe UpdateDatabaseSettings {DB_SERVER_NAME} VConnect {DB_USER_NAME} {DB_PASSWORD} /isUseIntegratedSecurity:false /VConnectApiEndpoint:http://localhost:31101 /VConnectApiUserName:cloudassertadminuser /VConnectApiPassword:pass@word1
Insert queue URL in VConnect database. Note: This step is not required if VConnect is installed only for Work flow or Service notification handler is used
Update shared access signature of Azure storage account queue in the below insert script and execute in VConnect DB. Note: Azure storage account queue is one of the prerequisites.
insert into [VConnect].[dbo].[AppSettings] ([Key], [Value], [Group], UpdatedByUser, LastUpdatedTime, IsEncrypted) Values('ServiceNotificationQueueSasUri', '{queueUrl}', 'HybrSettings', 'Admin', GetDate(), 0)
VConnect - Service Notification Handler settings
Set below app settings with appropriate values
If wanted to use the Service Notification Handler, set the
HybrApiEndpoint
ashttps://local.admin.hybr.com/
and setHybrServiceNotificationEventSource
setting totrisulapi
OR
If wanted to use the Azure Storage Queue, set
HybrServiceNotificationEventSource
setting toazurestoragequeue
and give the Azure storage queue SAS URI for the settingServiceNotificationQueueSasUri
Add Hybr endpoint in etc/host file
Setup event notifications for VConnect and Hybr Core components
Settings Name
Group
Value
HybrApiKey
HybrSettings
ex: hybrapiuser
HybrApiSecret
HybrSettings
ex: pass@word1
HybrServiceNotificationEventSource
HybrSettings
(trisulapi/azurestoragequeue)
ServiceNotificationQueueSasUri
HybrSettings
(Azure storage queue sas uri)
8. License Activation
Download and extract VConnect.zip
Navigate inside the extracted folder and execute the below command from command prompt
Command:
VConnect.exe ActivateOnline licenseKey emailId
Note: Do not copy-paste the values directly into command prompt, paste it in notepad, remove spaces and add again before executing
Once the command is executed successfully, .cal file will be generated in the same directory. Copy this file into C:\inetpub\MgmtSvc-CloudAssertBilling\bin
9. Changes to support Custom Properties in Vconnect (Temporary)
In Appsettings table of Vconnect DB , along with existing values in [CustomPropertiesToDisplay] key , set the property display name with the below format
PropertyName : DisplayName
Example :- Description : Description
Last updated