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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP Error Code: '80046465'

Status
Not open for further replies.

innovative1234

Programmer
Jun 12, 2002
16
0
0
US
Hi,

I am getting an error in ASP with error code: '80046465'.
Any pointers on what this error code corresponds to?

Thanks!

- Amit
 
Could you quote some of your code which is going this error??

When you got this error message, the internal msg will anounce the exact line of its error.
maybe you can use that as direction to your error ASP page.

or you could go to site. and search for your error number.

[lipstick2]
 
I am making a call to the VB COM component which throws error. Due to some reason I cannot debug the code directly so I am trying to analyse and see the problem.

Following is the Code in COM:-

:
:
Dim strOutPutFileName As String
Dim aen As AppErrorNumber
:
:
:

strOutPutFileName = \\unixserver\opt\exp

aen = aenOpenFile
intFileNumber = FreeFile()
Open strOutPutFileName For Output Access Write As intFileNumber
:
:

The internal error message does not get printed.

Also I tried to look for the error number on but could not find any answer.




- Amit
 
i want the ASP code where u create the object... have u registered it in the server???

Known is handfull, Unknown is worldfull
 
Following is the ASP Code:

Set objDataServicesManager = Server.CreateObject ("XYZ.Services")

Dim blnDataFound

blnDataFound = objDataServicesManager.Export(ClusterID)

The Export method in the COM object does get called but it seems it throws an error from the COM object when it reaches:

strOutPutFileName = \\unixserver\opt\exp
aen = aenOpenFile
intFileNumber = FreeFile()
Open strOutPutFileName For Output Access Write As intFileNumber

I believe it is not able to write the file to a different server.

I somehow need what the error code '80046465' stands for.

Thnx!



- Amit
 
can you copy paste the actual error, sometimes those 800XXXX errors are multi-functional, and the error text typically describes what's really wrong.

[thumbsup2]DreX
aKa - Robert
 
what you run your page and you only get error:'80046465' ?

anyhow i'm not finding any references to this number google only reports this thread (odd, it's a number) and msdn has nothing in any product that uses this number

and the component you're using, someone must have written it, is it possible to contact the author/distributor for support?



[thumbsup2]DreX
aKa - Robert
 
try calling the com file in a VB project itself and see if it works...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top