I am following the NCM config search guide here (https://github.com/solarwinds/OrionSDK/wiki/NCM-Config-Search) to try and use the API to search for things. Right now I just have a very simple query to test the API out, but I'm getting an error as seen in the error.txt attachment.
Brief error:
"Message": "There was no endpoint listening at net.tcp://solarwinds_address:17777/orion/ncm/businesslayer that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details."
I believe my parameters are correct with no errors. Full cURL generated code from Postman is attached, but in a nutshell I'm doing:
POST to URL - https://solarwinds_address:17778/SolarWinds/InformationService/v3/Json/Invoke/Cirrus.ConfigArchive/ConfigSearch
Body content type JSON - ["username", null, null, false, false, null, null]
Port 17777 is verified to be listening as seen by running netstat on the server and by running nmap on my machine to verify reachability on that port. I also restarted all SWIS services on the server, but I still get the same error. I can run other API calls with no problems. It's just the config search that is returning this weird error I can find nothing on. I've tried multiple config search queries, but get the same error for all of them. I found where someone else ran into this same issue a few years ago, but there was no resolution found (Orion server - Communicating error - SOAP 17777 ). Does anyone know a solution for this?