My C# code....
SWClient.dictionary objParamBag = new SWClient.dictionary();
SWClient.item objItem = new SWClient.item();
objItem.key = "IPAddress";
objItem.value = _IPAddr;
objParamBag.Add(objItem);
...................
SWClient.InformationServiceClient objClient = new InformationServiceClient("OrionProductionV3");
objClient.ClientCredentials.UserName.UserName = "nsnvpnapi";
objClient.ClientCredentials.UserName.Password = "nsnvpnapi";
string ClientResponse = objClient.Create("Orion.Nodes", objParamBag);
return ClientResponse;