I have IIS 6 running on windows server 2003 service pack1.
We have an ASP application hosted on IIS.
From the ASP we are calling Visual basic class files by using the code.
<%
Set objWrapperClass = Server.CreateObject("comwclsWrapper.clsSelect")
intSuccess = objWrapperClass.fnSelWrapper("GET_USER_GROUP_ID", varErrNum, varErrMsg, rsGroupID, strUserID)
%>
The application is working fine normally.
If we want to debug in VB and put a break point and ran the application, the code is failing at ‘Server.CreateObject’ line and following error will come.
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object
/ASP/login.asp, line 34
If we turn off the debug mode in VB, the application will works fine.
Are there any settings needs to be done in IIS 6 to enable the debugging in VB 6
Any help is appreciated.