I'm looking for a quick concise way to connect to SolarWinds via the Orion SDK. I've read that the best way to connect is via net.tcp, but can't find a simple example.
var client = new InforemationServiceClient("NetTcpBinding_InformationService"
,string.Format("net.tcp://{0}:17778/SolarWindw/InformationService/v3/OrionBasic",hostname);
// I've tried using the connection syntax given for https, but the connection fails and the program exceptions...
// need to run queries against numerous tables.under IPAM
var result = client.QueryXml("SELECT IPAddress FROM IPAM.IPNode WHERE IPAddress NOT LIKE NULL",NULL);
Any help greatly appreciated.