The requested URL /sslClientAuth/servlet/rest/search/objects was not found in Thingworx navigate
Hello,
I am new to thingworx navigate.
I have written a service where it pulls data based on part number. While executing the service. I get below error.
"The requested URL /sslClientAuth/servlet/rest/search/objects was not found on this server". Below is my code snippet.
var params = {
type: 'GET',
url: me.getRestUrl() + "/search/objects",
queryParams: {
'$select': properties,
'$filter': "number eq '" + number + "'",
'navigationCriteria': navigationCriteria,
'typeId': selectedTypeId
}
};
var jsonResult = me.processJSONRequest(params);
can anyone please let me know what's wrong with the code?
Thanks,
RPathan

