DCOM Example

  • Thread starter Thread starter Andreas Hecker
  • Start date Start date
A

Andreas Hecker

Hello,
does anybody know a little DCOM example or tutorial in VB.Net which runs on
two seperate machines to simulate the network communication. I couldnt find
any useful samples in the web but we have to develop a dcom component and i
dont know the steps necessary to connect over the wire.

thank you
Andreas
 
¤ Hello,
¤ does anybody know a little DCOM example or tutorial in VB.Net which runs on
¤ two seperate machines to simulate the network communication. I couldnt find
¤ any useful samples in the web but we have to develop a dcom component and i
¤ dont know the steps necessary to connect over the wire.
¤

Can you use a web service or web binary remoting instead of DCOM?

DCOM isn't really appropriate if you're working strictly with .NET clients and components.


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
It was the demand of our customer. How can features like JIT acitvation or
ObjectPooling be done. Is there a way within remoting? OK, IIS could be a
possible host for the remoting component, but what about Object Pooling? Can
you show me a way?

Thank you
Andreas

 
¤ It was the demand of our customer. How can features like JIT acitvation or
¤ ObjectPooling be done. Is there a way within remoting? OK, IIS could be a
¤ possible host for the remoting component, but what about Object Pooling? Can
¤ you show me a way?
¤

See if the following helps:

HOW TO: Use Enterprise Services Object Pooling in Visual Basic .NET
http://support.microsoft.com/default.aspx?scid=kb;en-us;317336

Here are other articles that may interest you:

HOW TO: Create a Remote Server by Using Visual Basic .NET
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q300951&ID=kb;en-us;Q300951&SD=MSDN

HOW TO: Build and Use XML Web Services by Using Visual Studio .NET
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q315935&ID=kb;en-us;Q315935&SD=MSDN


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top