Hi Mark,
You code confuses me a bit…
you have written:
Set oResult = TaminoX1.Insert(oDom)
lInoID = TaminoX1.GetInoId(oResult)
Dim lerr, allText As String
lerr = tamNonXML.GetErrorStatus(vErr)
allText = allText + oResult.xml + vErr
MsgBox allText
</pre>...so you insert using TaminoX1 (an instance of the ActiveX for processing XML) but you test tamNonXML.GetErrorStatus() where tamNonXML is a Non-XML instance.<BR><BR>To process XML you need code that instantiates the ActiveX like this:<BR><pre class="ip-ubbcode-code-pre">Set TaminoX = CreateObject("TAMINOX.TaminoX1")</pre><BR>and for non-XML like this:<BR><pre class="ip-ubbcode-code-pre">Set TaminoNX = CreateObject("TAMINONONXML.TaminoNonXmlCtrl1")
…or have I missed something?
#Tamino#webMethods#API-Management