I am currently utilizing the Dojo JsonRest in order to populate a dijit.form.select Box, and here is the code snippet I am using:
var stateStore = new JsonRest({target: "ip-address/activiti-rest/service/repository/process-definitions?startableByUser=kermit", headers: {"Authorization": "Basic a2VybWl0Omtlcm1pdA=="}});
An issue arises where the target URL is unexpectedly extended with &name=*
This results in the server receiving a request like so:
ipaddress/activiti-rest/service/repository/process-definitions?startableByUser=kermit&name=*
The origin of this unexpected extension remains elusive to me.
In my pursuit for answers, I stumbled upon an article at: , wherein the use of the allowNoTrailingSlash attribute was suggested but failed to resolve the issue.
This conundrum leads me to inquire about how to prevent alterations to the target url. It is imperative that &name=*
does not get appended to the end of the url.
Your assistance on this matter would be greatly appreciated. Best regards.