Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. The Lounge
  3. Is COM an 'outdated' technology?

Is COM an 'outdated' technology?

Scheduled Pinned Locked Moved The Lounge
comdesignquestiondiscussion
29 Posts 13 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K krumia

    Is COM an 'outdated' technology? If it is, what are the technologies that replace COM? And how? If it is not, why such an old technology is still there? (I understand the basic design of COM and I understand why it was needed back then.) I am hoping to see a discussion emerging about this, in the hope that I will be able to learn a lot. p.s.: I asked this in COM forum and was hinded[^] to post it here.

    R Offline
    R Offline
    RugbyLeague
    wrote on last edited by
    #19

    I seem to recall Don Box sitting on stage at Tech-Ed in Barcelona some years ago writing .Net code and saying something along the lines of "What the hell was I thinking for all those years"

    1 Reply Last reply
    0
    • CPalliniC CPallini

      Erudite_Eric wrote:

      I never thought COM offered anything better than properly designed dlls

      It actually did.

      Erudite_Eric wrote:

      but I guess it got replaced with .NNet stuf

      Nope.

      Erudite_Eric wrote:

      But yeah, I think it died.

      Nope.

      Veni, vidi, vici.

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #20

      CPallini wrote:

      It actually did.

      Yeah, it stopped idiot programers making a mess of the system I suppose.

      ============================== Nothing to say.

      CPalliniC 1 Reply Last reply
      0
      • L Lost User

        CPallini wrote:

        It actually did.

        Yeah, it stopped idiot programers making a mess of the system I suppose.

        ============================== Nothing to say.

        CPalliniC Offline
        CPalliniC Offline
        CPallini
        wrote on last edited by
        #21

        Nope, it is all about binary components re-using (as the name suggests).

        Veni, vidi, vici.

        In testa che avete, signor di Ceprano?

        L 1 Reply Last reply
        0
        • K krumia

          Is COM an 'outdated' technology? If it is, what are the technologies that replace COM? And how? If it is not, why such an old technology is still there? (I understand the basic design of COM and I understand why it was needed back then.) I am hoping to see a discussion emerging about this, in the hope that I will be able to learn a lot. p.s.: I asked this in COM forum and was hinded[^] to post it here.

          E Offline
          E Offline
          Eytukan
          wrote on last edited by
          #22

          COM is dead? But ask "where?". COM is dead in user applications. There used to be tons of classic Asp, VB6.0 & even VC 6++ solutions that made extensive use of COM, DCOM, ActiveX etc.In these places, for example COM is literally dead. If a clients requests for a solution for their business, the application developers would no more need to look out for COM. So much has evolved in the managed world. Microsoft took pain to carry all those complex COM on their shoulders. Giving you the option to develop in much simpler tools. For example, DCOM is replaced by remoting in Dotnet, WCF & so many new frameworks give you much cleaner interface for your distributed apps. If you look at COM generated marshalling code, it'd look like it's done by a drunk php coder ;P. But COM is still there in every other places. For example, UMDF (driver framework, uses COM). So the idea is this, if you really need COM, it's there.

          Starting to think people post kid pics in their profiles because that was the last time they were cute - Jeremy.

          L 1 Reply Last reply
          0
          • CPalliniC CPallini

            Nope, it is all about binary components re-using (as the name suggests).

            Veni, vidi, vici.

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #23

            CPallini wrote:

            Nope, it is all about binary components re-using (as the name suggests).

            I was always told it was a way to avoid DLL hell. Of course if people renamed funcs when they changed the parameters in dlls we wouldnt have had that problem. I have used COM, never found it any better that a dll, and the installation is a PITA.

            ============================== Nothing to say.

            CPalliniC 1 Reply Last reply
            0
            • L Lost User

              CPallini wrote:

              Nope, it is all about binary components re-using (as the name suggests).

              I was always told it was a way to avoid DLL hell. Of course if people renamed funcs when they changed the parameters in dlls we wouldnt have had that problem. I have used COM, never found it any better that a dll, and the installation is a PITA.

              ============================== Nothing to say.

              CPalliniC Offline
              CPalliniC Offline
              CPallini
              wrote on last edited by
              #24

              Erudite_Eric wrote:

              I was always told it was a way to avoid DLL hell.

              That's a really naive point.

              Veni, vidi, vici.

              In testa che avete, signor di Ceprano?

              1 Reply Last reply
              0
              • D Dalek Dave

                No.

                --------------------------------- I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave CCC Link[^] English League Tables - Live

                E Offline
                E Offline
                Espen Harlinn
                wrote on last edited by
                #25

                Succinct ;)

                Espen Harlinn Senior Architect, Software - Goodtech Projects & Services My LinkedIn Profile

                1 Reply Last reply
                0
                • E Eytukan

                  COM is dead? But ask "where?". COM is dead in user applications. There used to be tons of classic Asp, VB6.0 & even VC 6++ solutions that made extensive use of COM, DCOM, ActiveX etc.In these places, for example COM is literally dead. If a clients requests for a solution for their business, the application developers would no more need to look out for COM. So much has evolved in the managed world. Microsoft took pain to carry all those complex COM on their shoulders. Giving you the option to develop in much simpler tools. For example, DCOM is replaced by remoting in Dotnet, WCF & so many new frameworks give you much cleaner interface for your distributed apps. If you look at COM generated marshalling code, it'd look like it's done by a drunk php coder ;P. But COM is still there in every other places. For example, UMDF (driver framework, uses COM). So the idea is this, if you really need COM, it's there.

                  Starting to think people post kid pics in their profiles because that was the last time they were cute - Jeremy.

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #26

                  :thumbsup: Well said :)

                  Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.

                  1 Reply Last reply
                  0
                  • CPalliniC CPallini

                    Erudite_Eric wrote:

                    I never thought COM offered anything better than properly designed dlls

                    It actually did.

                    Erudite_Eric wrote:

                    but I guess it got replaced with .NNet stuf

                    Nope.

                    Erudite_Eric wrote:

                    But yeah, I think it died.

                    Nope.

                    Veni, vidi, vici.

                    A Offline
                    A Offline
                    adityarao31
                    wrote on last edited by
                    #27

                    I am new to COM,DCOM,I am a MFC Programmer. Is it wise to study COM,DCOM at this time? Does microsoft will remove the support for this architecture in near future? Please help me on this issue as its very important for my career

                    Be Happy

                    CPalliniC 1 Reply Last reply
                    0
                    • A adityarao31

                      I am new to COM,DCOM,I am a MFC Programmer. Is it wise to study COM,DCOM at this time? Does microsoft will remove the support for this architecture in near future? Please help me on this issue as its very important for my career

                      Be Happy

                      CPalliniC Offline
                      CPalliniC Offline
                      CPallini
                      wrote on last edited by
                      #28

                      adityarao31 wrote:

                      Is it wise to study COM,DCOM at this time?

                      It will wise at any time. At least to have some insight: COM is fashinating.

                      adityarao31 wrote:

                      Does microsoft will remove the support for this architecture in near future?

                      Nope.

                      Veni, vidi, vici.

                      In testa che avete, signor di Ceprano?

                      A 1 Reply Last reply
                      0
                      • CPalliniC CPallini

                        adityarao31 wrote:

                        Is it wise to study COM,DCOM at this time?

                        It will wise at any time. At least to have some insight: COM is fashinating.

                        adityarao31 wrote:

                        Does microsoft will remove the support for this architecture in near future?

                        Nope.

                        Veni, vidi, vici.

                        A Offline
                        A Offline
                        adityarao31
                        wrote on last edited by
                        #29

                        Thank you very much,for giving some of your precious time for replying my question.

                        Be Happy

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • World
                        • Users
                        • Groups