I’ll Start My PerformancePoint 2010 Programming Set with the the Basics how to communicate with the the PPS Monitoring Service
Monitoring Service
First you need to know where is the service URL:
”http://<Your Site URL>/_vti_bin/pps/PPSAuthoringService.asmx”
Try to type the Above URL in your browser to make sure you can communicate with the server
The Required Assemblies
To Access the Performance Point you need to include these set of Microsoft.PerformancePoint.Scorecards to your project
This Assemblies is available in GAC
The Namespaces
using Microsoft.PerformancePoint.Scorecards;
Create The Service Proxy Instance
IBIMonitoringAuthoring pmService;
pmService = BIMonitoringAuthoringServiceProxy.CreateInstance(
http://<Your Site URL>/_vti_bin/pps/PPSAuthoringService.asmx);
Some Notes You need to know
1. The PerformancePoint Items you need to create should be added to the same site you’re accessing from the Performance Point Service
By Now you have access to the Monitoring Services and you can start working with your Performance Point Items
Keep your feeds ready for more posts in PerformancePoint Programming.
No comments:
Post a Comment