Aras documentation sources
Hi, I am looking for an authoritative source for Aras documentation. I assume that docs.aras.com is the main entry point. I have noticed, that some documents are duplicated, or have multiple was of accessing them. For example in the top menu, below Help Center, there is an entry Documentation, which leads back the same site, docs.aras.com. On the right side, there are links to "Knowledgebases" , which are gated behind an "Aras community/subscriber" login, but they also lead back to the same documents, that are already accessible from the main page. Are there any other documents, that are not available though this page, specifically regarding administration of the Aras platform? Thanks and best regards, ThomasSolved44Views0likes2CommentsR37 docs: any bulk-access, single-page, or PDF option?
Hi all, Coming from R35 where PDFs were offered alongside the Online Docs, we noticed R37 dropped the PDFs and split each guide into many short pages reached only through the left-side tree. A few questions: - Is there a downloadable bundle (zip, EPUB, consolidated PDF) for R37 that we missed? - A "full guide on one page" / print-friendly view we can link our team to? - A sitemap or index endpoint for the documentation portal? Onboarding new admins and cross-referencing topics has gotten harder when each section is split across dozens of one-minute pages. Any pointer to a denser format would help a lot. Thanks!Solved115Views1like5CommentsHow 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!!Solved168Views0likes5CommentsBatch Download of Files
We have been using Aras Innovator in our entry level CAD course for the past couple of years. We'd now like to have the ability to batch download CAD files from different users/students to say a zip file or local folder. Is there a way to access the CAD files based on a query and download in bulk? Are there any community projects that have been developed to accomplish this?3.2KViews0likes3CommentsDownload 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.7KViews0likes0CommentsDownload 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