Hi everbody
I'm going into the circle with a webscript issue and need some light.
So I've created a backend webscript to send back metadata fields for a document model.
This webscript is called in share to populate a dropdown list. For the moment it works because it (the webscript) is called by directly passing by the repository (http://localhost:8080/alfresco/s/...).
But when I try to call it like this in the js: Alfresco.constants.PROXY_URI + "/ec2m/dropdownlist/retrieveallMetadataFields?qname I get a 500 error exception with the following log in the console: XML Parsing Error: no root element found
Location: http://localhost:8080/share/proxy/alfresco//e2cm/dropdownlist/retrieveallMetadataFields?qname={http://www.alfresco.org/model/custommodelmanagement/1.0}customModelManagementModel
Any ideas what goes wrong in the share proxy
Alfresco version: 5.2.g
Share version: 5.2.f
Solved! Go to Solution.
Encode url parameters using encodeURIComponent method.It will work.
Encode url parameters using encodeURIComponent method.It will work.
Yes it worked! Thanks alot. I wouldn't have guessed it was that.
Code works fine with this code:
"/ec2m/dropdownlist/retrieveallMetadataFields?qname=" + encodeURIComponent(qnameToSearch.toString());
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.