1
vote
2answers
52 views
Shoud I use LayoutKind.Auto for my structs if they don’t perform in COM Interop?
By default structs in C# are implemented with [StructLayout( LayoutKind.Sequential )] for reasons basically stating that these type of objects are commonly used for COM Interop and their fields must …
1
vote
1answer
9 views
Can I host COM+ application in WCF?
Is it possible to host my COM Objects in WCF? I want to move them out of the Component service. Any advise will help
0
votes
1answer
39 views
What’s the purpose of COM+ library applications?
When a COM+ application is created the wizard offers to choose between a library and a server application.
A server application is activated in a separate process and this can be used to cheaply …
1
vote
1answer
37 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:
…
0
votes
1answer
35 views
Powershell setting COM+ Enforce access checks for this application
Hi,
I'm having problems figuring out what is the Powershell string for choosing the "Enforce access checks for this application" under the Security tab of the properties for that application. Here …
0
votes
0answers
12 views
COM+ Connection Pooling Doesn’t Appear to be working on SQL Server 2005 Cluster
We have a COM+ Data Layer that utilized Connection Pooling. Its deployed to 3 clusters, 2 SQL Server 2000 and 1 SQL Server 2005 environment.
We noticed today that our monitoring software is …
1
vote
1answer
7 views
Is there any documentation on IdentityUnmarshal interface?
Whenever I put my component into COM+ and call CoCreateInstance() on the client the following happens:
the runtime instantiates the objecs (calls IClassFactory::CreateInstance())
the runtime calls …
1
vote
1answer
29 views
Failing to set COM+ ConstructorString on Win7 - CryptProtectData changes?
UPDATED
I'm trying to programmatic-ally set a COM+ component's ConstructorString with a value for later initialization.
The code in question works fine on WinXP, Win2k3, Vista and Win2k8.
I'm …
0
votes
1answer
19 views
Which do I choose for hosting my in-proc server in a separate process - COM+ or DCOM?
I need to shield a 64-bit COM component consumer from the 32-bit native C++ ATL in-proc COM component.
Seems like both COM+ and DCOM can host my in-proc component in a separate process and do the …
0
votes
0answers
23 views
Possible to programmatically set COM+ Application Proxy properties in .NET?
Hi all,
I have a COM+ application proxy in the form of an *.msi file. Once installed, the application proxy will be installed into Component Services. To use this application proxy, I need to get into …
1
vote
1answer
37 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 …
0
votes
0answers
21 views
Writing To The Registry In COM+ On Vista
I have an assembly written in C# with a COM interface. This assemby is hosted in COM+ as a COM+ service running in dllhost.exe. I am using an Interactive User Identity, which means that the …
0
votes
0answers
10 views
Automate COM+ Package Updates
We have a lot of COM+ objects and packages. I am trying to automate the build and deployment. I am looking for a way to automate the updating of these COM+ packages. Does anybody have any …
0
votes
0answers
29 views
Calling Web Service with WSE 3.0 from COM+
I have to update a COM+ application to call a web service that uses WSE 3.0. What is the best way to call the web service from the COM+ client? My current plan is to create an Interop assembly like …
0
votes
2answers
59 views
Calling a COM+ Component remotely using C#
Hello,
I have a little COM+ component as a service on a remote server.
I´m trying to execute a method of this component using:
Type type = …
