Jump to: navigation, search

Difference between revisions of "Activity:CreateOPCUAScope (Activity)"


(Created page with "{{ActivityInfoBox | title = Configure OPC UA Variable | name = CreateOPCUAScope | image = 220px | imagecaption = CreateOPCUAScope (Ex...")
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
The CreateOPCUAScope opens a previously configured [[Activity:CreateOPCUAConnection (Activity)|OPC Connection]], processes variable requests and closes the connection when finished.
 +
 +
=Description=
 
{{ActivityInfoBox
 
{{ActivityInfoBox
 
| title = Configure OPC UA Variable
 
| title = Configure OPC UA Variable
Line 10: Line 13:
 
}}
 
}}
  
The CreateOPCUAScope opens a previously configured [[CreateOPCUAConnection (Activity)|OPC Connection]], processes variable requests and closes the connection when finished.
+
===Arguments===
 
+
==Arguments==
+
  
 
{| class="wikitable sortable" | width = "50%"
 
{| class="wikitable sortable" | width = "50%"
Line 18: Line 19:
 
! Argument!! Type !! Direction !! Purpose  
 
! Argument!! Type !! Direction !! Purpose  
 
|- align="left"
 
|- align="left"
| Connection|| OPCUAServerConnection|| In || A valid connection object as produced by a predecessing [[CreateOPCUAConnection (Activity)|OPC Connection]]  
+
| Connection|| OPCUAServerConnection|| In || A valid connection object as produced by a predecessing [[Activity:CreateOPCUAConnection (Activity)|OPC Connection]]  
 
|- align="left"
 
|- align="left"
| Result|| Boolean|| Out || True if successful, false if failed
+
| Result|| {{Boolean_MSDN}}|| Out || True if successful, false if failed
 
|}
 
|}
  
==Usage==
+
===Usage===
This activity is used to open a preconfigured [[CreateOPCUAConnection (Activity)|OPC Connection]]. It is a nestable activity, which means it can host any amount of sub-activities that will be processed sequentially. The hosted activities are typically [[AccessOPCUAVariable (Activity)|AccessOPCUAVariable]] activities, either as direct children but also wrapped within looping activities like ForEach or While. When all child activities are processed the OPC connection will be closed again.
+
This activity is used to open a preconfigured [[Activity:CreateOPCUAConnection (Activity)|OPC Connection]]. It is a nestable activity, which means it can host any amount of sub-activities that will be processed sequentially. The hosted activities are typically [[Activity:AccessOPCUAVariable (Activity)|AccessOPCUAVariable]] activities, either as direct children but also wrapped within looping activities like ForEach or While. When all child activities are processed the OPC connection will be closed again.
  
==Example==
+
=Example=
 
The CreateOPCUAScope activity, as used in the larger example "Read value from OPC variable":
 
The CreateOPCUAScope activity, as used in the larger example "Read value from OPC variable":
  
 
[[File:UI_Activity_CreateOPCUAConnection_Example.png|x700px]]
 
[[File:UI_Activity_CreateOPCUAConnection_Example.png|x700px]]
 +
 +
<headertabs />
  
 
==See also==
 
==See also==
 
* [[Workflow Designer]]
 
* [[Workflow Designer]]
* [[CreateOPCUAConnection (Activity)]]
+
* [[Activity:CreateOPCUAConnection (Activity)]]
* [[AccessOPCUAVariable (Activity)]]
+
* [[Activity:AccessOPCUAVariable (Activity)]]
  
[[Category:Workflows]] [[Category:Activities]] [[Category:Interfacing]] [[Category:OPC]]
+
[[Category:OPC]]

Latest revision as of 12:39, 23 February 2015

The CreateOPCUAScope opens a previously configured OPC Connection, processes variable requests and closes the connection when finished.

[edit]

Description

Configure OPC UA Variable
Name CreateOPCUAScope
Purpose Create a scope for accessing OPC variables
Category UBIK OPC UA Interface
Returns True if successful
Version 2.4.1+

Arguments

Argument Type Direction Purpose
Connection OPCUAServerConnection In A valid connection object as produced by a predecessing OPC Connection
Result Boolean Out True if successful, false if failed

Usage

This activity is used to open a preconfigured OPC Connection. It is a nestable activity, which means it can host any amount of sub-activities that will be processed sequentially. The hosted activities are typically AccessOPCUAVariable activities, either as direct children but also wrapped within looping activities like ForEach or While. When all child activities are processed the OPC connection will be closed again.

Example

The CreateOPCUAScope activity, as used in the larger example "Read value from OPC variable":

UI Activity CreateOPCUAConnection Example.png

See also