473,725 Members | 2,032 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Serviced Component

111 New Member
In .Net COM+ components are referred to as serviced components,

Namespace: System.Enterpri seServices;



Advantage of Serviced Components:

object pooling,
database connection pooling,
sharing resources,
role based security,
distributed transaction processing monitoring(COM+ )
Use the component registered on other servers


That means that

You can re use a component, thus avoiding the creation of the component each time its requested.
You can set the permissions so that you can control the users\groups who can create and invoke component \ functions \ methods
For ex: you can set that users\accountsu sers to invoke a finance component and users\accountma ngers to invoke finance.CreateB udget method.
You can control the tranasactions via components on multiple servers. i.e Billing component will be succesfull after only the sales component is successful, and sales component is successful only after the stocks component.


Activation:



You can run \ activate serviced component in two ways

ActivationOptio n.Library.-( in-process) serviced component will be activated in the client's process space by specifying the value



ActivationOptio n.Server.-( out-of-process) assembly will be activated in the COM+ executable process space by setting the ApplicationActi vation attribute to ActivationOptio n.Server

The above information must be specified in AssemblyInfo.

COM+ server application ( serviced component ) runs in the process space of the COM+ executable (dllhost.exe).



Requriments:



Comvisible should be set to true
StrongName for the assembly


Running the application:



.Net creates the Serviced component itself if you run the application in .Net IDE.

Activation by server method:

· Open component services from Administrative Tools. You have to set the permissions

by adding the roles called User and CreatorOwner to the roles folder of the component. To those roles add the userid \ groups who can access the component and set the identity in the Properties of the component, the component will take the identity specified to activate.

· Also you need to call the gacutil utility with command switch i as arguments for the serviced component dll.

Activation by Library method:

.Net IDE will take everything for you



Deployment:

Generally there are three ways of deploying a .serviced component:

Using the Regsvcs command line utility
This command line utility takes the name of the assembly as the input, creates a type library by reading the assembly, and finally registers the object with COM+.
Using the automatic registration mechanism provided by the .NET Framework
At runtime, the CLR (Common Language Runtime) automatically creates a type library based on the assembly and COM+ uses the information present in the type library to install the objects. This is called lazy registration and this method works only for library applications.
Using the RegistrationHel per class that is part of the System.Enterpri seServices namespace.
The InstallAssembly method of the RegistrationHel per class can be used to programmaticall y register .NET objects with COM+.
Steps for depolyment:

Server Activation:

You have to call regsvcs for the serviced component dll.
call the regasm for the serviced component dll.
call the gacutil utility with command switch i as arguments. for the serviced component dll. Make sure its installed in Windows\Assembl y Folder.
Open component services from Administrative Tools. You have to set the permissions
by adding the roles called User and CreatorOwner to the roles folder of the component. To those roles add the userid \ groups who can access the component and setting the indentity in the Properties of the component, the component will take the identity specified to activate.

Library Activation:

You have to call regsvcs for the serviced component dll.
Creation of Proxy:

To invoke Serviced component available on system A from system B, create a proxy out of the registerd com+ (serviced component) available on System A and register the proxy on System B.

Debugging

Library Activation:

You can directly run the component and debug in .Net IDE

Server Activation:

You have to debug by attaching to the the process of dllhost.exe and your break point will be hit in the .NetIDE

How Serviced component works:

First, it registers the CLR assembly as a COM component (as if you had run the Assembly Registration Utility, regasm.exe).
Second, it emits a COM type library (as if you had run the Assembly to Type Library Converter, tlbexp.exe) and uses it to deploy the configured classes (that are present in the assembly) in the COM+ catalog.
Then it creates the target application described in the assembly's ApplicationName and ApplicationActi vation attributes by default.
Finally, it uses the .NET Reflection APIs to interrogate the meta-data for the configured classes in the assembly and uses that information to programmaticall y update the COM+ catalog so that each class will have the appropriate declarative attribute settings. If a configured class does not have a particular
declarative attribute, regsvcs.exe will use a default value instead



Thanks & Regs
Bharath Reddy VasiReddy
Jan 4 '08 #1
0 5349

Sign in to post your reply or Sign up for a free account.

Similar topics

9
2078
by: Stan | last post by:
Here is my scenario: Web server ------------ Framework 1.1 Application proxy for the serviced component Component server ------------------- Framework 1.0
2
1339
by: Ansari | last post by:
hi all, I want to use serviced component in ASP.NET any walkthrough or link to a resource. I have tried a lot but serviced component could be initialized in ASP.NET page. However I can successfully access the component in windows application. Is there some extra efforts required to use serviced components in ASP.NET? any suggesstion or link will be highly appreiciated....
0
1229
by: Mihiri | last post by:
Hi, I have created sample .Net Serviced Component and registered it with com+ services as a server application. (windows 2000). In my client application(vb.net) , Com+ objects are disposed using Dispose method. Even though I dispose memory usage of DLLhost.exe does not decrease. Both client and serviced component are on the same machine for the moment. When I configure com+ component as a library application it works fine. When a...
0
1264
by: Mark Mims | last post by:
I am having a problem with a .NET serviced component running in MTS trying to call a web service on a remote machine on our internal network. The serviced component is using a domain account for authentication. When making the same call from a windows application it works successfully, but throught the serviced component I get this error, File or assembly name 5vb_bpv7.dll, or one of its dependencies, was not found. The ddl in the error...
4
1958
by: Pete Wittig | last post by:
Hello, I am creating an app using Serviced Components and I am exposing them using the Enterprise Services SOAP service. Here is my problem: I have one COM+ application with several serviced components. When I enable the SOAP service, I can access a WSDL link to every component in the application. What I would like to do is the following: Have a class A that is exposed through the SOAP service that provides getters for instances of...
4
2969
by: Praveen Chandra | last post by:
Hi, I just wanted to put down the issue with more detailed information so that you can help us get to the right Microsoft resource for a solution! Here is the problem description... Our intent: Accept the COM or COM+ class name, function-name and input parameter (fixed string parameter) as string inputs and execute(invoke) the function at run time.
1
1886
by: Pete Wittig | last post by:
Hi, I am trying to create a Setup and Deployment project for a Serviced Component. In my solution I have two projects. The first is the class library that contains my serviced component as well as an installer class. The second is the setup and deployment project. I have added the "Global Assembly Cache Folder" to the "File System on Target Machine". I then copied the files in the "Application Folder" into the "Global Assembly Cache...
0
1329
by: =?Utf-8?B?QkY=?= | last post by:
I am trying to work on Serviced Component in .NET 2.0 environment. I don't see much information about serviced component in .NET 2.0 environment. I worked on serviced component 2 years ago with .NET 1.1, which is not so easy to use. Can anybody tell me whether we have new features in .NET 2.0 to make serviced component easier to use? Thanks a lot.
2
4681
by: =?Utf-8?B?QkY=?= | last post by:
I am currently working on moving our business objects into COM+ serviced components. But in the process, there are too many changes such ComVisible and serviced component does not support parameterized constructors. So I am thinking whether I should change to use .NET remoting instead. Have anybody else gone through this .NET remoting vs serviced component comparison before? Which one is better? Can .NET remoting support object pooling...
0
8888
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8752
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9111
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8096
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6702
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6011
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3221
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2634
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.