Page Timeout or authenticatin fails

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have developed a WebApplication in ASP.NET that refers and instantiates a
VB 6.0 DLL

Dim Package As New PkgUtil.Package

In my development PC the application runs fine. The same application
deployed on the live server fails to instantiate the DLL. The web page
expires or the user will be prompted for re-authentication (supply user name
and password). Even after supplying the credentials a page will display a
message "You are not authorized..."

My user account is having Administrative, Debuggers previleges in both the
development PC as well as in the live server.

Any ideas to solve this issue will be highly appreciated.

Thanks,
AD
 
Your user account on live-server is running on your account? or aspnet
user account?
(Aspnet must have appropriate rights.)
That VB6 dll must be some sort of COM/ActiveX. Give your webApp user
(ASPNet) the rights to launch your VB6 based dll object(s). Also if DLL
is on NTFS check proper rights on dll-file as well.
 
Back
Top