Uploads a file into a binder.
public void binder_uploadFile( String accessToken, long binderId, String formDataItemName, String fileName );
The binder_uploadFile operation performs an action equivalent to using the UI to upload a file to either a workspace or folder. You can attach only one file at a time; call this operation multiple times to attach more than one file to the binder.
By default, workspaces do not include attached files. However, users can use the designers to define workspaces that do include attached files.
Either the security token passed to your application by Vibe as part of implementing a remote application, or the null value.
The binder identifier for the workspace or folder into which you want to upload a file.
A string containing the internal identifier for the part of the 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. If you want to upload a file into a custom form element you defined using the designers, you need to look up the name identifier for that form element.
If you are uploading to a folder file, specify upload as an argument to this parameter to make this attachment the primary file for the entry.
A string containing the filename of the file you want to upload to the binder.
None.
Java objects in the Vibe sources (see Section 1.7.1, Working with Java Objects)