Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
In Thingworx 6 api, I can get initialize MediaEntity through com.thingworx.system.managers.MediaEntityManager;
MediaEntity logoEntity = MediaEntityManager.getInstance().getEntity(logoLink);
But how to initialize MediaEntity in 6.6 API?
See answer on this, identical thread: Thingworx 6 extension failed to import in 6.6
Thanks,
Yes, I found the method to initialize MediaEntity and it works..
MediaEntity logoEntity = (MediaEntity) EntityUtilities.findEntity(logoEntityName, ThingworxRelationshipTypes.MediaEntity);