runtime error '800a01fb'
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'
Looks like some problem occured inside your component...
Cheers
Ken
"TAO" <TAO [at] discussions.microsoft.com> wrote in message
news:B9536FE9-3B97-4B8A-83C9-682EC9F40B99 [at] 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'
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'
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