When I try to run the code below
try
{
fmeSession = FMEObjects.createSession();
feature = fmeSession.createFeature();
return true;
}
catch (FMEException fe)
{
System.out.println("Error Create Feature: " + fe.getFMEStackTrace());
return false;
}
I get this message:
Error Create Feature: (....\foundation\security\stfsecurity.h:578)
What might be the reason for this? Please help me.
