OPC Wizard component services are functionality sets that are complementary to the main task of the component. They provide features that are not directly derived from the underlying communication methods of the component, but rather have to do with its integration to the environment, instrumentation (such as configuration), licensing etc.
You can obtain services from a service provider object, which is any type that derives, directly or indirectly, from the IServiceProvider interface. The major OPC Wizard components, such as EasyUAServer Class, and some other components, are all service providers as well.
The component services are identified by service type, which a .NET Type object, usually an interface. In order to obtain a service from a service provider, call its GetService method, passing it the type of service of you want to obtain. In most cases, the returned object is of the type you have specified (unless documented otherwise). You would therefore normally cast the received Object to the expected service type. In order to make the coding easier (in .NET), you can use the GetService<T> extension method, which saves you from using the typeof operator (in C#, or its equivalent in other languages) and from casting the result.
The GetService (or GetServiceByName) method returns a null reference when the specified interface type is not available. The set of services may depend on the various factors, such as the client object used, its configuration, software version etc. Unless you are sure that the service is available, your code should be able to handle the null result well, e.g. by gracefully degrading its functionality.
Different objects provide different types of services. The following paragraphs provide an overview of the types of services available from each major OPC Wizard component.
The EasyUAServer object can provide following services:
Service Type (.NET) | Title/Purpose | Description |
IDisposable | Disposable Object | Provides a mechanism for releasing unmanaged resources. Useful when you deal with a server interface already downcast to IServiceProvider. |
IEasyUAClientServerApplication | OPC UA Client-Server Application | Allows management of the OPC UA Client-Server Application Service. |
IEasyUAServer | OPC UA Server | The server itself. Useful when you deal with a server interface already downcast to IServiceProvider. |
IEasyUAServerConnectionMonitoring | OPC UA Server Connection Monitoring | Provides methods and events to monitor the OPC UA client connections on the server side. |
IEasyUAServerEndpointMonitoring | OPC UA Server Endpoint Monitoring | Provides methods and events to monitor OPC UA endpoints on the server side. |
IEasyUAServerSettings | OPC UA Server Settings | Provides access to settings for IEasyUAServer objects. |
ILicenseInfoProvider | License Info Provider | Provides information about the licensed object. Example: Examples - Server Licensing - Obtain serial number. |