Community Tip - You can change your system assigned username to something more personal in your community settings. X
Hello everyone!
Please tell me how can I download the user signature file using Java API or using Info * Engine?
Best regards!
Solved! Go to Solution.
You should use the same logic, as for a WTDocuments content or any other object which implements ContentHolder.
It is easy to figure out from the signature URL:
http://wnc_server/Windchill/servlet/WindchillAuthGW/wt.content.ContentHttp/viewContent/Untitled.jpg?u8&ofn=Untitled.jpg&ContentHolder=wt.org.electronicIdentity.ElectronicSignature%3A156037&HttpOperationItem=wt.content.ApplicationData%3A156040&forceDownload=true
Just go to the signature jsp /Windchill/codebase/netmarkets/jsp/user/updateSignatureStep.jsp
and you will easily find the API:
ApplicationData applicationData = OrganizationServicesHelper.manager.getUserSignatureApplicationData(signature);
What is "user signature file" and were it store?
Thanks for the answer!
And I mean the signature file that is added when the user is created.
I attach a screen:
You should use the same logic, as for a WTDocuments content or any other object which implements ContentHolder.
It is easy to figure out from the signature URL:
http://wnc_server/Windchill/servlet/WindchillAuthGW/wt.content.ContentHttp/viewContent/Untitled.jpg?u8&ofn=Untitled.jpg&ContentHolder=wt.org.electronicIdentity.ElectronicSignature%3A156037&HttpOperationItem=wt.content.ApplicationData%3A156040&forceDownload=true
Just go to the signature jsp /Windchill/codebase/netmarkets/jsp/user/updateSignatureStep.jsp
and you will easily find the API:
ApplicationData applicationData = OrganizationServicesHelper.manager.getUserSignatureApplicationData(signature);
Thank you so much!
It works!
Only I don't know where you got the signature URL.