473,473 Members | 1,960 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Interface inheritence and COM

yoz
Hi everyone,

I wonder if you can shed some light on a problem I have. I am
exporting a C# .Net set of classes to COM. All of it is exported
properly but the interface inheritences are not in the type library.

for example:

public interface IA
{
void proc1();
}

public interface IB: IA
{
void proc2();
}

In the type library IA and IB BOTH descend from IDispatch. Is there an
attribute to say that when tlbexp.exe generate the type library, it
makes IB descend from IA?

Regards
Nov 15 '05 #1
4 3883
Have you tried using - [ClassInterface(ClassInterfaceType.AutoDual)]
"yoz" <ne******@hotmail.com> wrote in message
news:21**************************@posting.google.c om...
Hi everyone,

I wonder if you can shed some light on a problem I have. I am
exporting a C# .Net set of classes to COM. All of it is exported
properly but the interface inheritences are not in the type library.

for example:

public interface IA
{
void proc1();
}

public interface IB: IA
{
void proc2();
}

In the type library IA and IB BOTH descend from IDispatch. Is there an
attribute to say that when tlbexp.exe generate the type library, it
makes IB descend from IA?

Regards

Nov 15 '05 #2
Hi Yoz,

When you look at the .NET class that's exposed to COM, what is its
ClassInterfaceType attribute set to? This is one way of controlling
versioning issues when a COM client consumes a .NET component.

ClassInterfaceType.AutoDispatch is the default. It is friendly about COM
versioning, but at the cost of allowing only late-bound COM clients and
potential bugs that won't be found until run-time. Your COM client will be
late-bound. This may be what you're seeing currently.

ClassInterfaceType.AutoDual allows early-bound COM clients and compile-time
checking, but completely ignores COM versioning, meaning that you should
(and may have to) recompile your COM clients every time the .NET component
is changed.

ClassInterfaceType.None together with a separation of the class interface
from its implementation gives you the best of both worlds: early binding and
compile-time checking together with the flexibility to change the .NET
component. I believe that there's an example in the docs that shows you how
to do this.

HTH,

Mark
--
Author of "Comprehensive VB .NET Debugging"
http://www.apress.com/book/bookDisplay.html?bID=128
"yoz" <ne******@hotmail.com> wrote in message
news:21**************************@posting.google.c om...
Hi everyone,

I wonder if you can shed some light on a problem I have. I am
exporting a C# .Net set of classes to COM. All of it is exported
properly but the interface inheritences are not in the type library.

for example:

public interface IA
{
void proc1();
}

public interface IB: IA
{
void proc2();
}

In the type library IA and IB BOTH descend from IDispatch. Is there an
attribute to say that when tlbexp.exe generate the type library, it
makes IB descend from IA?

Regards
Nov 15 '05 #3
yoz
OK I think I understand what C# wants.

I created an interface, and implemented it in the class to export. C#,
however, creates an "_" (underscore) interface for each object, and instead
of deriving interaces it put the whole ancestry public methods and
properties in every interface. The problem is that you cannot specify the
GUID of the "_" interface so it changes everytime you compile. Thus that is
why late binding always work, however application need to be recompile if my
..NET COM Module is compile with early binding.

Do I got it right?

I am sorry to sound ignorant but if it is, why can't you keep the same GUID?
Is that a design feature because I find it very stupid... I come from
Delphi, but I remember VB guys I work with told me that VB6 also change the
GUID at every compile but I was also told you can stop that.... Is there a
way to stop that under C#?

"Mark Pearce" <ev**@bay.com> wrote in message
news:Oa**************@tk2msftngp13.phx.gbl...
Hi Yoz,

When you look at the .NET class that's exposed to COM, what is its
ClassInterfaceType attribute set to? This is one way of controlling
versioning issues when a COM client consumes a .NET component.

ClassInterfaceType.AutoDispatch is the default. It is friendly about COM
versioning, but at the cost of allowing only late-bound COM clients and
potential bugs that won't be found until run-time. Your COM client will be
late-bound. This may be what you're seeing currently.

ClassInterfaceType.AutoDual allows early-bound COM clients and compile-time checking, but completely ignores COM versioning, meaning that you should
(and may have to) recompile your COM clients every time the .NET component
is changed.

ClassInterfaceType.None together with a separation of the class interface
from its implementation gives you the best of both worlds: early binding and compile-time checking together with the flexibility to change the .NET
component. I believe that there's an example in the docs that shows you how to do this.

HTH,

Mark
--
Author of "Comprehensive VB .NET Debugging"
http://www.apress.com/book/bookDisplay.html?bID=128
"yoz" <ne******@hotmail.com> wrote in message
news:21**************************@posting.google.c om...
Hi everyone,

I wonder if you can shed some light on a problem I have. I am
exporting a C# .Net set of classes to COM. All of it is exported
properly but the interface inheritences are not in the type library.

for example:

public interface IA
{
void proc1();
}

public interface IB: IA
{
void proc2();
}

In the type library IA and IB BOTH descend from IDispatch. Is there an
attribute to say that when tlbexp.exe generate the type library, it
makes IB descend from IA?

Regards

Nov 15 '05 #4
Hi Yoz,

Look at the GuidAttribute design-time attribute in the MSDN documentation.
This attribute allows you to specify a guid for a class, interface or
complete type library, and this guid can be kept even when you change your
interface.

HTH,

Mark
--
Author of "Comprehensive VB .NET Debugging"
http://www.apress.com/book/bookDisplay.html?bID=128
"yoz" <netfever@hot_REMOVE_SPAM_mail.com> wrote in message
news:%U*******************@news-binary.blueyonder.co.uk...
OK I think I understand what C# wants.

I created an interface, and implemented it in the class to export. C#,
however, creates an "_" (underscore) interface for each object, and instead
of deriving interaces it put the whole ancestry public methods and
properties in every interface. The problem is that you cannot specify the
GUID of the "_" interface so it changes everytime you compile. Thus that is
why late binding always work, however application need to be recompile if my
..NET COM Module is compile with early binding.

Do I got it right?

I am sorry to sound ignorant but if it is, why can't you keep the same GUID?
Is that a design feature because I find it very stupid... I come from
Delphi, but I remember VB guys I work with told me that VB6 also change the
GUID at every compile but I was also told you can stop that.... Is there a
way to stop that under C#?

"Mark Pearce" <ev**@bay.com> wrote in message
news:Oa**************@tk2msftngp13.phx.gbl...
Hi Yoz,

When you look at the .NET class that's exposed to COM, what is its
ClassInterfaceType attribute set to? This is one way of controlling
versioning issues when a COM client consumes a .NET component.

ClassInterfaceType.AutoDispatch is the default. It is friendly about COM
versioning, but at the cost of allowing only late-bound COM clients and
potential bugs that won't be found until run-time. Your COM client will be
late-bound. This may be what you're seeing currently.

ClassInterfaceType.AutoDual allows early-bound COM clients and compile-time checking, but completely ignores COM versioning, meaning that you should
(and may have to) recompile your COM clients every time the .NET component
is changed.

ClassInterfaceType.None together with a separation of the class interface
from its implementation gives you the best of both worlds: early binding and compile-time checking together with the flexibility to change the .NET
component. I believe that there's an example in the docs that shows you how to do this.

HTH,

Mark
--
Author of "Comprehensive VB .NET Debugging"
http://www.apress.com/book/bookDisplay.html?bID=128
"yoz" <ne******@hotmail.com> wrote in message
news:21**************************@posting.google.c om...
Hi everyone,

I wonder if you can shed some light on a problem I have. I am
exporting a C# .Net set of classes to COM. All of it is exported
properly but the interface inheritences are not in the type library.

for example:

public interface IA
{
void proc1();
}

public interface IB: IA
{
void proc2();
}

In the type library IA and IB BOTH descend from IDispatch. Is there an
attribute to say that when tlbexp.exe generate the type library, it
makes IB descend from IA?

Regards


Nov 15 '05 #5

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

Similar topics

9
by: Pierre Barbier de Reuille | last post by:
Ok, I first want to stress that I looked through the newsgroups archives (on Google) for an answer to my question, but I didn't find it. It's about the interface of the set classes as defined in...
5
by: TruongLapVi | last post by:
Hi, Why C# does not support Interface static member ? Some time I want implement NullObject Pattern: public interface INullObject { public static INullObject Null { get { return...
26
by: Marius Horak | last post by:
As in subject. Thanks MH
0
by: cs_hart | last post by:
After converting a java application to c# using the microsoft conversion assistant, I get multiple errors "type in interface list is not an interface". From reading other posts it appears that this...
15
by: jon | last post by:
How can I call a base interface method? class ThirdPartyClass :IDisposable { //I can not modify this class void IDisposable.Dispose() { Console.WriteLine( "ThirdPartyClass Dispose" ); } } ...
0
by: Michelangelo | last post by:
Hello, I want to build a class library with baseclasses. The classes that inherit from these baseclasses will get a COM-interface. I use the following way: *************** REM BaseClass.dll:...
5
by: LS | last post by:
Can a WebMethod return an Interface type? Can we pass an interface parameter ? Example : public interface IEntity { long Id { get; set; } string Name { get; set; } }
17
by: Zytan | last post by:
Aren't all classes interfaces? What constitutes an interface (and with it, the "I" prefix distinction)? Zytan
11
by: Wayne Pedersen | last post by:
Need some help - and I may be doing this wrong, so please correct and suggest! I'm learning the MVP method, which I seem to have a good grasp of. Now I am trying something a bit more advanced. ...
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...
1
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
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,...
1
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...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.