Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi, Does Anyone Knows why the fo

Status
Not open for further replies.

mitch77

Programmer
Nov 16, 2000
42
PT
Hi,

Does Anyone Knows why the following error appears?

---------------------
error 'ASP 0115'
Unexpected error/member_login.asp
A trappable error occurred in an external object. The script cannot continue running.
----------------------

I am using NT4.0 with IIS4.0 & Service Pack 6.
My Connection To Oracle Database is:

---------------------
Set OraSession = CreateObject("OracleInProcServer.XOraSession")
Dim Database
Set Database = OraSession.OpenDatabase("SGP", login/login , 0)
---------------------
Thanks, Mitch
 
ASP 115 means that an error occurred in an ActiveX component.

nick bulka

 
ActiveX ?? But I Don't Have any activeX Component!!

I think (not sure), that the error appears because i am using session variables, and i don't know why it happens.

Can Anyone Help me to solve this problem??

NickBulka thanks for your help anyway.
 
When you do a CreateObject you are creating an instance of a component, server-side. These errors are hard to troubleshoot. See if you can pinpoint the line where the script is bombing. To do this you can comment out code one or two lines at a time until you get no errors or a different error. My guess based on what you've posted here is that the CreateObject line is bombing, and this may mean anything from you have to reinstall MDAC to the db server can't be reached from the IIS server.
 
Ensure you have the following entry in your sqlnet.ora:
SQLNET.AUTHENTICATION_SERVICES=(NONE)

I think the oleobject creation is ok, it's when you try to open the database when you get the error
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top