Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
One quick question if any can answer immediately if possible.
I am following this link for authenticator, https://support.ptc.com/appserver/cs/view/solution.jsp?n=CS244163&lang=en_US
Thing SSOThing = (Thing)EntityUtilities.findEntityDirect("SSOThing", ThingworxRelationshipTypes.Thing);
SSOThing.setPropertyValue("KeyName", new StringPrimitive(userName));
This code snippet i am trying to use in my custom authenticator also, inside authenticate function to update property, but i am getting error like,
"com.thingworx.common.exceptions.InvalidRequestException: Not authorized for PropertyWrite on KeyName in SSOThing" and no user name is displayed in the Logs for the custom authenticator.
What does appear in the column of the Application log labeled "User", nothing? Polina Osipova, does that mean that the System user is calling these services? How does the System user appear in the logs?
Since one cannot log in as a system user, and therefore, execute a service directly through the system user, a system user will never appear in the logs. When a system user is being used, a user column in the logs will show the actual User that invoked a service through the use of system user.
Ok, so we don't know what it means if no user appears in the logs then. Interesting... I believe I need to follow up with R&D about this issue
Oh, and thanks for your input!!