Uploads a new Tiff Image. Tiff image will be converted to PDF.

Syntax

Visual Basic (declaration)
Public Function UploadTiffAsPDF( _ 
ByVal AuthenticationTicket as String, _ ByVal Path as String, _ ByVal FileContent as Byte()) as XmlNode

C# (declaration)
public XmlNode UploadTiffAsPDF( 
string AuthenticationTicket, string Path, byte[] FileContent)

Parameters

AuthenticationTicket
    string inforouter ticket
Path
    string a Document Path that the document will be created or updated
FileContent
    byte[] The content of the file

Return Value

returns xml fragment.
<response success="true" error="">
if success = "true", the document has been uploaded.
if success = "false", the error attribute returns the error description.

Remarks

The caller must have at least "Add" permissions on the folder.
If the specified path does not exist, the path will be created.
If a document with the same name already exists in the same path, a new version of the existing document will be created.
The uploaded document extension should be "PDF"