Statistic SDK WS Examples
=========================
These simple samples have been created with the intention of illustrating the 
usage of the Genesys Integration Server Statistic API

Examples Overview
---------------
The samples generally show off different features of the Genesys Integration Server Statistic API.

ConnectSessionServiceExample.cs			- A Simple Example demonstrating how to connect to Session Service
CreateSessionExample.cs				- A Simple Example demonstrating how to create a GIS Session
IdentifyServicesExample.cs			- A Simple Example demonstrating how to subscribe and retrieve list of services
RetrieveStatisticalProfileExample.cs		- A Simple Example demonstrating how to retrieve Statistical Profiles
RetrieveStatisticExample.cs			- A Simple Example demonstrating how to retrieve a Statistic
SubscribeToStatisticExample.cs			- A Simple Example demonstrating how to subscribe a statistic
RetrieveSubscribedStatisticExample.cs		- A Simple Example demonstrating how to retrieve an already subscribed statistic
UnsolicitedNotificationExample.cs		- A Simple Example demonstrating how to implement unsolicited statistic notification mechanism
               
Getting Ready To Build
----------------------
You will need to install the following software before you start. 

Microsoft Visual Studio 2003

Building And Running The Examples using Microsoft Visual Studio 2003
--------------------------------------------------------------------
Before running examples, open "TestSuite.cs" into "Tests" Project and set the GIS host and port in the various Test method like:

public void executeTest1()
		{
			CreateSessionExample example = new CreateSessionExample();
			example.execute("<gis_host>:<gis_port>");
		}

Once updated, you can rebuild Examples, do the
following:

- Open Visual Studio Solution File
	Configuration SDK WS Examples.sln

- Right Click On the Solution Tree and choose "Rebuild Solution"

Once the Examples are built, you can run examples, do the following:

- Menu "Debug" -> "Start Without Debugging"

All the examples will be executed one by one