This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

interface creation fails after installing NPM 10.2

Prior to installing NPM 10.2, I had a script that would successfully allow you to add or delete nodes and interfaces from Orion.  In order to correct an unrelated issue, we upgraded our development environment to 10.2, and now the script fails when attempting to add an interface.  Below, find the soap envelope that is sent for the request (this has not changed...), as well as the fault response received.  There are no newlines actually present in the request, i have edited it for readability.

 

<?xml version="1.0" encoding="UTF-8"?>

<soap:Envelope xmlns:wsu="">docs.oasis-open.org/.../oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap12="">schemas.xmlsoap.org/.../" xmlns:wsap="">schemas.xmlsoap.org/.../policy" xmlns:wsp="">schemas.xmlsoap.org/.../policy" xmlns:soap="">schemas.xmlsoap.org/.../" xmlns:wsdl="">schemas.xmlsoap.org/.../" xmlns:soapenc="">schemas.xmlsoap.org/.../" xmlns:tns="">schemas.solarwinds.com/.../informationservice" xmlns:xsd="">www.w3.org/.../XMLSchema" xmlns:wsa="">schemas.xmlsoap.org/.../addressing" xmlns:wsa10="">www.w3.org/.../addressing" xmlns:msc="">schemas.microsoft.com/.../contract" xmlns:wsaw="">www.w3.org/.../wsdl" soap:encodingStyle="">schemas.xmlsoap.org/.../" xmlns:wsam="">www.w3.org/.../metadata" xmlns:xsi="">www.w3.org/.../XMLSchema-instance" xmlns:wsx="">schemas.xmlsoap.org/.../mex">

<soap:Body>

<tns:Create>

<entityType xmlns="">schemas.solarwinds.com/.../informationservice" xsi:type="xsd:string">Orion.NPM.Interfaces</entityType>

<properties xmlns="">schemas.solarwinds.com/.../informationservice">

<item>

<key>NodeID</key>

<type>System.String</type>

<value>46</value>

</item>

<item>

<key>ifName</key>

<type>System.String</type>

<value>Fa0/12</value>

</item>

</properties>

</tns:Create>

</soap:Body>

</soap:Envelope>

 

<s:Envelope xmlns:s="">schemas.xmlsoap.org/.../">

<s:Header><log xmlns="">schemas.solarwinds.com/.../s:Header>

<s:Body>

<s:Fault>

<faultcode>s:Client</faultcode>

<faultstring xml:lang="en-US">Create failed, check fault information.</faultstring>

<detail>

<InformationServiceFaultContract xmlns="">schemas.solarwinds.com/.../informationservice" xmlns:i="">www.w3.org/.../XMLSchema-instance">

<Message>Column name 'IfName' appears more than once in the result column list.</Message>

</InformationServiceFaultContract>

</detail>

</s:Fault>

</s:Body>

</s:Envelope>