Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! 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);