Uploads a file as an attachment to a user or group.
public void profile_uploadFile( String accessToken, long principalID, String formDataItemName, String fileName );
The profile_uploadFile operation performs an action similar to using the user interface to upload a picture to user profiles. Files are attached one at a time; call this operation multiple times to attach more than one file to the binder.
By default, only user profiles contain files. However, it is possible for site administrators to customize groups by using the designer tools in the user interface,
Either the security token passed to your application by Vibe as part of implementing a remote application, or the null value.
The identifier for the user or group to which you want to attach a file.
A string containing the internal identifier for the part of the principal entry that contains attached files. This identifier maps the name attribute of an input HTML tag on a form to data in the Vibe database; a hidden HTML tag communicates this file mapping to the server.
The name value for the standard entry element containing attached files is ss_attachFile. To upload a file into the custom forms element you defined by using the designer, you need to look up the name identifier for that form element.
To upload a picture for a user profile, specify picture as an argument to this parameter to make this attachment one of the pictures associated with the user profile.
A string containing the filename of the file you want to upload to the principal.
None.
Java objects in the Vibe sources (see Section 1.7.1, Working with Java Objects)