Re: legacy app .net 1.1 using .net 2.0 component. is it possibile?
- From: "Joey" <joey@xxxxxxxx>
- Date: Mon, 9 Jun 2008 17:53:18 +0200
thanks.
will try porting the component to v1.1 as upgrading the main app is
impossible unfortunately :(
"Marc Gravell" <marc.gravell@xxxxxxxxx> wrote in message
news:uxW$anjyIHA.2360@xxxxxxxxxxxxxxxxxxxxxxx
Not without updating the main exe to load 2.0, not 1.1; in fact, even COM
would fail if "in process" (dll), since it would still end up calling back
into the same process, and that is the issue. You'd have to *at the
minimum* go out-of-process (serviced components or SOA) - and it probably
isn't worth it.
.NET 2 (and the CLR2) introduces IL instructions that are not understood
in .NET 1.1, so .NET 2.0 code *cannot* run in 1.1.
Personally I'd try to move to 2.0 (or later), but I appreciate that this
is not always possible for various reasons.
Marc
.
Relevant Pages
- Re: New Delphi roadmap is coming: NO UNICODE PLEASE!
... Avoids DLL hell, because it ... The app is deployed and the user is getting an error. ... instances where upgrading .NET broke things that were working. ... Coming from Delphi, this isn't any big deal of course. ... (borland.public.delphi.non-technical) - Re: What programming language for Future
... usually when apps come with scripts, those scripts are for that version ... version of the app. ... Which is exactly the same as when the compiler is shipped with the app. ... for the sole reason that they can't rebuild a working dll. ... (comp.lang.misc) - Re: Building customized Setup.dll for installations
... In the C++ code of your setup DLL write some code that for example sends ... that is also registered by your app when it starts. ... I created a Visual C++ MFC DLL project to design the custom Setup.dll. ... >>> Everything works fine except on uninstall. ... (microsoft.public.dotnet.framework.compactframework) - Re: VFP Objects for a beginner - help!
... My "stuff" is all large external DB manipulation and reporting ... (reporting via VFP functions that write and publish the html/java script on ... another app. ... VB guy would set a reference to the DLL in his project and then could ... (microsoft.public.fox.programmer.exchange) - Re: Multiple References and Object Instantiation??
... Information is also sent to which is also a mdiChild of Main ... App - from both Customer.Dll and Activity.Dll ... In the Main Application I was able to make a reference to all the forms (The ... >> this app each dll is a different form. ... (microsoft.public.dotnet.languages.vb) |
|