473,405 Members | 2,167 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

VS .net causes IE throws "member not found" error

Dear ALL,

Is there some one ever faces this problem? And fix it?

The scenario is:

There's an html page that hosts a .net object (using
object tag), and this page opens the second html page
that
also hosts a .net object (e.g. by click a hyperlink).

This often causes "member not found" error in second page
when the .net
object tries to access one of the html control.

The problem is gone altogether if VS .net is un-installed.

Is there someone know how to fix this error?

Tx a loooot.

Jul 21 '05 #1
3 6049
The following registry setting whould allow you to see exact exception
behind general IE error message:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramewor k]
"ExposeExceptionsInCOM"=dword:00000003

Also using of the fusion log viewer (FusLogVw.exe) can be very useful to
check what assemblies are found and what are not and why.

The following key allows you to see successful binds in addition to
possible failures:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion]
"ForceLog"=dword:00000001

Thanks!
Konst

Jul 21 '05 #2
Tx a lot for idea.

I've tried it, and still get not clue what causes it.

I also tried to see the log file generated by IEHost (by
adding IEHostLogFile to registry) and still get not clue
what causes. It seems normal instead that before loading
the second page (in third row from last row) there's a
text read as:

"There are no context policies."

(Does this ring any bell on you?>

This line is not exist when loading the first page. Here
is the log file generated if you're interested to see it
(sorry it's rather lenght).

The first html page I'm trying to load
is "http://localhost/bin/UdARViewer.DLL" and the second
page is "http://localhost/bin/UdBoq.DLL".

So may you have more idea? Anyway you're the best :) (
sorry for more ask, but you're the only hope after 2 years
trying to solve this problem :( )

Really really tx lot.
<MY OWN INSERT TEXT: IEHostLogFile's log starts>

<MY OWN INSERT TEXT: LOG WHEN LOADING FIRST PAGE>

Creating security manager

Microsoft.IE.Manager: Microsoft.IE.Manager: unique id lgth
= 36
Microsoft.IE.SecureFactory: Create SecureFactory() with
security information
Microsoft.IE.Manager: Created secure factory
Microsoft.IE.SecureFactory: Creating instance of the
object in the correct domain
Microsoft.IE.SecureFactory: pUrl =
http://localhost/BosNetUI/AR/ARViewerDLL.htm
Microsoft.IE.SecureFactory: id =
86474707A3C6F63616C686F6374710000000
Microsoft.IE.SecureFactory: link =
Microsoft.IE.SecureFactory: licenses =
Microsoft.IE.Manager: Url =
http://localhost/BosNetUI/AR/ARViewerDLL.htm
Microsoft.IE.Manager: UrlGetPartW returned 0
Microsoft.IE.Manager: CodeBase = http://localhost
Microsoft.IE.Manager: Application = BosNetUI/AR
Microsoft.IE.Manager: Found a codebase
Microsoft.IE.Manager: UrlCanonicalize returned 0
Microsoft.IE.SecureFactory: URL codeBase: http://localhost/
Microsoft.IE.SecureFactory: URL application: BosNetUI/AR
Microsoft.IE.SecureFactory: Locating domain for
http://localhost/
Microsoft.IE.IDKey: Created key
Microsoft.IE.Manager: The domain does not exist.
Microsoft.IE.IDKey: Created key
Microsoft.IE.Manager: The domain does not exist.
Microsoft.IE.SecureFactory: Need to create domain
Microsoft.IE.SecureFactory: Application base:
http://localhost/
Microsoft.IE.SecureFactory: Private Bin Path: bin
Microsoft.IE.IDKey: Created key
Microsoft.IE.SecureFactory: Trying to create instance of
type http://localhost/bin/UdARViewer.DLL#BOS.UD.UdARViewer
Microsoft.IE.SecureFactory: Created instance of type
http://localhost/bin/UdARViewer.DLL::BOS.UD.UdARViewer

<MY OWN INSERT TEXT: LOADING SECOND PAGE>

Microsoft.IE.Manager: Microsoft.IE.Manager: unique id lgth
= 36
Microsoft.IE.SecureFactory: Create SecureFactory() with
security information
Microsoft.IE.Manager: Created secure factory
Microsoft.IE.SecureFactory: Creating instance of the
object in the correct domain
Microsoft.IE.SecureFactory: pUrl =
http://localhost/BosNetUI/sm/BoqDLL.htm
Microsoft.IE.SecureFactory: id =
86474707A3C6F63616C686F6374710000000
Microsoft.IE.SecureFactory: link =
Microsoft.IE.SecureFactory: licenses =
Microsoft.IE.Manager: Url =
http://localhost/BosNetUI/sm/BoqDLL.htm
Microsoft.IE.Manager: UrlGetPartW returned 0
Microsoft.IE.Manager: CodeBase = http://localhost
Microsoft.IE.Manager: Application = BosNetUI/sm
Microsoft.IE.Manager: Found a codebase
Microsoft.IE.Manager: UrlCanonicalize returned 0
Microsoft.IE.SecureFactory: URL codeBase: http://localhost/
Microsoft.IE.SecureFactory: URL application: BosNetUI/sm
Microsoft.IE.SecureFactory: Locating domain for
http://localhost/
Microsoft.IE.IDKey: Created key
Microsoft.IE.IDKey: IDKEy::Equals
Microsoft.IE.IDKey: Testing uniqueid
Microsoft.IE.IDKey: Uniqueid's are the same
Microsoft.IE.IDKey: Others URL = http://localhost/
Microsoft.IE.IDKey: My URL = http://localhost/
Microsoft.IE.Manager: The domain does exist.
Microsoft.IE.SecureFactory: Do not have to create new
domain
Microsoft.IE.SecureFactory: Existing Domain:
Microsoft.IE.SecureFactory: Name: localhost

"There are no context policies." --> <MY OWN INSERT
TEXT: THIS LINE IS NOT FOUND WHEN LOADING THE FIRST PAGE>

Microsoft.IE.SecureFactory: Trying to create instance of
type http://localhost/bin/UdBoq.DLL#BOS.UD.UdBoq

Microsoft.IE.SecureFactory: Created instance of type
http://localhost/bin/UdBoq.DLL::BOS.UD.UdBoq
Jul 21 '05 #3
I'm sorry for the long delay with my answer - I was totally distracted from
reading newsgroups.

-- The problem is gone altogether if VS .net is un-installed.

This part really confuses me. I don't understand how UNinstalling VS can
fix things.

From IEHost log it looks like both controls were loaded successfully. Are
you sure you have logged the failing case (with VS)?
Because both logs look perfectly fine.

I wonder if your controls interact in some way and may be the first one
somehow disturb the second. Have you tried to load the second page directly?

If you send me Fusion log (with ForceLog=1), exception text (if any) and
IEHost log for the case when second control fails to load, I can try to
investigate further.

Another useful (although sometimes too powerful) tool is FileMon from
www.sysinternals.com It can show you the history of the file I/O (both
successful and failed) on the machine. This log can help if everything else
failed.

Thank you!
Konst
Jul 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ari Royce Hidayat | last post by:
Dear ALL, Is there some one ever faces this problem? And fix it? The scenario is: There's an html page that hosts a .net object (using object tag), and this page opens the second html page...
4
by: mattsthompson | last post by:
Im writing a DLL that extends IHttpHandler to intercept requests for a certain file extension and deliver watermarked images. I'm using LeadTools' .NET framework for the image manipulation and it...
1
by: Casper Stendal | last post by:
Is it some how possible to handle a "directory not found" error through ASP.NET (or ASP), without having to make speciel a setup for the application in IIS, when it comes from an URL without...
2
by: johkar | last post by:
Why does if(win==null || win.closed) return true after one PDF is open. Something very wierd going on with IE 6. I also get a member not found error if a child window is already open. This script...
6
Tarantulus
by: Tarantulus | last post by:
if("dept"=='dept'){ document.getElementById('add').style.display='none'; }; <DIV id="add"> <some html here..> </DIV>
3
by: billelev | last post by:
I'm a relative newbie to java and have encountered a "source not found" error when trying to debug the following section of code (for the ParseException.class). public PaymentDates (String...
1
by: =?Utf-8?B?UGFsbHZp?= | last post by:
Hello friends, I am facing this problem("MEMBER NOT FOUND" error HRESULT : 0x80020003 (DISP_E_MEMBERNOTFOUND) ) in Visual Basic 2005 (i.e. VB .NET) for the fourth statement(ObjWb =...
8
by: webgenius | last post by:
Whenever I click the SUBMIT button in my HTML page, I get the "Object not found!" error. It was working fine yesterday. This error started to occur after I installed Codelobster and made some changes...
3
by: masterofzen | last post by:
I've been playing around with this for a while. I bet the answer is pretty obvious, but I'm just not seeing it. I'm also reasonably certain I've run into this problem before. I'm trying to...
3
maliksleo
by: maliksleo | last post by:
hi all i m having this "The resource cannot be found." error. I applied the url rewriting on my project every page is being browsed very well but i am getting the above error an some pages i dont...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.