473,787 Members | 2,928 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

dll hell equivalent in .NET?

Nad
Hello,

dll hell has been eliminated in .NET using assembly versioning.

I am new in .NET and would like to know if there is any dll-hell-equivalent
in .NET Windows or Web development environments that need to be
addressed/aware of?

Thank you.

Jul 21 '05 #1
2 2173
The extent of dll-hell symptions on machines with multiple Frameworks is
debated (Itr's not exaclty dll-hell but a similar deployment problem comes
up when different users have different service pack versions of the same
base framework such as 1.0 with the latest SP broke a lot of remoting
because it required permission configs to use syntax that was introduced in
1.1)

However, as I've seen it from a number of releases over the past 3 years,
the general old time issues are greatly reduced it you don't GAC your
components and instead release all components to be deployed to the same
folders as the executables. Back in the day hard drives were very expensive
and so the registry and shared ActiveX dlls and ocxes made sense (and we
laughed at how Apple forced complete packages).

Now drivespace is far less expensive (Hotmail gives each email acount 2GB -
that would have caused heart attacks back in 1993 when Win95/NT4 were being
designed) so including all your components is usually far more acceptable.
As I see it, the advised practice is to *not* GAC unless you absolutely have
to minimize the footprint. With that prictice the dll-hell is only a matter
of those varying MS service packs on the base.

robert smith
kirkland, WA
www.smithvoice.com


"Nad" <Na*@discussion s.microsoft.com > wrote in message
news:AC******** *************** ***********@mic rosoft.com...
Hello,

dll hell has been eliminated in .NET using assembly versioning.

I am new in .NET and would like to know if there is any
dll-hell-equivalent
in .NET Windows or Web development environments that need to be
addressed/aware of?

Thank you.

Jul 21 '05 #2
Nad
Thank you for taking the time to reply.

I don't understand technically how different SP versions could cause a
deployment problem, after all the CLR checks for unique identity of each
component in the GAC by the component's strong name. Any how, I understand
your point. Why look for trouble when there is ample disk space.

Regards.
"smith" wrote:
The extent of dll-hell symptions on machines with multiple Frameworks is
debated (Itr's not exaclty dll-hell but a similar deployment problem comes
up when different users have different service pack versions of the same
base framework such as 1.0 with the latest SP broke a lot of remoting
because it required permission configs to use syntax that was introduced in
1.1)

However, as I've seen it from a number of releases over the past 3 years,
the general old time issues are greatly reduced it you don't GAC your
components and instead release all components to be deployed to the same
folders as the executables. Back in the day hard drives were very expensive
and so the registry and shared ActiveX dlls and ocxes made sense (and we
laughed at how Apple forced complete packages).

Now drivespace is far less expensive (Hotmail gives each email acount 2GB -
that would have caused heart attacks back in 1993 when Win95/NT4 were being
designed) so including all your components is usually far more acceptable.
As I see it, the advised practice is to *not* GAC unless you absolutely have
to minimize the footprint. With that prictice the dll-hell is only a matter
of those varying MS service packs on the base.

robert smith
kirkland, WA
www.smithvoice.com


"Nad" <Na*@discussion s.microsoft.com > wrote in message
news:AC******** *************** ***********@mic rosoft.com...
Hello,

dll hell has been eliminated in .NET using assembly versioning.

I am new in .NET and would like to know if there is any
dll-hell-equivalent
in .NET Windows or Web development environments that need to be
addressed/aware of?

Thank you.


Jul 21 '05 #3

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

Similar topics

50
4325
by: Jerry Sievers | last post by:
<venting> Fellow coders; I just get off the phone today with some clueless headhunter and after listing for her (very proudly I might add) my OS and dev tools platforms of choice; Linux/Apache/Postgres/PHP I get a few moments of silence and she mentiones to me some new wizzy
22
2312
by: Jim Hubbard | last post by:
I am reposting a portion of a thread that I am involved in under a new topic because it seems that there are still people that believe the whole "DLL Hell" myth. I hope I can shed some light on this deception for some..... "Michael A. Covington" <look@ai.uga.edu.for.address> wrote in message news:%23tKbygELFHA.576@TK2MSFTNGP15.phx.gbl... > > "Jim Hubbard" <reply@groups.please> wrote in message
7
2348
by: Fatted | last post by:
I'm trying to learn how to create arrays dynamically. But its just not happening. Have a look at code below and point and laugh where appropriate... First part of program, I'm using an array of pointers, which seems to go ok. I want to then take it one step further and dynamically create the array (pointers to pointers). I try to print out the data again, retrieve the first 3 values (probably by luck), then maybe a pointer value, and then...
1
1726
by: GreatB | last post by:
Bill Gates died in a car accident. He found himself in Purgatory being sized up by God . .. "Well, Bill, I'm really confused on this call. I'm not sure whether to send you to Heaven or Hell. After all, you enormously helped society by putting a computer in almost every home in the world and yet you created that ghastly Windows 95. I'm going to do something I've never done before. In your case, I'm going to let you decide where you
0
1090
by: Jeff S | last post by:
I'm trying to more fully understand how .NET gets us out of dll hell by more clearly understanding what goes into the manifest and contrasting that with and what life was like before the manifest. Specifically, I would like to know why COM components need to be registered in the Windows System Registry. Registering COM components has been a fact of life that I've lived with but never really understood or questioned. Now .NET is here and...
18
2026
by: Dave Sauny | last post by:
Ok, its a friday, I'm at work and I cant get this to work: I have 3 listboxes on one tab control page. when i select an item in listbox1 i want whatever is selected on the other 2 listboxes unselected. when listbox2 is selected, 1 and 3 should have no items selected and the same with listbox 3. Sounds simple... should be simple! I have tried listbox.clearselected(), listbox.selectedindex=-1 and beating it with a large stick. But so...
2
268
by: Nad | last post by:
Hello, dll hell has been eliminated in .NET using assembly versioning. I am new in .NET and would like to know if there is any dll-hell-equivalent in .NET Windows or Web development environments that need to be addressed/aware of? Thank you.
3
1631
by: fyleow | last post by:
I just spent hours trying to figure out why even after I set my SQL table attributes to UTF-8 only garbage kept adding into the database. Apparently you need to execute "SET NAMES 'utf8'" before inserting into the tables. Does anyone have experience working with other languages using Django or Turbogears? I just need to be able to retrieve and enter text to the database from my page without it being mangled. I know these frameworks...
9
1432
by: hobosalesman | last post by:
Somehow font elements are being added everywhere in my page, with size set to 4. Maybe I'm just tired but I have no idea what's going on, even weirder considering the page is XHTML 1.0 strict served with the proper MIME type... heres some code: var divs = document.getElementsByTagName("div"); for (var i=0; i<divs.length; i++) { if (divs.className == "cwindow") { windows.push( .title, document.body.removeChild(divs)] );
0
9655
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9497
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10363
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10169
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7517
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6749
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5398
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4067
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 we have to send another system

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.