How to batch download and upload files?
Under Documents, Type= Setup Sheet, State = Released, are documents that are in excel and they have to be converted to pdf I guess the first the step woudl be to get the meta data, Document name, ID, Related Files, and File ID. Then loop through this file to download them. But then what would the path be to download this. How do I go about this? Thanks!!Solved0Views0likes5CommentsDownload multiple files on one click
Hello Guys, I am trying to download multiple files from the aras innovator SP11. I have written javascript code. I am fetching all the files from the relationship and trying to download all at a time. Below is my code - for(var i=0; i<array.length; i++){ var myFile = aras.getItemById("File", array, 0); aras.downloadFile(myFile,aras.getItemProperty(myFile, "filename")); } By using this code it is downloading only one file. I have added loop and trying to download the all files. Any one have idea on it? What is the issue?3.9KViews0likes2CommentsGet Token to download a file fails if file is associated with a Document
Hi, I am trying to download a file from Aras. To donwload a file we first need a token. I am getting this token from the AuthenticationBroker Service. However, the service is failing to issue the token with an error on Aras server. This occurs only if the file is associated with a Document or CAD. If the file is standalone (created from Admin UI - FileHandling), the service correctly issues the token. The request I am sending is as follows: <SOAP-ENV:Envelope xmlns:SOAP-ENV = "">schemas.xmlsoap.org/.../" xmlns:tem = "">http://tempuri.org/" xmlns:aras = "">schemas.datacontract.org/.../Aras.AuthenticationBroker"> <SOAP-ENV:Body> <tem:GetFileDownloadToken> <tem:param> <aras:fileId>21C0CBAAC7D0416DB58559C386841678</aras:fileId> <aras:dbName>InnovatorSolutions</aras:dbName> </tem:param> </tem:GetFileDownloadToken> </SOAP-ENV:Body> </SOAP-ENV:Envelope> The response in case of error is as follows: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap = "">schemas.xmlsoap.org/.../" xmlns:xsi = "">www.w3.org/.../XMLSchema-instance" xmlns:xsd = "">www.w3.org/.../XMLSchema"> <soap:Body> <soap:Fault> <faultcode>AuthenticationBrokerValidation</faultcode> <faultstring>Unknown exception on AuthenticationBroker ---> Object reference not set to an instance of an object.</faultstring> <detail/> </soap:Fault> </soap:Body> </soap:Envelope> What could be the reason? Thanks in advance.1.6KViews0likes0CommentsDownload file from vault server using soap
Hi , I want to download file from vault server using java and soap message . I have set the header and body accordingly for HTTP request . But I am getting following request . <SOAP-ENV:Envelope xmlns:SOAP-ENV="">schemas.xmlsoap.org/.../"><SOAP-ENV:Body><SOAP-ENV:Fault xmlns:af="">www.aras.com/.../faultcode><faultstring>ProcessApplyItem: Vault Server currently does not support "downloadFile" action of Files</faultstring><detail><af:legacy_detail>ProcessApplyItem: Vault Server currently does not support "downloadFile" action of Files</af:legacy_detail><af:legacy_faultactor /></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope> Is there any other process , actions to perform download file from vault server ? Can anybody help me to resolve this issue ? Thanks for reply !3.7KViews0likes3Comments