473,785 Members | 2,129 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

parser error message: Ambiguous match found

This is from a Dot Net 1.1 project converted to Dot Net 2.0.

In 1.1, all was fine without any problem.

In 2.0, on the developement machine all seems more or less OK.

In release mode on the test machine, I have this error. at Line 1.
Which is very explanative.

What should I look for ?

Thanks.
François.
May 22 '07 #1
3 7591
Look for class name references that omit namespaces. It sounds like you have
a conflict of 2 class name references (without explicit namespace) that
could be in more than one namespace.

--
HTH,

Kevin Spencer
Microsoft MVP

Printing Components, Email Components,
FTP Client Classes, Enhanced Data Controls, much more.
DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net

"Francois" <francois@coreb ridgecomwrote in message
news:Oy******** ******@TK2MSFTN GP02.phx.gbl...
This is from a Dot Net 1.1 project converted to Dot Net 2.0.

In 1.1, all was fine without any problem.

In 2.0, on the developement machine all seems more or less OK.

In release mode on the test machine, I have this error. at Line 1.
Which is very explanative.

What should I look for ?

Thanks.
François.


May 22 '07 #2
Seems that it was a variable name problem.
In the ASPX page, I had MyZone ID.
In the CS code, I used myZone variable.

I fear this was the origin of the problem.

I thing I did not still understand is that I could run the pages on the
development computer. Even if I was not under debugging. (and of course no
build error).

But on a computer without dev tools, I had the ambiguous error.

Thanks.

"Kevin Spencer" <un**********@n othinks.coma écrit dans le message de news:
ep************* @TK2MSFTNGP05.p hx.gbl...
Look for class name references that omit namespaces. It sounds like you
have a conflict of 2 class name references (without explicit namespace)
that could be in more than one namespace.

--
HTH,

Kevin Spencer
Microsoft MVP

Printing Components, Email Components,
FTP Client Classes, Enhanced Data Controls, much more.
DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net

"Francois" <francois@coreb ridgecomwrote in message
news:Oy******** ******@TK2MSFTN GP02.phx.gbl...
>This is from a Dot Net 1.1 project converted to Dot Net 2.0.

In 1.1, all was fine without any problem.

In 2.0, on the developement machine all seems more or less OK.

In release mode on the test machine, I have this error. at Line 1.
Which is very explanative.

What should I look for ?

Thanks.
François.



May 22 '07 #3
Look for class name references that omit namespaces. It sounds like
you have a conflict of 2 class name references (without explicit
namespace) that could be in more than one namespace.

Kevin Spencer
And some candidates for this are 'Menu' and 'Login', both of which now exist
in System.Web.UI.W ebControls. (I had a compile-time issue with both)

Strange that the error is only on the test machine?

Hans Kesting
"Francois" <francois@coreb ridgecomwrote in message
news:Oy******** ******@TK2MSFTN GP02.phx.gbl...
>This is from a Dot Net 1.1 project converted to Dot Net 2.0.

In 1.1, all was fine without any problem.

In 2.0, on the developement machine all seems more or less OK.

In release mode on the test machine, I have this error. at Line 1.
Which is very explanative.

What should I look for ?

Thanks.
François.

May 22 '07 #4

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

Similar topics

4
5524
by: Tom Warren | last post by:
About once a year or so for the last 10 years, I update my street address parser and I'm starting to look at it again. This parser splits a street address line into its smallest common elements (number, trailer, pre, name, suffix, post, unit, unit id). I always start this update process by searching Google-Groups and Google-web for anything new out there, but there is never very much. Has anyone run into anything in their travels?...
2
3721
by: Denon | last post by:
Hi, everybody I have a web control, build by VB.net, and if I put two instance on the same aspx, error occur while debugging. Parser Error Message: Ambiguous match found. It highlight the second instance web control in aspx This is my web control is declared at aspx like this <cc1:ControlXXX id="ControlXXX2" runat="server" Height="21px" Width="146px"
3
3743
by: Alexandre | last post by:
Hi! I receive this error in my webapp: Ambiguous match found. At line: Line 1: <%@ page language="C#" masterpagefile="~/memberscontents/master_interna.master" autoeventwireup="true" inherits="members_contents_user_profile, App_Web_user_profile.aspx.73f80179" title="Untitled Page" %>
1
1061
by: AVL | last post by:
hi, I've a problem in accessing user controls when I deploy the application in the production server.. I'm receiving the following error... Ambiguous match found. Source Error: Line 1: <%@ Control Language="c#" AutoEventWireup="false" Codebehind="CommViewEvents.ascx.cs" Inherits="HydPortal.UserControls.CommViewEvents1
1
1977
by: spamfree | last post by:
Hello, If anyone can give me some insight as to why this code fails to compile, I would be most appreciative. I have only been able to test it with gcc 3.4.4 and gcc 4.2.1, which both fail with different errors (details below). //////// begin test_bug.cpp // Standard Type2Type from Alexandrescu's Modern C++ Design
15
6019
by: aaragon | last post by:
Hello, does anyone have a clue about this error? and how to solve it? It seems to be trivial to me, but not for the compiler. I'm using g++ 4.2 on an Ubuntu Linux system: // main() .... std::ofstream fout; fout.open("hello.out"); fout<<setfill('-')<<setw(20)<<"-"<<setfill(' ')<<endl; fout<<"hello "; // this is line 139
18
4728
by: Just Another Victim of the Ambient Morality | last post by:
Is pyparsing really a recursive descent parser? I ask this because there are grammars it can't parse that my recursive descent parser would parse, should I have written one. For instance: from pyparsing import * grammar = OneOrMore(Word(alphas)) + Literal('end') grammar.parseString('First Second Third end')
3
5088
by: NHM | last post by:
I don't know if it's just me, but DB2 seems to have the worst syntatic parser ever created! Even after triple checking the documentation online, for the syntax of the statements the CLP seems to be unable to parse the simplest of statemets! For example, I would very much like to have this piece of work to work:
0
1358
by: arvindkgs | last post by:
Iam using c lexer that is flex generated and a c++ parser that is bison generated. i have modified the parser to acccept only string input. I am calling the parser function yyparse in a loop and reading line by line of user input. I stop the loop if the input is "quit". The problem i am facing is that when input does'nt match any rule then, the parser stops abruptly, and at next iteration starts off at same state, expecting the rule...
0
9646
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9484
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
10157
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10097
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9957
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...
1
7505
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
5386
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
5518
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2887
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.