I have a .Net API (wsdl). I have created a proxy for it, and now it want to use it in ASP. Since, we didn’t get any readymade Proxy generator for ASP/vbscript, We used .Net command prompt to generate the Proxy class.
Error :
Server object, ASP 0177 (0x80131509)
80131509
If I refer this dll from Asp.net then, it works fine.
Code:
Dim ws
set ws = Server.CreateObject("Integration_1_1") ‘line where ERROR appears
Dim auth
auth = ws.Login(entityID, partnerKey, userKey)
If (auth <> "") and not isnull(auth) Then
Dim customer
set Customer = server.createobject("Customer")
Customer = ws.GetCustomer(auth, "TESTINTEGR").Result
End If
Server object, ASP 0177 (0x80131509)
80131509
If I refer this dll from Asp.net then, it works fine.
Comment