473,326 Members | 2,114 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,326 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 6041
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...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.