473,416 Members | 1,721 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,416 software developers and data experts.

Mixed-mode and "non-default" app domains

Is it at all possible to leverage mixed-mode assemblies from AppDomains
other than the default AppDomain? Is there any means at all of doing this?
Mixed-mode is incredibly convenient, but if I cannot load/unload/reload
extensions into my large and slow-to-load application during development
without restarting the process then the disadvantages may outweigh the
advantages.

I've got a mixed-mode program in which I create a new AppDomain and then use
CreateInstance() on a type from another assembly. That other assembly is
created by the C# compiler. Though written in C# the type being instanced
is itself derived from a mixed-mode class in yet another 3rd assembly.

I get a System.NullReferenceException when the mixed-mode code runs in the
non-default app-domain.
Nov 17 '05 #1
8 3471
Hi Bern,

Thanks for posting in the community.

Currently I am consulting your problem to some dev members . We will reply
here with more information as soon as possible.
If you have any more concerns on it, please feel free to post here.
Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------

Nov 17 '05 #2
Hi Bern,

From your description, I understand that you got a
System.NullReferenceException when the C# type(derived from a mixed-mode
class) is being instanced in a non-default AppDomain, please correct me if
I misunderstand your issue.

Based on my knowledge, the System.NullReferenceException will be thrown
while the code referenced to an invalid object, in your case, I think
perhaps it reference to a object which created in another AppDomain.

Something like the description from the Don Box's <<Essential.NET>> Chapter
8:
"
...
An object resides in exactly one AppDomain, as do values. Moreover, object
references must refer to objects in the same AppDomain. ...
Like objects, types reside in exactly one AppDomain. If two AppDomains need
to use a type, one must initialize and allocate the type once per
AppDomain. Additionally, one must load and initialize the type's module and
assembly once for each AppDomain the type is used in. Because each
AppDomain in a process maintains a separate copy of the type, each
AppDomain has its own private copy of the type's static fields.
...
"

Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------

Nov 17 '05 #3
I for the most part understand how pure assemblies work with app domains,
but I am not at all clear on what you can do with mixed-mode assemblies in a
multi-application domain situation. I'll elaborate a little on my
particular scenario in a moment, in case it's actually useful, but what I am
really in need of is a decent understanding of if/how one can leverage
mixed-mode assemblies from "non default" application domains. My great fear
is that the answer is "You cannot create/reference instances of types from
mixed-mode assemblies in non-default application domains and expect to do
anything useful with them". If that is true, the documentation would be
improved by spelling it out in both the AppDomain overviews and MC++
overviews.

If I have a mixed-mode type that uses IJW to leverage native code, can I
call/manipulate instances of such a type from an otherwise "clr pure"
assembly in a non-default application domain? If yes, then what about
inheritence? In other words can a type that is in a "non mixed-mode"
assembly, but which derives from a type in a mixed-mode assembly, function
properly in a non-default application domain? Yes or no?

The latter is my situation. From my mixed mode code in the default domain I
use AppDomain.CreateInstance() to instantiate an object in another domain of
a type that inherits from a mixed-mode type. The constructor for that
derived type does get run and I can trace through it to it's point of death.
The first thing it does is call the mixed-mode base type's constructor and
it goes into it just fine. That base-type constructor goes out to native
code with IJW just fine. It is when it trys to come back into managed code
with IJW in the mixed-mode base type constructor that it goes boom. It
appears to go wrong inside of the thunk right there. My suspicion is that
the native-to-managed thunk contains an assumption that it is running in the
default application domain and that the default application domain is not
actually "current"; that the runtime let me make a direct call from a type
that was loaded in another domain to the base type that was ONLY loaded in
the default domain. If that is the case it seems as though the runtime and
compiler/linker could conspire to flag this at runtime rather than letting
you hang yourself. In other words, if those are the rules, could not the
compiler discover that the class being compiled had references to mixed-mode
assemblies (even though it was otherwise pure) and mark it as such so that
the runtime could throw a nice informative exception if someone tried to
instance the class in a non-default domain?

Can a mixed-mode assembly ever be "loaded" into a non-default application
domain? If the answer is no, then does that imply that types that are to be
instantiated in a non-default domain cannot directly use types from
mixed-mode assemblies at all?

-Bern

"Gary Chang" <v-******@online.microsoft.com> wrote in message
news:Yb**************@cpmsftngxa07.phx.gbl...
Hi Bern,

From your description, I understand that you got a
System.NullReferenceException when the C# type(derived from a mixed-mode
class) is being instanced in a non-default AppDomain, please correct me if
I misunderstand your issue.

Based on my knowledge, the System.NullReferenceException will be thrown
while the code referenced to an invalid object, in your case, I think
perhaps it reference to a object which created in another AppDomain.

Something like the description from the Don Box's <<Essential.NET>> Chapter 8:
"
..
An object resides in exactly one AppDomain, as do values. Moreover, object
references must refer to objects in the same AppDomain. ...
Like objects, types reside in exactly one AppDomain. If two AppDomains need to use a type, one must initialize and allocate the type once per
AppDomain. Additionally, one must load and initialize the type's module and assembly once for each AppDomain the type is used in. Because each
AppDomain in a process maintains a separate copy of the type, each
AppDomain has its own private copy of the type's static fields.
..
"

Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights. --------------------

Nov 17 '05 #4
Hi Bern,

Thanks for your quickly reply!

It seems I misunderstood your concerns:
Can a mixed-mode assembly ever be "loaded" into a non-default application
domain? If the answer is no, then does that imply that types that are to be
instantiated in a non-default domain cannot directly use types from
mixed-mode assemblies at all?


Currently, we have submitted your questions to the vc dev team, and we will
reply you as soon as possible.
Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------

Nov 17 '05 #5
Hello all (and Gary).

Just a reminder. I continue to watch this thread for the promised
response....

Bern McCarty
Bentley Systems, Inc.

"Gary Chang" <v-******@online.microsoft.com> wrote in message
news:Il**************@cpmsftngxa07.phx.gbl...
Hi Bern,

Thanks for your quickly reply!

It seems I misunderstood your concerns:
Can a mixed-mode assembly ever be "loaded" into a non-default application
domain? If the answer is no, then does that imply that types that are to

be instantiated in a non-default domain cannot directly use types from
mixed-mode assemblies at all?

Currently, we have submitted your questions to the vc dev team, and we

will reply you as soon as possible.
Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights. --------------------

Nov 17 '05 #6
Hi Bern,

I put the post earlier but somehow it seemed to be missing in newsgroup.
Newsgroups: microsoft.public.dotnet.languages.vc
From: bh*****@online.microsoft.com (Bhavik Shah [MSFT])
Date: Wed, 18 Feb 2004 15:09:59 GMT
Subject: RE: Mixed-mode and "non-default" app domains

Hi Bern,

Sorry for the delay in responding to your question.

Is it possible for you to send a repro sample of what you are trying to do
and where it is failing? If yes, plese send it to me directly and you could
reach me at bh*****@online.microsoft.com (without the word "online").

Thanks,
Bhavik Shah
Microsoft Visual C++ Support
Would it be possible for you to send me small repro that shows what you are
trying?

Thanks,
Bhavik Shah
Microsoft Visual C++ Support

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: "Bern McCarty" <be**********@bentley.com>
References: <#u**************@TK2MSFTNGP10.phx.gbl> <Yb**************@cpmsftngxa07.phx.gbl>
<OS**************@TK2MSFTNGP09.phx.gbl>
<Il**************@cpmsftngxa07.phx.gbl>Subject: Re: Mixed-mode and "non-default" app domains
Date: Mon, 23 Feb 2004 09:33:24 -0500
Lines: 42
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <uU**************@TK2MSFTNGP10.phx.gbl>
Newsgroups: microsoft.public.dotnet.languages.vc
NNTP-Posting-Host: bsi-uu.bentley.com 64.90.224.40
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.vc:33894
X-Tomcat-NG: microsoft.public.dotnet.languages.vc

Hello all (and Gary).

Just a reminder. I continue to watch this thread for the promised
response....

Bern McCarty
Bentley Systems, Inc.

"Gary Chang" <v-******@online.microsoft.com> wrote in message
news:Il**************@cpmsftngxa07.phx.gbl...
Hi Bern,

Thanks for your quickly reply!

It seems I misunderstood your concerns:
>
Can a mixed-mode assembly ever be "loaded" into a non-default
application domain? If the answer is no, then does that imply that types that are

tobe
instantiated in a non-default domain cannot directly use types from
mixed-mode assemblies at all?
>

Currently, we have submitted your questions to the vc dev team, and we

will
reply you as soon as possible.
Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no

rights.
--------------------



Nov 17 '05 #7
Hello all (and Gary).

Just a reminder. I continue to watch this thread for the promised
response....

Bern McCarty
Bentley Systems, Inc.

"Gary Chang" <v-******@online.microsoft.com> wrote in message
news:Il**************@cpmsftngxa07.phx.gbl...
Hi Bern,

Thanks for your quickly reply!

It seems I misunderstood your concerns:
Can a mixed-mode assembly ever be "loaded" into a non-default application
domain? If the answer is no, then does that imply that types that are to

be instantiated in a non-default domain cannot directly use types from
mixed-mode assemblies at all?

Currently, we have submitted your questions to the vc dev team, and we

will reply you as soon as possible.
Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights. --------------------

Nov 17 '05 #8
Hi Bern,

I put the post earlier but somehow it seemed to be missing in newsgroup.
Newsgroups: microsoft.public.dotnet.languages.vc
From: bh*****@online.microsoft.com (Bhavik Shah [MSFT])
Date: Wed, 18 Feb 2004 15:09:59 GMT
Subject: RE: Mixed-mode and "non-default" app domains

Hi Bern,

Sorry for the delay in responding to your question.

Is it possible for you to send a repro sample of what you are trying to do
and where it is failing? If yes, plese send it to me directly and you could
reach me at bh*****@online.microsoft.com (without the word "online").

Thanks,
Bhavik Shah
Microsoft Visual C++ Support
Would it be possible for you to send me small repro that shows what you are
trying?

Thanks,
Bhavik Shah
Microsoft Visual C++ Support

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: "Bern McCarty" <be**********@bentley.com>
References: <#u**************@TK2MSFTNGP10.phx.gbl> <Yb**************@cpmsftngxa07.phx.gbl>
<OS**************@TK2MSFTNGP09.phx.gbl>
<Il**************@cpmsftngxa07.phx.gbl>Subject: Re: Mixed-mode and "non-default" app domains
Date: Mon, 23 Feb 2004 09:33:24 -0500
Lines: 42
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <uU**************@TK2MSFTNGP10.phx.gbl>
Newsgroups: microsoft.public.dotnet.languages.vc
NNTP-Posting-Host: bsi-uu.bentley.com 64.90.224.40
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.vc:33894
X-Tomcat-NG: microsoft.public.dotnet.languages.vc

Hello all (and Gary).

Just a reminder. I continue to watch this thread for the promised
response....

Bern McCarty
Bentley Systems, Inc.

"Gary Chang" <v-******@online.microsoft.com> wrote in message
news:Il**************@cpmsftngxa07.phx.gbl...
Hi Bern,

Thanks for your quickly reply!

It seems I misunderstood your concerns:
>
Can a mixed-mode assembly ever be "loaded" into a non-default
application domain? If the answer is no, then does that imply that types that are

tobe
instantiated in a non-default domain cannot directly use types from
mixed-mode assemblies at all?
>

Currently, we have submitted your questions to the vc dev team, and we

will
reply you as soon as possible.
Thanks!

Best regards,

Gary Chang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no

rights.
--------------------



Nov 17 '05 #9

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

Similar topics

220
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have...
11
by: csomberg | last post by:
SQL 2000 I thought I would throw this out there for some feedback from others. I'd like to know if you feel using MS auto-increment field is a good solution these days or should one grow their...
117
by: Steevo | last post by:
Any suggestions as to the best programs for cloaking email addresses? Many thanks -- Steevo
239
by: Eigenvector | last post by:
My question is more generic, but it involves what I consider ANSI standard C and portability. I happen to be a system admin for multiple platforms and as such a lot of the applications that my...
399
by: =?UTF-8?B?Ik1hcnRpbiB2LiBMw7Z3aXMi?= | last post by:
PEP 1 specifies that PEP authors need to collect feedback from the community. As the author of PEP 3131, I'd like to encourage comments to the PEP included below, either here (comp.lang.python), or...
1
by: bizt | last post by:
Hi, I have a webpage where Im creating AJAX type requests by loading dynamic pages containg JavaScript into hidden iFrames. The reason I am opting for this method over XmlHttpRequest object...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...

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.