11-12-2017 01:17 PM
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
11-12-2017 10:48 PM
Encode url parameters using encodeURIComponent method.It will work.
11-12-2017 10:48 PM
Encode url parameters using encodeURIComponent method.It will work.
11-13-2017 12:54 PM
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());
Explore our Alfresco products with the links below. Use labels to filter content by product module.