You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example that sets the “secure” and “file_type” options for the document.
// The following upload command and all subsequent commands will be executed under SSL
com.vuzit.Document doc = com.vuzit.Document.upload("c:\path\to\document.pdf",
new com.vuzit.OptionList()
.add("secure", true)
.add("file_type", "pdf"));
System.out.println("Document id: " + doc.Id);