Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is COM Object in Dot net?

Answers were Sorted based on User's Feedback



what is COM Object in Dot net?..

Answer / srividya_gopalan

Component Object Model is a method to facilitate
communication between different applications and languages.
The following steps explain the way to create the COM
server in C#:

Create a new Class Library project.
Create a new interface, say IManagedInterface, and declare
the methods required. Then provide the Guid (this is the
IID) for the interface using the GuidAttribute defined in
System.Runtime.InteropServices. The Guid can be created
using the Guidgen.exe. [Guid("3B515E51-0860-48ae-B49C-
05DF356CDF4B")]
Define a class that implements this interface. Again
provide the Guid (this is the CLSID) for this class also.
Mark the assembly as ComVisible. For this go to
AssemblyInfo.cs file and add the following statement
[assembly: ComVisible (true)]. This gives the accessibility
of all types within the assembly to COM.
Build the project. This will generate an assembly in the
output path. Now register the assembly using regasm.exe (a
tool provided with the .NET Framework)- regasm
\bin\debug\ComInDotNet.dll \tlb:ComInDotNet.tlb This will
create a TLB file after registration.
Alternatively this can be done in the Project properties ->
Build -> check the Register for COM interop.
The COM server is ready. Now a client has to be created. It
can be in any language. If the client is .NET, just add the
above created COM assembly as reference and use it.

Is This Answer Correct ?    24 Yes 5 No

what is COM Object in Dot net?..

Answer / amol

actually COM means component object model, but this raises
the problem of versioning known as DLL conflicts. so dot
net uses other functionalities to avoid it..

Is This Answer Correct ?    29 Yes 12 No

what is COM Object in Dot net?..

Answer / deepak kumar

COM stands for Component Object Model is a technology
introduced by Microsoft that enables software components to
communicate with each other staying at difference memory
location or network.

Is This Answer Correct ?    20 Yes 7 No

what is COM Object in Dot net?..

Answer / balaji

Component Object Model is a model that allows different
programming languages to communicate each other.

Earlier all the dll's are made using this model so that we
could use these assembly's in any language. When we use
these in .net and create some objects are known as com
objects and these objects should be clear using
Marshal.ReleaseComObject() method because those will not be
taken care by garbase collection in .net.

Is This Answer Correct ?    4 Yes 2 No

what is COM Object in Dot net?..

Answer / prashanth

COM stands for Component Object Model.
It's referred in .NET as Un-managed code during Run-times.

.NET does not have control on execution status (specially
during transaction commits or rollbacks) until in gets back
acknowledgment of action back from COM object.

Is This Answer Correct ?    3 Yes 3 No

what is COM Object in Dot net?..

Answer / keshab

The Microsoft Component Object Model (COM) is a platform-
independent, distributed, object-oriented system for
creating binary software components that can interact. COM
is the foundation technology for Microsoft's OLE (compound
documents), ActiveX (Internet-enabled components), as well
as others.

ref : http://msdn.microsoft.com/en-
us/library/windows/desktop/ms694363(v=vs.85).aspx

Do not vote "No" if you do not know the answer.

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

What are the uses of reflection?

0 Answers  


What are standard controls?

0 Answers  


Explain the main function of url routing system in asp.net mvc? : asp.net mvc

0 Answers  


What is razor? : asp.net mvc

0 Answers  


detail code for sql data connections?

2 Answers  


How can I open ashx file in mobile?

0 Answers  


What is enableviewstate in asp net?

0 Answers  


Can viewstate be accessed in another page?

0 Answers  


How to write unmanaged code and how to identify whether the code is managed / unmanaged ?

2 Answers   Accenture, BirlaSoft, Cogtest,


What is the significance of attaching a profile while creating a user?

0 Answers   MCN Solutions,


What is Bundling and Minification in MVC?

0 Answers   HCL,


Why and where this web.config file is used?

0 Answers   Amazon,


Categories