ClientFile.uploadTo(fromUrl,message)

Uploads an url content to the Client Browser Side (Only for web environment). For example: // /tmp/urlFile is created on the machine in which the Browser is running. // This file is created with the file available in the url myClURLFile = ClientFile(sourcePath : "C:/tmp/urlFile") url = "http://repository/documents/documentToDownload" clientFileNameU = uploadTo(myClURLFile, fromUrl : url, message : "From URL") display ("Check that the file was uploaded to the server where the Browser is running: " + clientFileNameU)

Arguments:

Name Type Description Mode
fromUrl String url from where the content to upload is in
message String message to show to the user before the action is executed (default: description of operation to perform) in