Hello, is there any way to disable the call to /proxy/alfresco/api? By now, i'm trying to automatically access to edit-metadata page after uploading a file via the html-uploader. I've added this little piece of code
<blockcode>
//Show edit-metadata form after upload (by Tiziano) var nodeRefURL="edit-metadata?nodeRef=" + response.nodeRef; Alfresco.util.navigateTo(nodeRefURL);
</blockcode>
at the end of _onUploadSucces method in html-upload.js. The script works correctly but, when parsing the url to the browser, /proxy/alfresco/api is added between share/ and /page and this results in 404 error-page not found. If i delete /proxy/alfresco/api from the url, the edit-metadata page is displayed correctly.