cancel
Showing results for 
Search instead for 
Did you mean: 

How to Generate Download links

anshul
Champ in-the-making
Champ in-the-making
hi
I have create a webform in jsp to upload files into alfresco repository.
Now i have to generate a download link to a file so that a user can download a file from alfresco repository to his computer.
How can i do that.

Thanks
Anshul
2 REPLIES 2

jcustovic
Champ in-the-making
Champ in-the-making


Content content = null;
try {
   Content[] read = getContentService().read(new Predicate(new Reference[] { nodeReference }, WORKSPACE_STORE, null), Constants.PROP_CONTENT);
   content = read[0];
   System.out.println(content.getUrl());
} catch (Exception) { }

anshul
Champ in-the-making
Champ in-the-making
Hi
Thanks for your reply. I got the url but when i type that url in browser it ask for authentication. How can i skip that authentication part.

Thanks
Anshul