Classic ASP and COM / COM+ / DCOM examples

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Blue Streak

    Classic ASP and COM / COM+ / DCOM examples

    Hello, folks!

    Does anyone have URLs to some good tutorials / examples of usign
    Classic ASP with COM, COM+, etc?

    TIA...

  • Egbert Nierop \(MVP for IIS\)

    #2
    Re: Classic ASP and COM / COM+ / DCOM examples


    "Blue Streak" <rdlebreton@hot mail.com> wrote in message
    news:1144701765 .278057.135880@ j33g2000cwa.goo glegroups.com.. .[color=blue]
    > Hello, folks!
    >
    > Does anyone have URLs to some good tutorials / examples of usign
    > Classic ASP with COM, COM+, etc?
    >
    > TIA...[/color]

    That's rather a lot of nuances you're asking for.

    DCOM is death. COM+ is nice for database transaction management or for
    specific threading sync needs, and COM is alive and kicking. If you compile
    a VB6 activex object, you have already simple ready to use object.

    What are you exactly trying to accomplish? (because getting info on death
    technology is waste of time).

    Comment

    • Blue Streak

      #3
      Re: Classic ASP and COM / COM+ / DCOM examples

      Well, my new employer is still using it. I need to get up to speed
      with their old code before I can help upgrade it to .NET.

      Comment

      • Egbert Nierop \(MVP for IIS\)

        #4
        Re: Classic ASP and COM / COM+ / DCOM examples


        "Blue Streak" <rdlebreton@hot mail.com> wrote in message
        news:1144776400 .403590.308530@ u72g2000cwu.goo glegroups.com.. .[color=blue]
        > Well, my new employer is still using it. I need to get up to speed
        > with their old code before I can help upgrade it to .NET.[/color]


        So do you use C++ and DCOM or is it all VB6?

        Comment

        • Blue Streak

          #5
          Re: Classic ASP and COM / COM+ / DCOM examples

          At this point I don't know what this company is using for their COM
          objects. I just wanted to go through a crash-course to get up to speed
          with this kind of programming.

          Comment

          • Egbert Nierop \(MVP for IIS\)

            #6
            Re: Classic ASP and COM / COM+ / DCOM examples


            "Blue Streak" <rdlebreton@hot mail.com> wrote in message
            news:1144861192 .496736.212820@ i39g2000cwa.goo glegroups.com.. .[color=blue]
            > At this point I don't know what this company is using for their COM
            > objects. I just wanted to go through a crash-course to get up to speed
            > with this kind of programming.
            >[/color]
            Sorry, there is no such thing.

            DCOM is a separate theme, and because DCOM was so difficult to implement
            (all about marshaling and networking protocols) COM+ was made, so if you
            'configure' a simple COM component, the COM runtime (that is COM+ as well)
            will do it all for you.
            And if you use C++ 6 up to 8, and you write ATL COM components, it's very
            easy to support COM+.

            Now comes the difficult part, that is doing it all without COM+ but through
            DCOM.


            I think you --really-- should focus on your target by getting some samples
            about the current enviroment before jumping 'wildly' in all those subjects.
            I know through some experience that COM+ can be very widely spread with
            possible technologies and settings etc, and the same applies to DCOM.

            I would just advise you to use ebay and find a second hand book about COM+
            and DCOM.

            Regards


            Comment

            • Blue Streak

              #7
              Re: Classic ASP and COM / COM+ / DCOM examples

              Thanks,

              I found what I needed at http://www.codeproject.com/

              Comment

              Working...