runtime error "800a01fb"

runtime error "800a01fb"

am 03.01.2007 12:16:00 von TAO

The hosting server is running Win2003 , my code is reading from a registered
DLL file on the same server :
The following is where the code stop...

30 Dim TransVal, varPaymentID, varPaymentPage, varErrorMsg, varRawResponse
31
32 TransVal = MyObj.PerformTransaction
33 varRawResponse = MyObj.RawResponse
34 varPaymentID = MyObj.PaymentID
35 varPaymentPage = MyObj.PaymentPage
36 varErrorMsg = MyObj.ErrorMsg

Then this msg appear :

Microsoft VBScript runtime error '800a01fb'

An exception occurred: 'PerformInitTransaction'

/buy.asp, line 32

Please Help me...

Re: runtime error "800a01fb"

am 06.01.2007 13:36:23 von Ken Schaefer

Looks like some problem occured inside your component...

Cheers
Ken


"TAO" wrote in message
news:B9536FE9-3B97-4B8A-83C9-682EC9F40B99@microsoft.com...
> The hosting server is running Win2003 , my code is reading from a
> registered
> DLL file on the same server :
> The following is where the code stop...
>
> 30 Dim TransVal, varPaymentID, varPaymentPage, varErrorMsg,
> varRawResponse
> 31
> 32 TransVal = MyObj.PerformTransaction
> 33 varRawResponse = MyObj.RawResponse
> 34 varPaymentID = MyObj.PaymentID
> 35 varPaymentPage = MyObj.PaymentPage
> 36 varErrorMsg = MyObj.ErrorMsg
>
> Then this msg appear :
>
> Microsoft VBScript runtime error '800a01fb'
>
> An exception occurred: 'PerformInitTransaction'
>
> /buy.asp, line 32
>
> Please Help me...
>
>

Re: runtime error "800a01fb"

am 17.01.2007 14:48:01 von Lucas Junqueira

I'm having the same kind of problem.
My ASP application which uses .DLLs and ActiveEXEs, works just fine in
the older versions of IIS.
But in the IIS 6 under windows 2003 server, no deal.
I suspect that it has something to do with my DLL trying to perform
something not permited by IIS 6 or win2003.
Need help! :D

Re: runtime error "800a01fb"

am 17.01.2007 20:49:03 von TAO

I suposed so too, but the problem was the path i provided in my code...

It Was:
Dim MyObj
Set MyObj = Server.CreateObject("e24PaymentPipe.e24PaymentPipe.1")
MyObj.ResourcePath = "c:\Domains\SiteDirectory\"

I change it to :
Dim MyObj
Set MyObj = Server.CreateObject("e24PaymentPipe.e24PaymentPipe.1")
MyObj.ResourcePath = "c:\Domains\SiteDirectory\wwwroot\"

Its working now ... Try it
I hope this will help u... :D