473,614 Members | 2,089 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 6079
The following registry setting whould allow you to see exact exception
behind general IE error message:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACH INE\SOFTWARE\Mi crosoft\.NETFra mework]
"ExposeExceptio nsInCOM"=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_MACH INE\SOFTWARE\Mi crosoft\Fusion]
"ForceLog"=dwor d: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.Ma nager: Microsoft.IE.Ma nager: unique id lgth
= 36
Microsoft.IE.Se cureFactory: Create SecureFactory() with
security information
Microsoft.IE.Ma nager: Created secure factory
Microsoft.IE.Se cureFactory: Creating instance of the
object in the correct domain
Microsoft.IE.Se cureFactory: pUrl =
http://localhost/BosNetUI/AR/ARViewerDLL.htm
Microsoft.IE.Se cureFactory: id =
86474707A3C6F63 616C686F6374710 000000
Microsoft.IE.Se cureFactory: link =
Microsoft.IE.Se cureFactory: licenses =
Microsoft.IE.Ma nager: Url =
http://localhost/BosNetUI/AR/ARViewerDLL.htm
Microsoft.IE.Ma nager: UrlGetPartW returned 0
Microsoft.IE.Ma nager: CodeBase = http://localhost
Microsoft.IE.Ma nager: Application = BosNetUI/AR
Microsoft.IE.Ma nager: Found a codebase
Microsoft.IE.Ma nager: UrlCanonicalize returned 0
Microsoft.IE.Se cureFactory: URL codeBase: http://localhost/
Microsoft.IE.Se cureFactory: URL application: BosNetUI/AR
Microsoft.IE.Se cureFactory: Locating domain for
http://localhost/
Microsoft.IE.ID Key: Created key
Microsoft.IE.Ma nager: The domain does not exist.
Microsoft.IE.ID Key: Created key
Microsoft.IE.Ma nager: The domain does not exist.
Microsoft.IE.Se cureFactory: Need to create domain
Microsoft.IE.Se cureFactory: Application base:
http://localhost/
Microsoft.IE.Se cureFactory: Private Bin Path: bin
Microsoft.IE.ID Key: Created key
Microsoft.IE.Se cureFactory: Trying to create instance of
type http://localhost/bin/UdARViewer.DLL#BOS.UD.UdARViewer
Microsoft.IE.Se cureFactory: Created instance of type
http://localhost/bin/UdARViewer.DLL::BOS.UD.UdARViewer

<MY OWN INSERT TEXT: LOADING SECOND PAGE>

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

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

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

Microsoft.IE.Se cureFactory: 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
511
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 that also hosts a .net object (e.g. by click a hyperlink).
4
1967
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 is their Codecs.Load which issues the error. I have the code working when the image is loaded from my local machine but when loading from a network share I receive a File Not Found error from the framework that is attempting to load then file...
1
1648
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 extension, like this: http://www.mywebpage.com/folder/notfound/ Any comments are preciated?
2
7584
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 works fine if the child window contains HTML, just not a PDF. Ideas? Note: These are not my PDFs, I just found some on the Net so you could test. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
6
3658
Tarantulus
by: Tarantulus | last post by:
if("dept"=='dept'){ document.getElementById('add').style.display='none'; }; <DIV id="add"> <some html here..> </DIV>
3
3181
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 stlDate, String matDate, int payFreq) throws ParseException { this.stlDate = Dates.convertStringToUSDate(stlDate); this.matDate = Dates.convertStringToUSDate(matDate); this.payFreq = payFreq; configure(); } If I click on the "Change...
1
5011
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 = AppXls.Workbooks.Add) in the following code. I searched , but couldn't get relevent solution. Imports Excel Dim AppXls As Excel.Application
8
3256
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 to the php file CheckLogin.php. This is a small part of the HTML page with the button: When I enter the username and password and click on the Submit button, I get the error: Plase help me on this.
3
8395
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 dynamically insert a few nodes into a webpage using insertBefore. Here's the HTML in question. (Yes, I know the HTML is terrible, but I didn't write it and can't edit it, which is why I have to insert things through the DOM instead. Long story.) <div...
3
5659
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 know why? can any one suggest some solution. When i click on the button on that page i got this error with something like this "Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had...
0
8130
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8433
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7093
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6088
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5540
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4052
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4127
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1747
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1425
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.