Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Testing getTicket.asp - Server.CreateObject Failed

We just installed QV9 and I am having some issues processing a ticket request.This same machine was running QVS8.5 (beta) and the getTicket functionality worked fine.

ASP Code:

Dim vUser,vCom,tktResponse

vUser = Trim(Request.QueryString("u"))
vCom = "<Global method='GetTicket'><UserId>" & vUser & "</UserId></Global>"

set ntsecurity = Server.CreateObject ("QVSRemote.Client")
ntsecurity.AdminConnect "localhost"
tktResponse = ntsecurity.Execute(vCom)

Response.Write "<textarea rows=2 cols=85>" & vCom & "</textarea><br />"
Response.Write "<textarea rows=2 cols=85>" & tktResponse & "</textarea>"

Response:

Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/hello.asp, line 15

800401f3

Any ideas? Is there a DLL that may not be registered properly?My thought is that if this was a permission issue I should still be getting back some XML (<Error />).

Thanks,
Jacob

1 Reply
Anonymous
Not applicable
Author

Figured it out. It turns out the server was not installed with IIS support during the intial install so QvsComRemote.dll was not loaded.

Jacob