ASP using TAMINOLIB.JS

Hello!
How should I use this js library in my VBScript using ASP?

I’ve been trying like this example.ASP:

<%
Set PageSize = 0
Set DataBase = “http://localhost/tamino/database/col
Set Query = “dok”
Set Client = Server.CreateObject(“TaminoClient(DataBase, PageSize)”)
Set XMLObject = Client.query(Query)
Set XSLObject = Server.CreateObject(“Microsoft.XMLDOM”)
If (XSLObject.loadXML(str) <> 0) Then
Response.Write XSLObject.parseError.reason
Else
Response.Write XMLObject.DOM.transformNode(XSLObject.documentElement)
End If

Response.End

%>

Line:
Set Client = Server.CreateObject(“TaminoClient(DataBase, PageSize)”)

doesn’t work. :frowning:

How should I create object TaminoClient in ASP file? :eek:

Regards
Dariusz Baumann

Dariusz,
There are several samples on this site that will illustrate how to access Tamino in ASP.

What are you trying to do? Do you want to just read data from Tamino or do you want to update records?

Knute Hestness :cool:

:o Question to question ?! :confused:

As you see on my attached sample code, I want only READ data from TAMINO and tranform it by XSL stylesheet using ASP technology!

Could you explain what can I do? :frowning:

What is wrong in my example? How can I fix it? :frowning:

Regards
Dariusz Baumann