Hello!
I new in the business, and maybe i dismiss some point.
1. I have PI server with SDK version 1.3.6
2. I build some random interface and build 10 points that change values every 1 second. In SMT -> Current values i can see the changes every 1 second
3. Working under C# 2010 express i connecting to PI server and have some function:
Code:
public void Connect(string filterParameters)
{
if (!_piServer.Connected)
{
_piServer.Open();
PointList points = _piServer.GetPoints(filterParameters);
_mdbEvents = points.Data.EventPipe;
_mdbEvents.MaxCount = 1000000;
_mdbEvents.NotifyThreshold = 1;
_epEvents = (_DEventPipeEvents_Event)_mdbEvents;
_epEvents.OnNewValue += new _DEventPipeEvents_OnNewValueEventHandler(e_OnNewValue);
}
}
The problem is, that event fired only once in 5 seconds!!!!!
What i miss?
thanks a lot