Calling from .Net 1.1 to .Net 2.0/3.0

J

Jim1400

What are the options for calling from .Net 1.1 to .Net 2.0/3.0 besides COM?
Thanks.
 
R

Rory Becker

Hello Jim1400,
What are the options for calling from .Net 1.1 to .Net 2.0/3.0 besides
COM? Thanks.

Service level seperation is really the only way I know of ....

COM doesn't really cut it since a single process can only load 1 version
of the framework at once.

ie an initial app which loads framework 1.1 cannot interact with 2.0 code
directly even through COM as it would require 2 versions of the framework
to be loaded to cope.

Unless you force the app to load the latest version of the frameowrk in the
first place.
 
J

Jim1400

Rory,
Thanks for your reply. I really mean COM+ when I said COM. You mentioned
"Unless you force the app to load the latest version of the frameowrk in the
first place.". Could you give me some direction how to make it work this
way? Thanks!
Jim
 
R

Rory Becker

Hello Jim1400,
Rory,
Thanks for your reply. I really mean COM+ when I said COM. You
mentioned
"Unless you force the app to load the latest version of the frameowrk
in the
first place.". Could you give me some direction how to make it work
this
way? Thanks!


I thought that there was a way to redirect the Assembly bindings in an App.config
so that a 1.1 exe would run under 2.0 even if 1.1 was installed.
I cannot now remember the specifics but you should be able to find something
relating to this in google.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top