Known Issues for SDKs

Learn about known issues for the Event Stream Processor SDKs.

SDK Issues
CR# Description
682112

When using the .NET SDK, to avoid memory leaks when running the example, in the SubsriberExample.cs file located in the $ESP_HOME/examples/net/SubscriberExample folder, replace:

while (!done)
{
    event1 = subscriber.get_next_event(espError);
                    
    switch (event1.getType())
    {
...
...
    }                

}

with

while (!done)
{
    event1 = subscriber.get_next_event(espError);
                    
    switch (event1.getType())
    {
...
...
    } 
    event1.release();               

}
715262 If a .NET application that compiled with the .NET SDK dll in ESP5.0 cannot run in ESP5.1, compile it with the .NET SDK dll in ESP5.1.