cancel
Showing results for 
Search instead for 
Did you mean: 

Guest Download - 403

pepecarioca
Champ in-the-making
Champ in-the-making
Hi all,
I'm having a trouble when I try to downlaod a content from alfresco with guest access.

I'm using the GuestDownlodServlet..this is an example of the URL of the content that I want to download:

http://localhost:8080/alfresco/guestDownload/attach/workspace/SpacesStore/88008b2e-7e6e-4641-91c6-5e...

If I do a request to that URL, I guet a 403.

I think that I have to change same parameter on the node, but I can't find which.

any ideas?
1 REPLY 1

pepecarioca
Champ in-the-making
Champ in-the-making
I found one way of doing this: (not sure if this is the correct one, but it works..)

I did it on a JavaScript webscript that creates the "public node":

                                uploadFile.move(vcVideoStoreNode);
      uploadFile.setInheritsPermissions(false);
      uploadFile.setPermission("Read", "guest");

      uploadFile.save();

regards, Diego