IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  ASP and taminoX.ocx

    Posted Thu July 11, 2002 12:57 PM

    I’m starting to build an application with the tamino database.
    I want to use the taminoX.ocx ActiveX API.

    Can anybody send me an example of a simple form that inserts data into the database using ASP programming.

    I already have the TaminoAcc file, so that I don’t need! :frowning:


    #webMethods-Tamino-XML-Server-APIs
    #API-Management
    #webMethods


  • 2.  RE: ASP and taminoX.ocx

    Posted Thu July 11, 2002 03:21 PM

    Sorry I don’t know ASP. However, the following is the equivalent VB that does what you ask:

    Set TamX = CreateObject(“TaminoX.TaminoX1”)
    TamX.Initialize
    TamX.csDatabaseURL = “http://localhost/tamino/mydb/ino:etc

    Set xmldoc = CreateObject(“MSXML.DOMDocument”)
    xmldoc.LoadXML (“<?xml version='1.0'?>”)
    Set res = TamX.Process(xmldoc.DocumentElement, “”)

    outputError = TamX.GetErrorStatus(errtxt)
    If outputError <> 0 Then
    ’ errtxt has error message
    End If


    #API-Management
    #webMethods-Tamino-XML-Server-APIs
    #webMethods


  • 3.  RE: ASP and taminoX.ocx

    Posted Wed September 14, 2005 08:27 PM

    Here same example in VBScript, you can use somithing like it in an ASP code.


    #webMethods
    #API-Management
    #webMethods-Tamino-XML-Server-APIs