Microsoft Knowledge Base Article
This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved.
Terms
of Use |
Trademarks
Article ID: 306296 - Last Review: September 18, 2003 - Revision: 4.1
HOW TO: Create a Serviced .NET Component in Visual C# .NET
This article was previously published under Q306296
This step-by-step article demonstrates how to create a serviced .NET component that uses transactions. This article also demonstrates how to create a client that tests your serviced component. Microsoft Enterprise Services provides Microsoft COM+ services to .NET components.
Important Notes
Create the Serviced .NET Component
- Create a new Visual C# Class Library project named ServicedCOM.
- Rename your default class and the filename from Class1.cs to SimpleTrans.cs. to do this, follow these steps:
- In the Class View window, right-click Class1, and then click Properties.
- In Properties, change the Name property to SimpleTrans.
- Add a reference to the System.EnterpriseServices namespace.
- Add the following statement, as the top line, to both SimpleTrans.cs and AssemblyInfo.cs:
using System.EnterpriseServices;
At the top of SimpleTrans.cs add the following statement: using System.Data.SqlClient;
- Inherit your class from ServicedComponent (fully qualified name: System.EnterpriseServices.ServicedComponent).
- Add the following code just before the *public class* declaration:
[Transaction(TransactionOption.RequiresNew)]
- Add the following recommended attributes to AssemblyInfo.cs:
[assembly: ApplicationActivation(ActivationOption.Library)]
[assembly: ApplicationName("SimpleTrans")]
- The ActivationOption attribute indicates whether the component will be activated within the caller's process. You can set Activation.Option to Library or to Server.
- The ApplicationName attribute is the name that appears for the COM+ application in the COM+ Catalog and the Component Services Administration console.
- Add the following optional attribute to SimpleTrans.cs, just after the using statements:
[assembly: Description("Simple Transactional application to show Enterprise Services")]
This attribute provides a description for the COM+ application in the COM+ Catalog and Component Services Administration console. - Add the following method to SimpleTrans.cs:
// Demos Explicit SetComplete/SetAbort
public string DoTrans()
{
SqlConnection connection;
SqlCommand command;
SqlDataReader reader;
string name;
string query;
try
{
query = "SELECT au_lname, au_fname FROM authors";
connection = new SqlConnection("data source = localhost;
initial catalog = pubs;
UID=sa;PWD=");
command = new SqlCommand(query, connection);
connection.Open();
reader = command.ExecuteReader();
reader.Read();
name = reader.GetString(0) + ", " + reader.GetString(1);
}
catch(Exception exc)
{
ContextUtil.SetAbort();
throw exc;
}
return name;
}
// Demo implicit SetComplete/SetAbort
[AutoComplete]
public void DoTxAuto()
{
// Do stuff
}
- Modify the SqlConnection string as appropriate for your environment.
Give Your Assembly a Strong Name
- Click Start, point to Programs, point to Microsoft Visual Studio .NET, point to Visual Studio .NET Tools, and then click Visual Studio .NET Command Prompt.
- At the command prompt, type sn.exe -k ServicedCOM.snk to give your assembly a strong name.
For information about signing assemblies with strong names, refer to the .NET Framework Software Development Kit (SDK) documentation. - Copy ServicedCOM.snk to the project folder.
- In AssemblyInfo.cs, replace the AssemblykeyFile code with the following code:
[assembly: AssemblyKeyFile("..\\..\\ServicedCOM.snk")]
Add Your Serviced Component to COM+
You can allow the component to register dynamically when the first instance is created, or you can manually register the component with Regsvcs.exe. To use Regsvcs.exe, follow these steps:
- Click Start, point to Programs, point to Microsoft Visual Studio .NET, point to Visual Studio .NET Tools, and then click Visual Studio .NET Command Prompt.
- At the command prompt, type regsvcs servicedcom.dll. This creates a COM+ library application with the same name as your class name. Ignore the warning message.
Test Your Component
- In Notepad, open a text file.
- Paste the following code in the file:
set o =createobject("ServicedCOM.SimpleTrans")
MsgBox o.DoTrans()
- From the File menu, click Save.
- In the Save As dialog box, in the File name text box, type Test.vbs. In the Save as type list, click All Files, and then click Save.
- Double-click the file to run the sample.
APPLIES TO
- Microsoft Enterprise Services (included with the .NET Framework) 1.0
- Microsoft Visual C# .NET 2002 Standard Edition
Community Feedback System
Very often, it takes hours to solve a problem. Very often, you've looked high
and low, and have tried a lot of solutions. When you finally found it, chances
are, it was because someone else helped you. Here's your chance to give back.
Use our community feedback tool to let others know what worked for you and what
didn't.
Please also understand that the community feedback system is not warranted to be
correct, it's simply a system that we've built to let people try and help each
other. If something in a feedback response doesn't make sense to you, or you're
not comfortable making changes that the feedback talks about (like registry
edits), please consult a professional.
Thank you for using kbAlertz.com Feedback System.
-- Scott Cate
Be the first to leave feedback, to help others about this knowledge base
article.
(Optional) Name
(Optional)
Public URL Or Email
Comments
No
HTML -- Text Only Please