Skip to main content
12-Amethyst
September 4, 2018
Solved

The requested URL /sslClientAuth/servlet/rest/search/objects was not found in Thingworx navigate

  • September 4, 2018
  • 1 reply
  • 3960 views

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

Best answer by Riz-4165786

Change the baseURL under your thing-->configuration. In my case I didn't provide Windchill. After modifying the baseURL, the issue got resolved. This is what I provided. Replace localhost with your server name. 

https://localhost:443/Windchill

 

I hope this helps.

1 reply

12-Amethyst
September 4, 2018

The issue is resolved now.

5-Regular Member
September 18, 2018

what change di dyou make to fix this issue?

Riz-416578612-AmethystAuthorAnswer
12-Amethyst
September 18, 2018

Change the baseURL under your thing-->configuration. In my case I didn't provide Windchill. After modifying the baseURL, the issue got resolved. This is what I provided. Replace localhost with your server name. 

https://localhost:443/Windchill

 

I hope this helps.