all groups > dotnet component services > july 2004
Articles on Transactions in .Net?
Posted by Jim Bancroft at 7/27/2004 10:37:43 AM
Hi everyone,
I'm currently using COM+ in my distributed transactions, and it's time to
port the VB 6 code over to .Net. Better late than never.
Could someone point out a few articles on COM+ transactional "equivalents"
in .Net, to get a fellow started with? I'm assuming .Net has its own tw... more >>
COM+ and dlls in VB .NET (urgent)
Posted by Reza at 7/22/2004 11:26:51 AM
This looked pretty simple to me at first, and perhaps it still is, but I
havnt been able to find out just what the trick is.
Basically the aim is to compile a dll from VB .NET, which can be read using
previously written Java code (or anywhere else) which reads and executes the
methods within t... more >>
COM+ problem - components get stucked
Posted by normalek NO[at]SPAM yahoo.com at 7/22/2004 7:35:56 AM
Hi,
I have the following problem: from time to time my com+ package just
stops responding. In com+ management console I can see that activation
time of some components is huge and is increasing forever. There are
no exception reported, neither applicative nor system. There are no
database deadl... more >>
regsvcs and FCL types
Posted by Kim Gräsman at 7/19/2004 2:50:41 PM
Hi all,
I've just recently started playing with Serviced Components in C#.
I've defined a type like:
[Guid(...)]
public interface IFoo
{
void Method();
}
[Guid(...)]
public class Foo : ServicedComponent, IFoo
{
public void Method()
... more >>
Registering an assembly in multiple COM+ applications
Posted by Kevin Jackson at 7/19/2004 12:18:53 PM
Is it possible to register the same ServicedComponent class in multiple COM+
library applications? What are the ramifications of doing so?
... more >>
How to invoke remote COM+ component in .NET
Posted by allen zhang at 7/16/2004 5:06:49 PM
I wanna invoke com+ components hosting in another computer, all application
including com+ components were written with Microsoft Visual Studio.NET
2003, but I don't know how to do it? Someone can help me? snippet codes or
articals?
Any help will be appreciated!
... more >>
It doesn't work with Oracle8i in .NET COM+
Posted by allen zhang at 7/14/2004 4:12:41 PM
I write an application with VS.NET2003 C#, I use com+ to handle transaction
of database, my database is Oracle8i, when I call db.Open(), I always get an
error message: Can't load oramts.dll, I don't know what this message means.
So, Anybody can help me.
Tks.
... more >>
NET/C# queued component and C++ client
Posted by yhubyn NO[at]SPAM yahoo.com at 7/14/2004 1:36:38 PM
I have a C# queued component registered on 2000 (had to install .Net
framework there). Now I'm calling CoGetObject() in C++ client getting
valid pointer for queued object and everything looks fine except there
is no messages in the queue after method call (queued component is not
started). What ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
COM+ Application Administration
Posted by Tres Henry at 7/8/2004 1:29:11 PM
I need to change the identity (user name and password) that a COM+
application is running under on a remote machine. Does anyone have an
example of remotely administering COM+ applications in .NET?
Thanks,
-Tres... more >>
Is COM+ Really Going Away?
Posted by Stingray at 7/7/2004 4:40:12 PM
Last week some colleagues of mine returned from a Microsoft training class
on Web Services with the notion that Web Services are replacing COM+. This
is what the instructor (a Microsoft employee) told them. This seems naive
to me, since COM+ encompasses much more than what web services can prov... more >>
How to make a ServicedComponent Singleton or Statefull?
Posted by M.Sameer at 7/6/2004 11:18:11 AM
Hi everyone,
I need to make my ServicedComponent Singleton because I noticed that
each method call creates a new instance which is kind of behavior I don't
need and it caused me problems. Making the component statefull may solve the
problem too.
Do anyone know how to do that?
Any exa... more >>
Why doesn't component services show my methods?
Posted by M.Sameer at 7/5/2004 12:40:02 PM
Hi everyone,
I have a ServicedComponent containing some public functions.
I notice that these functions doesn't show in Component Services in XP,
however they work fine.
This behavior is different from old COM+.
Will this cause any problems? Is there anything I need to do?
Thanks in adv... more >>
With or without COM+ architecture decision
Posted by normalek NO[at]SPAM yahoo.com at 7/3/2004 12:18:52 PM
Hi,
I'm facing a dilemma in architecting middle-tier software.
My business logic layer needs only two of services, usually provided
by COM+ : object pooling and transaction management. I am trying to
avoid using Enterprise Services, because there is some unnecessary
overhead involved. I succes... more >>
1st Windows Service - how to register dll??
Posted by rooster575 at 7/2/2004 3:11:22 PM
I just created a VB.NET windows service. [Project 1]
I have another CS.NET project [Project 2] within the same solution.
[Project 1] compiles and leaves Project1.exe.. fine.
[Project 2] compiles and leaves Project2.dll
How do I use Project2.dll?? It seems that I need to register the dll, b... more >>
|