Tagged Questions
COM+ (Component Services) is a runtime and set of services that is an evolution of Microsoft Component Object Model (COM) and Microsoft Transaction Server (MTS).
10
votes
2answers
784 views
Does a (.net) COM+ assembly need to be installed in the GAC?
I have a .net assembly that has a COM+ ServicedCopmonent in it and at the moment I install it into the GAC to get everything working. This means that I need to have every assembly that it references ...
7
votes
2answers
540 views
Com+ late binding c# 4.0
In my program I create Com+ objects dynamicly (late binding) using
Type comObjectType = Type.GetTypeFromProgID(progId, true);
object comObject = Activator.CreateInstance(comObjectType);
And then ...
7
votes
3answers
360 views
Splitting application layers into different assemblies
There is a debate going on at my company. Some are advocating moving business, data and business entities in one assembly for
Discoverability purposes. make it easy to find what you're looking ...
7
votes
5answers
825 views
Is COM+ still recommended?
I used to write ASP.Net apps deploying business dataaccess layers in COM+ components several years ago. This was the standard in several corporate infrastructure here in my country. Is this still ...
6
votes
6answers
2k views
COM, COM+, DCOM, where to start?
I am curious about COM+, DCOM. I know that MSFT does not encourage you to use this tools natively (meaning with C/C++, in fact there is not a lot of documentation available) but I want to learn to use ...
5
votes
1answer
2k views
Calling a remote COM+ ServicedComponent from a C# client
I have a serviced component installed in a COM+ server application. I want to create an instance from a remote client. The client needs to be able to specify the server machine's name dynamically. How ...
4
votes
1answer
124 views
Where can I find reliable information about Microsoft's plans for COM+ support in future versions of Windows?
When looking at a large web application with many competing priorities, one of the things I am faced with is a large number of COM+ components. At some point, these things need to be re-engineered in ...
4
votes
1answer
798 views
.Net - Whats the difference between a Session Facade and Business Delegate?
What I understand so far:
Business Delegate - In the presentation tier, as an ASP component, provides an interface for ASP views to access business components without exposing their API, therefore ...
4
votes
1answer
3k views
com4j versus jacob to call COM methods from Java
I maintain a legacy Java application that uses Jacob, or Java-COM Bridge, to make calls via the COM interfaces of MS VBA and MS Word. I have been looking at com4j from Sun, and it looks promising.
...
4
votes
3answers
326 views
Is there a modern replacement for the transaction and pooling features from Enterprise Services?
I'm using ServicedComponent from EnterpriseServices AKA Com+ for
Distributed transactions
Simple transaction programming by using attributes
Object pooling
Things that I find lacking in com+
...
4
votes
2answers
620 views
Is it possible to share a transaction between a .Net application and a COM+ object?
I did some tests a while ago and never figured out how to make this work.
The ingredients:
COM+ transactional object (developed in VB6)
.Net web application (with transaction) in IIS that...
...
3
votes
0answers
72 views
How can i track COM+ events call with Delphi?
I have a huge application that was made with COM+ Objects and i want to track/log the call of events of these components. The objective is to find the problems and refator that methods.
I have found ...
3
votes
1answer
121 views
COM object instantiates from one program but not from another running under the same user
We faced a rather strange issue with our COM component. The component implements a well-known interface and is consumed by a third-party closed source product (hereinafter referred to as Product X). ...
3
votes
2answers
138 views
Need advice on referencing a Managed COM Server (EXE) from Client Application
I have a managed COM out of process server exe in c# exposing my application object model for automation everything is working fine. I can access it from unmanaged code (for example, VC++) and it ...
3
votes
1answer
194 views
Specify apartment state to use when instantiating out of proc COM object
I created a COM object in .NET and registered it as a COM+ server application with Pooling = 1 using regsvcs. I am currently hunting down a bug and therefore need to make sure that this COM object is ...
3
votes
2answers
195 views
what is the .net technology to replace Microsoft Transaction Server
MTS is a popular COM+ service to do distributed transation control. I am wondeirng what is the .Net replacement for it since Com+ will be phased out.
3
votes
1answer
137 views
Is there a cost to using managed (.NET) components inside COM+?
Our company has relied heavily on COM+ components to centralize our DAL code and take advantage of the ability of COM+ to handle transactions and connection pooling. When we started using COM+, it ...
3
votes
1answer
404 views
Troubleshooting a COM+ application deadlock
I'm trying to troubleshoot a COM+ application that deadlocks intermittently. The last time it locked up, I was able to take a usermode dump of the dllhost process and analyze it using WinDbg. After ...
3
votes
5answers
611 views
Has .NET made raw COM and DCOM programming redundant?
Has the introduction of the .net framework made raw programming in COM and DCOM redundant ?
(Except for using some COM+ services, e.g. for transaction management through the ...
2
votes
1answer
40 views
Receive SENS events in .NET
I want to receive SENS events when the screensaver goes on/off. My code is based on this article:
private static readonly string GUID = "{" + typeof(ScreensaverHandler).GUID.ToString() + "}";
...
2
votes
0answers
34 views
Localization for COM+ assemblies
I have two projects in my solution:
ClassLibrary1 (Class Library), which contains
a class Class1, with a public method: Public Shared Function
GetMyValue() As String Return ...
2
votes
2answers
58 views
Is there a NANT task to start/stop COM+ components?
I am automating our deploymnet using CC.net and a NANT build script. I have to stop and start our COM+ components during deployment.
Is there a NANT task that does this?
2
votes
3answers
269 views
COM+ hang when calling a COM object under load
We have some COM+ code written in everybody's favourite language(?) -- VB6. This COM+ component calls into a standard COM component written by a 3rd party which performs calls into a SQL Server ...
2
votes
2answers
115 views
Make a ServicedComponent run with lower priority
We have a ServicedComponent (COM+ server application) which is quite CPU intensive. It's called from a Windows Service and the amount of time it takes for it to complete is not very important.
...
2
votes
2answers
282 views
Install package for COM+
How can I create a msi for COM+ component? Is it possible to create the install package using Visual Studio and have it registered so that it shows up under component services?
I currently have it ...
2
votes
2answers
576 views
Determining CPU and RAM usage in a Silverlight 4 WIndows Sidebar Gadget
I'm trying to write a Silverlight 4 Windows Sidebar Gadget that, among other things, can monitor the usage of each CPU core (as a percentage) and the usage of RAM (in bytes) of the host computer. ...
2
votes
1answer
190 views
NET 4.0 Installing Assembly in COM+ Loading Extra Dependencies
We have an assembly I will call COMPlusAssembly that references third party dlls. COMPlusAssembly is hosted in COM+ and installed using System.Enterprises.RegistrationHelper. Our clients may or may ...
2
votes
1answer
171 views
If assembly is added to the GAC, do all assemblies it references also need to be added there too?
Background Info:
I have two COM+ components on a remote server, based on .NET assemblies, one of which calls the other, which in turn calls a private assembly.
My chain of calls looks like this;
...
2
votes
1answer
391 views
changing existing COM+ applications identity via vbs script
How to changing existing COM+ applications identity via vbs script. like Authentication level = none and identity to this user via vb scripts. found many posting on add/delete com+ applications but ...
2
votes
2answers
287 views
COM+ component calling other COM+ components - “Cannot load type”
I have a two .NET assemblies which are registered as COM+ components and I'm testing them from a regular console application test harness;
Dim objFirst As New MyFirstComponent() 'COM+ initialisation
...
2
votes
2answers
879 views
Check if COM+ application is already running?
Is it possible in C# (4.0) to get the list of installed Com+ applications on the same box and then retrieve the status (Running/Shut down) of each of them?
I can find methods to start/stop, but not ...
2
votes
1answer
433 views
The stub received bad data
I have a delphi app on an XP SP3 that talks to delphi com+ on windows 2000 server, has been working fine but now for one of the calls to the com+ it wont work and returns the error -The stub received ...
2
votes
6answers
296 views
Managing multiple-processes: What are the common strategies?
While multithreading is faster in some cases, sometimes we just want to spawn multiple worker processes to do work. This has the benefits of not crashing the main app if one of the worker crashes, and ...
2
votes
2answers
299 views
How many people really use COM+/.NET EnterpriseServices?
I am learning about COM+ and EnterpriseServices. I came across the complete list of COM+ services on MSDN and read every one of them.
The sheer volume of this awed me. On the surface, it seems to be ...
2
votes
1answer
227 views
C# - Retrieve properties of a COM+ component?
I have a COM+ component on a server (Windows Server 2003). Is there any way I can programmatically retrieve the properties of this component, (e.g. the constructor string used)?
When I go to ...
2
votes
1answer
335 views
Remote DLL Registration without access to HKEY_CLASSES_ROOT
We have a legacy VB6 application that updates itself on startup by pulling down the latest files and registering the COM components. This works for both local (regsvr32) ActiveX COM Components and ...
2
votes
4answers
134 views
Performance gains when compiling .NET 1.1 COM+ components code with .NET 3.5 compiler
I need to build a service in form of a COM+ component using Enterprise Services.
The service is working right now. It gets a string does some spell-checking and returns a string.
My question is:
...
2
votes
2answers
1k views
Wix - ComPlusAssembly - Could not install type library
I'm new to Wix and I have ran into a problem that I'm obviously not able to solve on my own, so any help will be very much appreciated.
Quick background:
I'm representing a software vendor building ...
2
votes
1answer
690 views
VB6 DLL takes callback as Integer, VB.NET requires delegate reference type
I have an issue with a third-party COM+ DLL meant to be used from VB6, where it has a function to set a Callback for a hardware event. However, I'm using VB.NET, and AddressOf now returns a reference ...
2
votes
1answer
226 views
How to create a ServicedComponent instance in-process for unit tests?
[ClassInterface(ClassInterfaceType.None)]
[Guid("12C969B3-330D-4230-ACDA-F9BED3286B1E")]
[ProgId("Lib.Class")]
public class MyService : ServicedComponent, IMyService
{
...
}
Unit Test:
...
2
votes
1answer
356 views
What are easy ways to use a 32-bit in-proc COM server from 64-bit applications?
I have a 32-bit native C++ ATL in-proc COM server which depends on a huge set of legacy 32-bit libraries. I need to use it from a 64-bit application with the smallest changes possible.
One option is ...
2
votes
2answers
2k views
Classic ASP using COM+ on x64 Windows Server 2008 and IIS7
(Note: I thought about posting this to serverfault, but I figured more developers have banged their heads against these issues than admins)
I'm trying to set up a web page that uses both ASP Classic ...
2
votes
4answers
1k views
How to call a com+ component?
I'm making some archeology, dealing with COM+
I managed to enlist a simple COM dll as a COM+ component, so far so good.
So I've got this 'foobar' com+ component, with it's interface, and the method ...
2
votes
1answer
935 views
ASP, Server.CreateObject, MTS and C# object pooling — a reuse problem?
I'm trying to debug an "occasional" problem. We've got a classic ASP application that needs to send email. For whatever reasons it's using a C# object exposed via COM to do this send; the c# object is ...
2
votes
2answers
116 views
Are there any reasons not to host a COM server in a COM+ application?
The simplest way to transform an in-proc COM server into an out-proc COM server is creating a COM+ application. What are the possible drawbacks of doing it this way?
2
votes
4answers
214 views
Enterprise Services Alternative
Are there any alternatives to Serviced Components (COM+) in .NET?
I am looking for an on-demand (not always-running like Windows Service) manageable components to be hosted by the OS and be ...
2
votes
2answers
124 views
Would you use EnterpriseServices in a new enterprise development?
As you may already know, managed code (.NET apps) can make use of COM+ through EnterpriseServices, making issues like distributed transactions, resource pooling and synchronization "simpler to ...
2
votes
2answers
2k views
Error registering COM+ application proxy
I have exported a COM+ application proxy, which generates MSI and CAB files, and I have successfully installed them on a few different Win XP and Vista machines. However, I have a WinXP box that isn't ...
2
votes
1answer
181 views
What type is the application file in a call to COMAdminCatalog.InstallApplication
Has anyone used COMAdminCatalog.InstallApplication to successfully install an application into COM+? If so what type of file do you need to pass as the bstrApplicationFile parameter?
1
vote
1answer
52 views
FATAL: Could not find component we just installed
I have to do a modification on an old COM+ app written in C# 2.0. But when I try to register the DLL on a windows server 2008 machine with 'regsvcs excelserver.dll', I get the error:
The following ...