473,406 Members | 2,345 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,406 software developers and data experts.

Calling a static method in another AppDomain

Hi

I have a scenario where I've created another AppDomain to dynamically load a DLL(s) into. In this newly loaded DLL I want to call a static method on a class. The problem arise is that I have the same class/static method definition statictly linked to my EXE and when I call InvokeMember(...), even though I got the Type from the new AppDomain, it calls the static method that I am staticly linked to and not the static method in the dynamicly loaded DLL

Does anybody know how to force a static variable call into another AppDomain if there is duplicate definition clashes across domains

I'll appreciate any help. Thank you
Chris
Jul 21 '05 #1
5 15321
Chris,

By domains do you mean namespaces? If you have two seperate namespaces, one
which is your library's, and the other is your programs, then reference your
built in static method like this

this.MyStaticMethod(...);

but then reference the one in the other namespace like this:

MyDynamicDomain.MyClass.MyStaticMethod(...);
If I've missed the boat, let me know.

Thanks.
Dan.
"Chris" <cp******@hotmail.com> wrote in message
news:FD**********************************@microsof t.com...
Hi,

I have a scenario where I've created another AppDomain to dynamically load a DLL(s) into. In this newly loaded DLL I want to call a static method on a
class. The problem arise is that I have the same class/static method
definition statictly linked to my EXE and when I call InvokeMember(...),
even though I got the Type from the new AppDomain, it calls the static
method that I am staticly linked to and not the static method in the
dynamicly loaded DLL.
Does anybody know how to force a static variable call into another AppDomain if there is duplicate definition clashes across domains?
I'll appreciate any help. Thank you.
Chris

Jul 21 '05 #2
I don't have the original post to reply to, but this is to address the
original post.

Have you tried using the Type.GetMethod() and then calling Invoke() on the
MethodInfo object instead? My guess is that theres some confusion, but at
least doing it this way, you can verify the MemberInfo (an ancestor of
MethodInfo) to be sure that it's on the correct type.

My guess is your Type.InvokeMember() is getting confused somewhere along the
way.

I had a similar problem a while back and by using the method I outlined, I
was able to track down the original problem with my Type.InvokeMember()
call.

Pete

"Daniel Bass" <DanielBass TAKE at OUT CAPS WORDS Postmaster.co.uk> wrote in
message news:%2*****************@TK2MSFTNGP10.phx.gbl...
Chris,

By domains do you mean namespaces? If you have two seperate namespaces, one which is your library's, and the other is your programs, then reference your built in static method like this

this.MyStaticMethod(...);

but then reference the one in the other namespace like this:

MyDynamicDomain.MyClass.MyStaticMethod(...);
If I've missed the boat, let me know.

Thanks.
Dan.
"Chris" <cp******@hotmail.com> wrote in message
news:FD**********************************@microsof t.com...
Hi,

I have a scenario where I've created another AppDomain to dynamically
load a DLL(s) into. In this newly loaded DLL I want to call a static method on a class. The problem arise is that I have the same class/static method
definition statictly linked to my EXE and when I call InvokeMember(...),
even though I got the Type from the new AppDomain, it calls the static
method that I am staticly linked to and not the static method in the
dynamicly loaded DLL.

Does anybody know how to force a static variable call into another

AppDomain if there is duplicate definition clashes across domains?

I'll appreciate any help. Thank you.
Chris


Jul 21 '05 #3
The problem is that even though you are creating a new appdomain you are
still calling it from the context of the default appdomain. You need to
create an object derived from MarshalByRefObj, create an instance of it in
the new appdomain and then via remoting into the new appdomain call a method
in it that will create the object and then call its method. This link does a
good job of describing things, and you can google up a bunch of sample code
pretty easily.

http://www.gotdotnet.com/team/clr/AppdomainFAQ.aspx
"Chris Mouton" <an*******@discussions.microsoft.com> wrote in message
news:5B**********************************@microsof t.com...

Hi Dan,

Thank you for replying. No when I mean domain, I mean AppDomain. Here is the sample code of the DLL that I am loading and the method that I'm
calling: AppDomainSetup setup = new AppDomainSetup();
setup.ApplicationBase = someDirectory;
AppDomain appDomain = AppDomain.CreateDomain("SampleDomain", null, setup);

Common.SampleInterface convertedClass = (Common.SampleInterface)
appDomain.CreateInstanceAndUnwrap(
"SampleDLL",
"SampleDLL.SampleDLLClass");

Assembly[] assemblies = appDomain.GetAssemblies();
Type type = assemblies[1].GetType("SampleNamespace.SampleClass", true, false); type.InvokeMember("Initialize"
,BindingFlags.Public | BindingFlags.InvokeMethod | BindingFlags.Static
,null
,null
,new Object[] {});

When this code is executed, the Initialize on my SampleClass from staticly linked DLL is called. I know this because I can have check code in the
SampleClass that says that it has not been initialized and if I look at the
Output window when in debugging mode, I can view that the wrong assemblies
are being loaded.
Does this help clarify the problem?

Kind Regards
Chris Mouton

----- Daniel Bass wrote: -----

Chris,

By domains do you mean namespaces? If you have two seperate namespaces, one which is your library's, and the other is your programs, then reference your built in static method like this

this.MyStaticMethod(...);

but then reference the one in the other namespace like this:

MyDynamicDomain.MyClass.MyStaticMethod(...);
If I've missed the boat, let me know.

Thanks.
Dan.
"Chris" <cp******@hotmail.com> wrote in message
news:FD**********************************@microsof t.com...
> Hi,
>> I have a scenario where I've created another AppDomain to
dynamically load
a DLL(s) into. In this newly loaded DLL I want to call a static method on a class. The problem arise is that I have the same class/static method
definition statictly linked to my EXE and when I call InvokeMember(...), even though I got the Type from the new AppDomain, it calls the static method that I am staticly linked to and not the static method in the
dynamicly loaded DLL. >> Does anybody know how to force a static variable call into another AppDomain if there is duplicate definition clashes across domains? >> I'll appreciate any help. Thank you.

> Chris


Jul 21 '05 #4

Hi David

Thank you for the link and although I've been through, I reread it to see if I missed anything the first time. What you describing is completely correct and it is exactly what I've done. Over the weekend I've written a small application and dlls to simulate the situation. I tried to incorporate all the suggestions that everybody has given me (thanks all!) but I can't seem to be able to call the static method in the other domain. First I thought it was a name clash, ie both AppDomain (current and loaded) has the same signature and the static method in the current AppDomain is callled only, but I found that I couldn't even call the static method in the loaded AppDomain under a new name

If anybody has any further suggestions on how to call a static method in another (dynamicly loaded) AppDomain, please let me know. Pretty please...

Thank yo
Chris Mouto

----- David Levine wrote: ----

The problem is that even though you are creating a new appdomain you ar
still calling it from the context of the default appdomain. You need t
create an object derived from MarshalByRefObj, create an instance of it i
the new appdomain and then via remoting into the new appdomain call a metho
in it that will create the object and then call its method. This link does
good job of describing things, and you can google up a bunch of sample cod
pretty easily

http://www.gotdotnet.com/team/clr/AppdomainFAQ.asp
"Chris Mouton" <an*******@discussions.microsoft.com> wrote in messag
news:5B**********************************@microsof t.com..
Hi Dan
Thank you for replying. No when I mean domain, I mean AppDomain. Here i the sample code of the DLL that I am loading and the method that I'
calling
AppDomainSetup setup = new AppDomainSetup()
setup.ApplicationBase = someDirectory
AppDomain appDomain = AppDomain.CreateDomain("SampleDomain", null, setup)
Common.SampleInterface convertedClass = (Common.SampleInterface appDomain.CreateInstanceAndUnwrap
"SampleDLL"
"SampleDLL.SampleDLLClass")
Assembly[] assemblies = appDomain.GetAssemblies()

Type type = assemblies[1].GetType("SampleNamespace.SampleClass", true

false) type.InvokeMember("Initialize
,BindingFlags.Public | BindingFlags.InvokeMethod | BindingFlags.Stati
,nul
,nul
,new Object[] {})
When this code is executed, the Initialize on my SampleClass from staticl linked DLL is called. I know this because I can have check code in th
SampleClass that says that it has not been initialized and if I look at th
Output window when in debugging mode, I can view that the wrong assemblie
are being loaded Does this help clarify the problem
Kind Regard Chris Mouto
----- Daniel Bass wrote: ----
Chris
By domains do you mean namespaces? If you have two seperat

namespaces, on which is your library's, and the other is your programs, the reference you built in static method like thi
this.MyStaticMethod(...)
but then reference the one in the other namespace like this
MyDynamicDomain.MyClass.MyStaticMethod(...)
If I've missed the boat, let me know Thanks

Dan "Chris" <cp******@hotmail.com> wrote in messag news:FD**********************************@microsof t.com..
Hi
I have a scenario where I've created another AppDomain t

dynamically loa a DLL(s) into. In this newly loaded DLL I want to call a stati method on class. The problem arise is that I have the same class/static metho
definition statictly linked to my EXE and when I cal InvokeMember(...) even though I got the Type from the new AppDomain, it calls th stati method that I am staticly linked to and not the static method in th
dynamicly loaded DLL. Does anybody know how to force a static variable call into another AppDomain if there is duplicate definition clashes across domains? I'll appreciate any help. Thank you.

Chris

Jul 21 '05 #5
I haven't tried calling a static method except indirectly when I used
ExecuteAssembly (this invokes the static Main method in the executed
assembly). Invoking an instance method was no problem at all. From your
sample code it appears that you are still not invoking the method in the
context of the remote appdomain. You should define a class, derived from
MBRO, that implements the functionality you are using directly from the
default appdomain. The code you show here...

Assembly[] assemblies = appDomain.GetAssemblies();
Type type = assemblies[1].GetType("SampleNamespace.SampleClass", true,
false);
type.InvokeMember("Initialize"
,BindingFlags.Public | BindingFlags.InvokeMethod | BindingFlags.Static
,null
,null
,new Object[] {});

....I assume you are executing from the default appdomain. By loading a type
into the default appdomain you are loading up all the assemblies as well
into the default appdomain, and it will try to execute the method in the
default appdomain. Create a method in convertedClass and move this code
into it so that when it call the method the code is executing remotely, and
call the method via the unwrapped object handle.

This wont necessarily solve the apparent problem of not calling the static
method. What error do you get? Are any exceptions thrown?

You can also try to use AppDomian.DoCallback(). This should invoke the
method in the context of the other appdomain. Again, I haven't used it with
static methods.

"Chris Mouton" <cp******@hotmail.com> wrote in message
news:3D**********************************@microsof t.com...

Hi David,

Thank you for the link and although I've been through, I reread it to see if I missed anything the first time. What you describing is completely
correct and it is exactly what I've done. Over the weekend I've written a
small application and dlls to simulate the situation. I tried to incorporate
all the suggestions that everybody has given me (thanks all!) but I can't
seem to be able to call the static method in the other domain. First I
thought it was a name clash, ie both AppDomain (current and loaded) has the
same signature and the static method in the current AppDomain is callled
only, but I found that I couldn't even call the static method in the loaded
AppDomain under a new name.
If anybody has any further suggestions on how to call a static method in another (dynamicly loaded) AppDomain, please let me know. Pretty please....
Thank you
Chris Mouton

----- David Levine wrote: -----

The problem is that even though you are creating a new appdomain you are still calling it from the context of the default appdomain. You need to create an object derived from MarshalByRefObj, create an instance of it in the new appdomain and then via remoting into the new appdomain call a method in it that will create the object and then call its method. This link does a good job of describing things, and you can google up a bunch of sample code pretty easily.

http://www.gotdotnet.com/team/clr/AppdomainFAQ.aspx
"Chris Mouton" <an*******@discussions.microsoft.com> wrote in message
news:5B**********************************@microsof t.com...
>> Hi Dan,
>> Thank you for replying. No when I mean domain, I mean AppDomain. Here is
the sample code of the DLL that I am loading and the method that I'm
calling:
> AppDomainSetup setup = new AppDomainSetup();
> setup.ApplicationBase = someDirectory;
> AppDomain appDomain = AppDomain.CreateDomain("SampleDomain", null, setup); >> Common.SampleInterface convertedClass = (Common.SampleInterface) > appDomain.CreateInstanceAndUnwrap(
> "SampleDLL",
> "SampleDLL.SampleDLLClass");
>> Assembly[] assemblies = appDomain.GetAssemblies();

> Type type = assemblies[1].GetType("SampleNamespace.SampleClass", true, false);
> type.InvokeMember("Initialize"
> ,BindingFlags.Public | BindingFlags.InvokeMethod |
BindingFlags.Static > ,null
> ,null
> ,new Object[] {});
>> When this code is executed, the Initialize on my SampleClass from staticly linked DLL is called. I know this because I can have check code in the SampleClass that says that it has not been initialized and if I look at the Output window when in debugging mode, I can view that the wrong assemblies are being loaded. >> Does this help clarify the problem?
>> Kind Regards > Chris Mouton
>> ----- Daniel Bass wrote: -----
>> Chris,
>> By domains do you mean namespaces? If you have two seperate namespaces, one
> which is your library's, and the other is your programs, then

reference your
> built in static method like this
>> this.MyStaticMethod(...);
>> but then reference the one in the other namespace like this:
>> MyDynamicDomain.MyClass.MyStaticMethod(...);
>>> If I've missed the boat, let me know.
>> Thanks.

> Dan.
>>> "Chris" <cp******@hotmail.com> wrote in message

> news:FD**********************************@microsof t.com...
>> Hi,
>>> I have a scenario where I've created another AppDomain to

dynamically load
> a DLL(s) into. In this newly loaded DLL I want to call a

static method on a
> class. The problem arise is that I have the same class/static
method > definition statictly linked to my EXE and when I call

InvokeMember(...),
> even though I got the Type from the new AppDomain, it calls the static
> method that I am staticly linked to and not the static method

in the > dynamicly loaded DLL.
>>> Does anybody know how to force a static variable call into
another > AppDomain if there is duplicate definition clashes across

domains? >>> I'll appreciate any help. Thank you.
>> Chris
>>>

Jul 21 '05 #6

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

Similar topics

15
by: Bryan | last post by:
I have a multi-threaded C# console application that uses WMI (System.Management namespace) to make RPC calls to several servers (600+ ) and returns ScheduledJobs. The section of my code that...
5
by: Chris | last post by:
Hi I have a scenario where I've created another AppDomain to dynamically load a DLL(s) into. In this newly loaded DLL I want to call a static method on a class. The problem arise is that I have...
4
by: mnowosad | last post by:
As far I know, static variables are tied to AppDomain scopes. So, every time an executing code within an AppDomain references a class for the the first time since the AppDomain was created/loaded,...
6
by: depalau | last post by:
I'm running into some issues on maintaining a static variable across the lifetime of a web service and I was wondering if anyone could help. Background: We have developed a C#/1.1 web service...
2
by: Dave Burns | last post by:
Hello, We have a situation where a managed C++ assembly links with native C++ dll. There is a callback mechanism which calls back into the managed code asynchronously. Since native classes...
4
by: Dave | last post by:
I have a global.asax file with Application_Start defined and create some static data there and in another module used in the asp.net application and I realize that static data is shared amongst...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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
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...

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.