Uses of Class
com.prosysopc.ua.ServiceException

Packages that use ServiceException
com.prosysopc.ua Common classes for client and server side. 
com.prosysopc.ua.client Main client side classes of the SDK. 
com.prosysopc.ua.client.nodes Client side implementation classes for the UaNode model. 
com.prosysopc.ua.nodes Common UaNode model. 
com.prosysopc.ua.server Main server side classes of the SDK. 
com.prosysopc.ua.types.di   
com.prosysopc.ua.types.di.client   
com.prosysopc.ua.types.gds   
com.prosysopc.ua.types.gds.client   
com.prosysopc.ua.types.opcua   
com.prosysopc.ua.types.opcua.client   
 

Uses of ServiceException in com.prosysopc.ua
 

Subclasses of ServiceException in com.prosysopc.ua
 class SessionActivationException
          An exception from a failure to activate a OPC UA session.
 

Methods in com.prosysopc.ua that throw ServiceException
protected  void ModelParserBase.addNodes(List<org.opcfoundation.ua.core.AddNodesItem> nodes, String type)
           
protected  void SubscriptionBase.applyUpdates()
          Apply the pending modifications guarded by beginUpdate/endUpdate.
 void ModelParserBase.createModel(boolean failOnFirstError)
          Creates the previously parsed model into the AddressSpaceHandler specified at initialization
protected  org.opcfoundation.ua.builtintypes.NodeId ModelParserBase.doAddNode(org.opcfoundation.ua.core.AddNodesItem item)
          Add a new node to the address space
protected  void ModelParserBase.doAddReference(org.opcfoundation.ua.core.AddReferencesItem item)
          Add a new reference to the address space
protected  void SubscriptionBase.enabledChanged()
          Handles a change in PublishingEnabled
 void SubscriptionBase.endUpdate()
          Ends a property or item modification, which was started with SubscriptionBase.beginUpdate().
 void UaAddressSpace.loadModel(InputStream inputStream)
          Load an Information Model into the application's address space.
 void UaAddressSpace.loadModel(URI path)
          Load an Information Model into the application's address space.
protected  void MonitoredItemBase.monitoringModeChanged()
           
protected  void SubscriptionBase.paramChanged()
          Parameter change "event".
abstract  MonitoredItemBase SubscriptionBase.removeItem(MonitoredItemBase item)
          Remove an item from the subscription.
 MonitoredItemBase SubscriptionBase.removeItem(org.opcfoundation.ua.builtintypes.UnsignedInteger itemId)
          Remove an item from the subscription.
protected  void MonitoredItemBase.setFilter(org.opcfoundation.ua.core.MonitoringFilter filter)
          A filter used by the Server to determine if the MonitoredItem should generate a Notification.
 void SubscriptionBase.setLifetimeCount(long requestedLifetimeCount)
          The lifetime count should be a mimimum of three times the keep-alive count.
 void SubscriptionBase.setLifetimeCount(org.opcfoundation.ua.builtintypes.UnsignedInteger requestedLifetimeCount)
          The lifetime count shall be a mimimum of three times the keep-alive count.
 void SubscriptionBase.setMaxKeepAliveCount(long requestedMaxKeepAliveCount)
          When the publishing timer in the Server has expired this number of times without requiring any NotificationMessage to be sent, the Subscription sends a keep-alive Message to the Client.
 void SubscriptionBase.setMaxKeepAliveCount(org.opcfoundation.ua.builtintypes.UnsignedInteger requestedMaxKeepAliveCount)
          When the publishing timer in the Server has expired this number of times without requiring any NotificationMessage to be sent, the Subscription sends a keep-alive Message to the Client.
 void SubscriptionBase.setMaxNotificationsPerPublish(long maxNotificationsPerPublish)
          The maximum number of notifications that the Client wishes to receive in a single Publish response.
 void SubscriptionBase.setMaxNotificationsPerPublish(org.opcfoundation.ua.builtintypes.UnsignedInteger maxNotificationsPerPublish)
          The maximum number of notifications that the Client wishes to receive in a single Publish response.
 void MonitoredItemBase.setMonitoringMode(org.opcfoundation.ua.core.MonitoringMode monitoringMode)
          Set the monitoring mode.
 void SubscriptionBase.setPriority(int priority)
          Indicates the relative priority of the Subscription.
 void SubscriptionBase.setPriority(org.opcfoundation.ua.builtintypes.UnsignedByte priority)
          Indicates the relative priority of the Subscription.
 void SubscriptionBase.setPublishingEnabled(boolean publishingEnabled)
          A Boolean parameter with the following values : TRUE publishing is enabled for the Subscription.
 void SubscriptionBase.setPublishingInterval(double requestedPublishingInterval)
          This interval defines the cyclic rate that the Subscription is being requested to return Notifications to the Client.
 void SubscriptionBase.setPublishingInterval(long requestedPublishingInterval, TimeUnit timeUnit)
           
 void MonitoredItemBase.setQueueSize(long queueSize)
          The requested size of the MonitoredItem queue.
 void MonitoredItemBase.setQueueSize(org.opcfoundation.ua.builtintypes.UnsignedInteger queueSize)
           
protected  void MonitoredItemBase.updateFilter()
          React to changes in the filter.
protected  void MonitoredItemBase.updateQueue()
          Update the queue, when it's size has changed.
 

Uses of ServiceException in com.prosysopc.ua.client
 

Subclasses of ServiceException in com.prosysopc.ua.client
 class ConnectException
          Failure in connecting the UaClient to the UA Server.
 class InvalidServerEndpointException
          Invalid server endpoint exception.
 

Methods in com.prosysopc.ua.client that throw ServiceException
 org.opcfoundation.ua.core.MonitoredItemCreateResult Subscription.addItem(MonitoredItem item)
          Adds a monitored item to the subscription.
 org.opcfoundation.ua.core.MonitoredItemCreateResult[] Subscription.addItems(MonitoredItem... items)
          Adds several monitored items to the subscription at once.
 org.opcfoundation.ua.builtintypes.NodeId AddressSpace.addNode(org.opcfoundation.ua.core.AddNodesItem node)
          Add a new node to the server.
 org.opcfoundation.ua.builtintypes.NodeId AddressSpace.addNode(org.opcfoundation.ua.builtintypes.NodeId parentNodeId, org.opcfoundation.ua.builtintypes.NodeId referenceTypeId, org.opcfoundation.ua.builtintypes.NodeId newNodeId, org.opcfoundation.ua.builtintypes.QualifiedName browseName, org.opcfoundation.ua.core.NodeClass nodeClass, org.opcfoundation.ua.core.NodeAttributes nodeAttributes, org.opcfoundation.ua.builtintypes.NodeId typeDefinition)
          Add a new node to the server.
 org.opcfoundation.ua.core.AddNodesResult[] AddressSpace.addNodes(org.opcfoundation.ua.core.AddNodesItem... nodes)
          Add new nodes to the server via the AddNodes service call.
protected  void ModelParser.addNodes(List<org.opcfoundation.ua.core.AddNodesItem> nodes, String type)
           
 void AddressSpace.addReference(org.opcfoundation.ua.core.AddReferencesItem reference)
          Add a new reference to the server.
 org.opcfoundation.ua.builtintypes.StatusCode[] AddressSpace.addReferences(org.opcfoundation.ua.core.AddReferencesItem... references)
          Add new references to the server via the AddReferences service call.
 Subscription UaClient.addSubscription(Subscription subscription)
          Create a new subscription and add it to Subscriptions.
protected  void Subscription.applyUpdates()
           
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browse(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId)
          Browse a single node using the browse settings defined in the class.
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browse(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, org.opcfoundation.ua.core.BrowseDirection direction, org.opcfoundation.ua.builtintypes.NodeId referenceType, boolean includeSubTypes, org.opcfoundation.ua.core.NodeClass... nodeClasses)
          Browse all references of the specified type from the specified node.
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browse(org.opcfoundation.ua.builtintypes.NodeId nodeId)
          Browse a single node using the browse settings defined in the class.
protected  List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browse(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.core.BrowseDescription browseDescription)
           
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browse(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.core.BrowseDirection direction, org.opcfoundation.ua.builtintypes.NodeId referenceType)
          Browse all references of the specified type from the specified node.
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browse(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.core.BrowseDirection direction, org.opcfoundation.ua.builtintypes.NodeId referenceType, boolean includeSubTypes, org.opcfoundation.ua.core.NodeClass... nodeClasses)
          Browse all references of the specified type from the specified node.
 org.opcfoundation.ua.core.BrowseResult[] AddressSpace.browse(org.opcfoundation.ua.core.ViewDescription view, int maxRequestedReferencesPerNode, org.opcfoundation.ua.core.BrowseDescription... nodesToBrowse)
          Browses the server address space using several, different browse descriptions at the same time.
 org.opcfoundation.ua.transport.AsyncResult<org.opcfoundation.ua.builtintypes.ServiceResponse> AddressSpace.browseAsync(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId)
          Browses the server address space using several, different browse descriptions at the same time.
 org.opcfoundation.ua.transport.AsyncResult<org.opcfoundation.ua.builtintypes.ServiceResponse> AddressSpace.browseAsync(org.opcfoundation.ua.builtintypes.NodeId nodeId)
          Browses the server address space using several, different browse descriptions at the same time.
 org.opcfoundation.ua.transport.AsyncResult<org.opcfoundation.ua.builtintypes.ServiceResponse> AddressSpace.browseAsync(org.opcfoundation.ua.core.ViewDescription view, int maxRequestedReferencesPerNode, org.opcfoundation.ua.core.BrowseDescription... nodesToBrowse)
          Browses the server address space using several, different browse descriptions at the same time.
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browseMethods(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId)
          Browse references to object methods.This performs a browse to HasComponent references ending to Method node classes.
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browseMethods(org.opcfoundation.ua.builtintypes.NodeId nodeId)
          Browse references to object methods.This performs a browse to HasComponent references ending to Method node classes.
 org.opcfoundation.ua.core.BrowseResult[] AddressSpace.browseNext(boolean releaseContinuationPoints, byte[]... continuationPoints)
          Continue a browse operation that was to be continued.
 org.opcfoundation.ua.core.BrowseResult[] AddressSpace.browseNext(boolean releaseContinuationPoints, org.opcfoundation.ua.builtintypes.ByteString... continuationPoints)
          Continue a browse operation that was to be continued.
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browseUp(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId)
          Browse up in the address space hierarchy.
 List<org.opcfoundation.ua.core.ReferenceDescription> AddressSpace.browseUp(org.opcfoundation.ua.builtintypes.NodeId nodeId)
          Browse up in the address space hierarchy.
 org.opcfoundation.ua.core.CallResponse UaClient.call(org.opcfoundation.ua.core.CallMethodRequest... MethodsToCall)
          Call several methods at once.
 org.opcfoundation.ua.builtintypes.Variant[] UaClient.call(org.opcfoundation.ua.builtintypes.NodeId objectId, org.opcfoundation.ua.builtintypes.NodeId methodId, org.opcfoundation.ua.builtintypes.Variant... inputArguments)
          Call a method in the server.
protected  void Subscription.checkServiceResult(org.opcfoundation.ua.builtintypes.ServiceResponse response, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] operationDiagnostics)
           
 void UaClient.connect()
          Connect to the server.
protected  void Subscription.createItems()
           
protected  org.opcfoundation.ua.core.CreateMonitoredItemsResponse Subscription.createMonitoredItems(MonitoredItemBase... items)
           
protected  org.opcfoundation.ua.core.DeleteMonitoredItemsResponse Subscription.deleteMonitoredItems(MonitoredItemBase... items)
           
 void AddressSpace.deleteNode(org.opcfoundation.ua.core.DeleteNodesItem node)
          Delete a node from the server.
 org.opcfoundation.ua.builtintypes.StatusCode[] AddressSpace.deleteNodes(org.opcfoundation.ua.core.DeleteNodesItem... nodes)
          Delete nodes from the server via the DeleteNodes service call.
 void AddressSpace.deleteReference(org.opcfoundation.ua.core.DeleteReferencesItem reference)
          Delete a reference from the server.
 org.opcfoundation.ua.builtintypes.StatusCode[] AddressSpace.deleteReferences(org.opcfoundation.ua.core.DeleteReferencesItem... references)
          Delete new references to the server via the DeleteReferences service call.
 org.opcfoundation.ua.core.EndpointDescription[] UaClient.discoverEndpoints()
          Find the list of server end-points corresponding to UaClient.getProtocol().
 org.opcfoundation.ua.core.EndpointDescription[] UaClient.discoverEndpoints(UaApplication.Protocol... protocols)
          Find the list of server end-points corresponding to the defined protocols.
protected  void Subscription.enabledChanged()
           
 UaMethod AddressSpace.getMethod(org.opcfoundation.ua.builtintypes.ExpandedNodeId methodId)
          Get an UA method definition from the server.
 UaMethod AddressSpace.getMethod(org.opcfoundation.ua.builtintypes.NodeId methodId)
          Get an UA method definition from the server.
 UaMethod AddressSpace.getMethodByName(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.QualifiedName methodName)
          Get a method with methodName of a node.
 List<UaMethod> AddressSpace.getMethods(org.opcfoundation.ua.builtintypes.NodeId nodeId)
          Get all methods of an object node.
 org.opcfoundation.ua.common.NamespaceTable UaClient.getNamespaceTable(boolean forceRefresh)
          The server NamespaceTable.
 UaNode AddressSpace.getNode(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId)
          Finds the node object, corresponding to the NodeId. the method simply converts nodeId to NodeId and calls getNode(NodeId).
<T extends UaNode>
T
AddressSpace.getNode(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, Class<T> clazz)
          Convenience method for AddressSpace.getNode(ExpandedNodeId) which automatically casts the result to the requested class.
 UaNode AddressSpace.getNode(org.opcfoundation.ua.builtintypes.NodeId nodeId)
          Finds the node object, corresponding to the NodeId.
<T extends UaNode>
T
AddressSpace.getNode(org.opcfoundation.ua.builtintypes.NodeId nodeId, Class<T> clazz)
          Convenience method for AddressSpace.getNode(ExpandedNodeId) which automatically casts the result to the requested class.
protected  org.opcfoundation.ua.builtintypes.NodeId GlobalServerList.getNodeId(org.opcfoundation.ua.core.BrowsePathResult[] results, int i)
           
 UaNode[] AddressSpace.getNodes(org.opcfoundation.ua.builtintypes.NodeId... nodeIds)
           
 org.opcfoundation.ua.common.ServerTable UaClient.getServerTable(boolean forceRefresh)
          The server ServerTable.
 List<org.opcfoundation.ua.transport.security.SecurityMode> UaClient.getSupportedSecurityModes()
          Get a list of security modes supported by the server.
 org.opcfoundation.ua.core.UserTokenPolicy[] UaClient.getSupportedUserIdentityTokens()
          Find out the user identity types supported by the server.
 UaType AddressSpace.getType(org.opcfoundation.ua.builtintypes.NodeId typeId)
          Get a Type node.
protected  void Subscription.handleNotificationDatas()
          Handles all pending notifications from the responseQueue, where they have been recorded by Subscription.onPublishResponse(PublishResponse)
 org.opcfoundation.ua.core.HistoryUpdateResult UaClient.historyDeleteAtTimes(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime[] reqTimes)
          Deletes history at specified times.
 org.opcfoundation.ua.core.HistoryUpdateResult UaClient.historyDeleteEvents(org.opcfoundation.ua.builtintypes.NodeId nodeId, List<org.opcfoundation.ua.builtintypes.ByteString> eventIds)
          Deletes specified events from history.
 org.opcfoundation.ua.core.HistoryUpdateResult UaClient.historyDeleteModified(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime startTime, org.opcfoundation.ua.builtintypes.DateTime endTime)
          Deletes modified history from a specified interval.
 org.opcfoundation.ua.core.HistoryUpdateResult UaClient.historyDeleteRaw(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime startTime, org.opcfoundation.ua.builtintypes.DateTime endTime)
          Deletes raw history from a specified interval.
 org.opcfoundation.ua.core.HistoryReadResult[] UaClient.historyRead(org.opcfoundation.ua.core.HistoryReadDetails details, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, Boolean releaseContinuationPoints, org.opcfoundation.ua.core.HistoryReadValueId... nodesToRead)
          Read history of nodes.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.historyReadAtTimes(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime[] reqTimes, org.opcfoundation.ua.utils.NumericRange indexRange, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn)
          Reads history at specified times.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.historyReadAtTimes(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime[] reqTimes, org.opcfoundation.ua.utils.NumericRange indexRange, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, Boolean useSimpleBounds)
          Reads history at specified times.
 org.opcfoundation.ua.core.HistoryEventFieldList[] UaClient.historyReadEvents(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime startTime, org.opcfoundation.ua.builtintypes.DateTime endTime, org.opcfoundation.ua.builtintypes.UnsignedInteger numValuesPerNode, org.opcfoundation.ua.core.EventFilter filter, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn)
          Reads events from history.
 org.opcfoundation.ua.core.HistoryModifiedData UaClient.historyReadModified(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime startTime, org.opcfoundation.ua.builtintypes.DateTime endTime, org.opcfoundation.ua.builtintypes.UnsignedInteger numValuesPerNode, org.opcfoundation.ua.utils.NumericRange indexRange, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn)
          Reads Modified values from the history.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.historyReadProcessed(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime startTime, org.opcfoundation.ua.builtintypes.DateTime endTime, Double processingInterval, org.opcfoundation.ua.builtintypes.NodeId aggregateType, org.opcfoundation.ua.core.AggregateConfiguration aggregateConfiguration, org.opcfoundation.ua.utils.NumericRange indexRange, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn)
          Reads processed history data.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.historyReadRaw(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime startTime, org.opcfoundation.ua.builtintypes.DateTime endTime, long numValuesPerNode, Boolean returnBounds, org.opcfoundation.ua.utils.NumericRange indexRange, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn)
          Reads raw history data.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.historyReadRaw(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.DateTime startTime, org.opcfoundation.ua.builtintypes.DateTime endTime, org.opcfoundation.ua.builtintypes.UnsignedInteger numValuesPerNode, Boolean returnBounds, org.opcfoundation.ua.utils.NumericRange indexRange, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn)
          Reads raw history data.
 org.opcfoundation.ua.core.HistoryUpdateResult[] UaClient.historyUpdate(org.opcfoundation.ua.core.HistoryUpdateDetails... details)
          Update history data in the server.
 org.opcfoundation.ua.core.HistoryUpdateResult UaClient.historyUpdateData(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.core.PerformUpdateType performInsertReplace, org.opcfoundation.ua.builtintypes.DataValue[] updateValues)
          Updates history data.
 org.opcfoundation.ua.core.HistoryUpdateResult UaClient.historyUpdateEvent(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.core.PerformUpdateType performInsertReplace, org.opcfoundation.ua.core.EventFilter filter, org.opcfoundation.ua.core.HistoryEventFieldList[] eventData)
          Updates historical events in the server.
 org.opcfoundation.ua.core.HistoryUpdateResult UaClient.historyUpdateStructureData(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.core.PerformUpdateType performInsertReplace, org.opcfoundation.ua.builtintypes.DataValue[] updateValues)
          Updates historical structure data.
protected  void MonitoredItem.itemChanged()
           
protected  void Subscription.itemChanged(MonitoredItem item)
           
 void AddressSpace.loadModel(InputStream inputStream)
          Load an Information Model into the client.
 void AddressSpace.loadModel(InputStream inputStream, Collection<org.opcfoundation.ua.builtintypes.ExpandedNodeId> ignoredNodes, boolean failOnFirstError)
          Load an Information Model into the client.
 void AddressSpace.loadModel(URI path)
          Load an Information Model into the client.
 void AddressSpace.loadModel(URI path, Collection<org.opcfoundation.ua.builtintypes.ExpandedNodeId> ignoredNodes, boolean failOnFirstError)
          Load an Information Model into the server.
protected  org.opcfoundation.ua.core.ModifyMonitoredItemsResponse Subscription.modifyMonitoredItems(List<MonitoredItem> items)
           
protected  void MonitoredItem.monitoringModeChanged()
           
protected  void Subscription.monitoringModeChanged(MonitoredItem monitoredItem)
           
protected  void Subscription.paramChanged()
           
 org.opcfoundation.ua.core.ReadResponse UaClient.read(Double maxAge, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.ReadValueId... nodesToRead)
          This Service is used to read one or more Attributes of one or more Nodes.
 org.opcfoundation.ua.builtintypes.DataValue[] Subscription.readAll(Double maxAge, org.opcfoundation.ua.core.TimestampsToReturn timestamps)
          Read the current value of each MonitoredDataItem in the subscription.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readAttribute(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger attributeId)
          Reads the value for the specified single node attribute.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readAttribute(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger attributeId, org.opcfoundation.ua.utils.NumericRange indexRange, Double maxCacheAge)
          Reads the value for the specified single node attribute.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readAttribute(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger attributeId)
          Reads the value for the specified single node attribute.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readAttribute(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger attributeId, org.opcfoundation.ua.utils.NumericRange indexRange, Double maxCacheAge)
          Reads the value for the specified single node attribute.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readAttributes(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger... attributeIds)
          Read all attributes of a Node.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readAttributes(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger[] attributeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges, Double maxCacheAge)
          Read all attributes of a Node.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readAttributes(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger... attributeIds)
          Read all attributes of a Node.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readAttributes(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger[] attributeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges, Double maxCacheAge)
          Read all attributes of a Node.
 org.opcfoundation.ua.builtintypes.StatusCode[] AddressSpace.readAttributes(UaNode node, org.opcfoundation.ua.builtintypes.UnsignedInteger... attributes)
          Reads the values for the specified node attributes and sets the respective values in the node object.
 void AddressSpace.readComponents(UaNode node)
          Read all components of a node from the server to the cache.
 void AddressSpace.readNode(UaNode node)
          Reads the values for all node attributes and sets the respective values in the node object.
 void AddressSpace.readProperties(UaNode node)
          Read values of all properties of a node.
 void AddressSpace.readReferences(UaNode node, org.opcfoundation.ua.builtintypes.NodeId referenceTypeId, org.opcfoundation.ua.core.BrowseDirection direction, boolean includeSubTypes)
          Read the references of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, Double maxCacheAge)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, org.opcfoundation.ua.utils.NumericRange indexRange)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.ExpandedNodeId nodeId, org.opcfoundation.ua.utils.NumericRange indexRange, Double maxCacheAge)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.NodeId nodeId)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.NodeId nodeId, Double maxCacheAge)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.utils.NumericRange indexRange)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue UaClient.readValue(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.utils.NumericRange indexRange, Double maxCacheAge)
          Reads the value attribute of a node.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.ExpandedNodeId[] nodeIds)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.ExpandedNodeId[] nodeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.ExpandedNodeId[] nodeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges, org.opcfoundation.ua.core.TimestampsToReturn timestamps)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.ExpandedNodeId[] nodeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges, org.opcfoundation.ua.core.TimestampsToReturn timestamps, Double maxCacheAge)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.ExpandedNodeId[] nodeIds, org.opcfoundation.ua.core.TimestampsToReturn timestamps)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.NodeId[] nodeIds)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.NodeId[] nodeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.NodeId[] nodeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges, org.opcfoundation.ua.core.TimestampsToReturn timestamps)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.NodeId[] nodeIds, org.opcfoundation.ua.utils.NumericRange[] indexRanges, org.opcfoundation.ua.core.TimestampsToReturn timestamps, Double maxCacheAge)
          Reads the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.DataValue[] UaClient.readValues(org.opcfoundation.ua.builtintypes.NodeId[] nodeIds, org.opcfoundation.ua.core.TimestampsToReturn timestamps)
          Reads the value attribute of several nodes at once.
 boolean UaClient.reconnect()
          Reconnect to the server.
 org.opcfoundation.ua.builtintypes.NodeId[] AddressSpace.registerNodes(org.opcfoundation.ua.builtintypes.NodeId... nodesToRegister)
          Register often used nodes in the server for quick access.
 MonitoredItemBase Subscription.removeItem(MonitoredItemBase item)
          Remove a monitored item from the subscription.
 MonitoredItemBase Subscription.removeItem(org.opcfoundation.ua.builtintypes.UnsignedInteger clientHandle)
          Remove a monitored item from the subscription.
 org.opcfoundation.ua.builtintypes.StatusCode[] Subscription.removeItems()
          Removes all monitored items from the subscription at once.
 org.opcfoundation.ua.builtintypes.StatusCode[] Subscription.removeItems(MonitoredItemBase... items)
          Removes several monitored items from the subscription at once.
 org.opcfoundation.ua.builtintypes.StatusCode UaClient.removeSubscription(Subscription subscription)
          Remove the subscription from Subscriptions.
 org.opcfoundation.ua.builtintypes.StatusCode[] UaClient.removeSubscriptions(Subscription[] subscriptions)
          Remove subscriptions from Subscriptions.
 org.opcfoundation.ua.transport.AsyncResult<org.opcfoundation.ua.builtintypes.StatusCode[]> UaClient.removeSubscriptionsAsync(Subscription... subscriptions)
          Remove subscriptions from Subscriptions, asynchronously.
 void Subscription.republishAllAvailable()
           
 org.opcfoundation.ua.builtintypes.ServiceResponse UaClient.serviceRequest(org.opcfoundation.ua.builtintypes.ServiceRequest request)
          Send a custom service request to the server, synchronously.
 org.opcfoundation.ua.transport.AsyncResult<org.opcfoundation.ua.builtintypes.ServiceResponse> UaClient.serviceRequestAsync(org.opcfoundation.ua.builtintypes.ServiceRequest request)
          Send a custom service request to the server, asynchronously.
 org.opcfoundation.ua.builtintypes.ServiceResponse UaClient.sessionlessRequest(org.opcfoundation.ua.builtintypes.ServiceRequest request)
          Make a service request to the server over a secure channel.
 void MonitoredDataItem.setAggregateFilter(org.opcfoundation.ua.core.AggregateFilter filter)
           
 void MonitoredDataItem.setDataChangeFilter(org.opcfoundation.ua.core.DataChangeFilter filter)
          Define the filter for selecting which notification the server should send.
 void MonitoredEventItem.setEventFilter(org.opcfoundation.ua.core.EventFilter filter)
          Define the event filter.
 void MonitoredDataItem.setIndexRange(org.opcfoundation.ua.utils.NumericRange indexRange)
          Define the range of array indexes to monitor.
 void Subscription.setMonitoringMode(org.opcfoundation.ua.core.MonitoringMode monitoringMode)
          Set the monitoring mode of all items in the subscription.
protected  org.opcfoundation.ua.core.SetMonitoringModeResponse Subscription.setMonitoringMode(org.opcfoundation.ua.core.MonitoringMode monitoringMode, List<MonitoredItem> items)
          Set the monitoring mode of the specified items.
 void Subscription.setPublishingInterval(long requestedPublishingInterval, TimeUnit unit)
          This interval defines the cyclic rate that the Subscription is being requested to return Notifications to the Client.
 void MonitoredDataItem.setSamplingInterval(double samplingInterval)
          The interval that defines the fastest rate at which the MonitoredItem(s) should be accessed and evaluated.
 void MonitoredDataItem.setSamplingInterval(long samplingInterval, TimeUnit unit)
          The interval that defines the fastest rate at which the MonitoredItem(s) should be accessed and evaluated.
 void Subscription.transferTo(UaClient newClient)
          Move the subscription to another client connection.
 void Subscription.transferTo(UaClient newClient, org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
          Move the subscription to another client connection, using the provided SubscriptionId.
 org.opcfoundation.ua.core.BrowsePathResult[] AddressSpace.translateBrowsePathsToNodeIds(org.opcfoundation.ua.core.BrowsePath... browsePaths)
          Request the NodeIds for the nodes that are references from the startingNode using paths.
 org.opcfoundation.ua.core.BrowsePathResult[] AddressSpace.translateBrowsePathsToNodeIds(org.opcfoundation.ua.builtintypes.NodeId startingNode, org.opcfoundation.ua.core.RelativePath... paths)
          Request the NodeIds for the nodes that are references from the startingNode using paths.
 org.opcfoundation.ua.core.BrowsePathTarget[] AddressSpace.translateBrowsePathToNodeId(org.opcfoundation.ua.builtintypes.NodeId startingNode, org.opcfoundation.ua.core.RelativePathElement... elements)
          Translate a single browse path to a NodeId.
 org.opcfoundation.ua.builtintypes.NodeId[] AddressSpace.unregisterAllNodes()
          Unregister all previously registered Nodes.
 void AddressSpace.unregisterNodes(org.opcfoundation.ua.builtintypes.NodeId... nodesToUnregister)
          This Service is used to unregister NodeIds that have been obtained via AddressSpace.registerNodes(org.opcfoundation.ua.builtintypes.NodeId...).
protected  void MonitoredItem.updateFilter()
           
 void Subscription.updateItems()
          Update the locally modified monitored items in the server.
 void Subscription.updateMonitoringModes()
          Update all pending monitoring mode changes to the server.
protected  void MonitoredItem.updateQueue()
           
protected  void Subscription.updateSubscription()
           
 org.opcfoundation.ua.core.WriteResponse UaClient.write(org.opcfoundation.ua.core.WriteValue... nodesToWrite)
          Write values to the server.
 boolean UaClient.writeAttribute(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger attributeId, Object value)
          Write a single attribute value.
 boolean UaClient.writeAttribute(org.opcfoundation.ua.builtintypes.NodeId nodeId, org.opcfoundation.ua.builtintypes.UnsignedInteger attributeId, Object value, org.opcfoundation.ua.utils.NumericRange indexRange)
          Write a single attribute value.
 boolean UaClient.writeValue(org.opcfoundation.ua.builtintypes.NodeId nodeId, Object value)
          Write the value attribute of a node.
 boolean UaClient.writeValue(org.opcfoundation.ua.builtintypes.NodeId nodeId, Object value, org.opcfoundation.ua.utils.NumericRange indexRange)
          Write the value attribute of a node.
 org.opcfoundation.ua.builtintypes.StatusCode[] UaClient.writeValues(org.opcfoundation.ua.builtintypes.NodeId[] nodeIds, Object[] value)
          Write the value attribute of several nodes at once.
 org.opcfoundation.ua.builtintypes.StatusCode[] UaClient.writeValues(org.opcfoundation.ua.builtintypes.NodeId[] nodeIds, Object[] values, org.opcfoundation.ua.utils.NumericRange[] indexRanges)
          Write the value attribute of several nodes at once.
 

Uses of ServiceException in com.prosysopc.ua.client.nodes
 

Methods in com.prosysopc.ua.client.nodes that throw ServiceException
protected
<T> T
UaObjectImpl.call(org.opcfoundation.ua.builtintypes.NodeId methodId, MethodArgumentTransformer<T> outputTransformer, Object... inputArgs)
          Helper method for generated code.
 org.opcfoundation.ua.builtintypes.Variant[] UaObjectImpl.call(org.opcfoundation.ua.builtintypes.NodeId methodId, Object... args)
          Call a method for this object in the server.
 org.opcfoundation.ua.builtintypes.Variant[] UaObjectImpl.call(org.opcfoundation.ua.builtintypes.NodeId methodId, org.opcfoundation.ua.builtintypes.Variant[] variantArgs)
          Call a method for this object in the server.
 Object[] UaObjectImpl.callMethod(org.opcfoundation.ua.builtintypes.NodeId methodId, Object... inputArgs)
          Call a method on the object.
 org.opcfoundation.ua.builtintypes.DataValue UaVariableImpl.readValue()
          Reads the current value of the variable from the server.
 boolean UaVariableImpl.writeValue(Object value)
          Writes the value to the variable in the server.
 

Uses of ServiceException in com.prosysopc.ua.nodes
 

Methods in com.prosysopc.ua.nodes that throw ServiceException
 Object[] UaObject.callMethod(org.opcfoundation.ua.builtintypes.NodeId methodId, Object... inputArgs)
          Call a method on the object.
 

Uses of ServiceException in com.prosysopc.ua.server
 

Methods in com.prosysopc.ua.server with parameters of type ServiceException
protected  void ServiceHandler.handleServiceResultException(org.opcfoundation.ua.builtintypes.ServiceResponse response, ServiceException e)
          Handle the ServiceException by converting it to the ServiceResult in the response.
 

Methods in com.prosysopc.ua.server that throw ServiceException
protected  void Subscription.acknowledge(org.opcfoundation.ua.builtintypes.UnsignedInteger sequenceNumber)
          Acknowledge that a notification was received by the client.
protected  Session SessionManager.activateSession(org.opcfoundation.ua.transport.ServerSecureChannel serverSecureChannel, org.opcfoundation.ua.builtintypes.NodeId authenticationToken, org.opcfoundation.ua.core.UserIdentityToken userToken, org.opcfoundation.ua.core.SignatureData clientSignature, org.opcfoundation.ua.core.SignedSoftwareCertificate[] signedSoftwareCertificates, org.opcfoundation.ua.core.SignatureData userTokenSignature, String[] localeIds)
           
protected  org.opcfoundation.ua.builtintypes.NodeId NodeManagementServiceHandler.addNode(ServiceContext serviceContext, org.opcfoundation.ua.core.AddNodesItem nodeToAdd)
           
protected  void NodeManagementServiceHandler.addNodes(ServiceContext serviceContext, org.opcfoundation.ua.core.AddNodesRequest request, org.opcfoundation.ua.core.AddNodesResponse response)
           
protected  void NodeManagementServiceHandler.addReference(ServiceContext serviceContext, org.opcfoundation.ua.core.AddReferencesItem addReferencesItem)
           
protected  void NodeManagementServiceHandler.addReferences(ServiceContext serviceContext, org.opcfoundation.ua.core.AddReferencesRequest request, org.opcfoundation.ua.core.AddReferencesResponse response)
           
protected  SubscriptionBase SubscriptionManager.addSubscription(ServiceContext serviceContext, org.opcfoundation.ua.core.CreateSubscriptionRequest request)
          Add a new subscription.
protected  Object HistoryManager.beginHistoryRead(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryReadDetails details, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.HistoryReadValueId[] nodesToRead, HistoryContinuationPoint[] continuationPoints, HistoryResult[] results)
          Called to notify that a HistoryRead is beginning.
protected  Object HistoryManager.beginHistoryUpdate(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryUpdateDetails[] details, org.opcfoundation.ua.core.HistoryUpdateResult[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify that a HistoryUpdate is beginning.
protected  Object IoManager.beginRead(ServiceContext serviceContext, org.opcfoundation.ua.core.ReadValueId[] nodesToRead, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.builtintypes.DateTime minTimestamp, org.opcfoundation.ua.builtintypes.DataValue[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify that a Read is beginning.
protected  Object IoManager.beginWrite(ServiceContext serviceContext, org.opcfoundation.ua.core.WriteValue[] nodesToWrite, org.opcfoundation.ua.builtintypes.StatusCode[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify that a Write is beginning.
protected  void NodeManagementServiceHandler.browse(ServiceContext serviceContext, org.opcfoundation.ua.core.BrowseRequest request, org.opcfoundation.ua.core.BrowseResponse response)
           
protected  void NodeManagementServiceHandler.browseNext(ServiceContext serviceContext, org.opcfoundation.ua.core.BrowseNextRequest request, org.opcfoundation.ua.core.BrowseNextResponse response)
           
protected  BrowseContinuationPoint NodeManagementServiceHandler.browseNode(ServiceContext serviceContext, List<org.opcfoundation.ua.core.ReferenceDescription> referenceDescriptions, org.opcfoundation.ua.builtintypes.NodeId nodeId, int maxReferences, org.opcfoundation.ua.core.BrowseDirection browseDirection, org.opcfoundation.ua.builtintypes.NodeId referenceTypeId, Boolean includeSubTypes, EnumSet<org.opcfoundation.ua.core.NodeClass> nodeClassSet, EnumSet<org.opcfoundation.ua.core.BrowseResultMask> resultSet, org.opcfoundation.ua.core.ViewDescription view, int startIndex)
          Get an array of Reference Descriptions for the node.
protected  BrowseContinuationPoint NodeManagerTable.browseNode(ServiceContext serviceContext, List<org.opcfoundation.ua.core.ReferenceDescription> referenceDescriptions, org.opcfoundation.ua.builtintypes.NodeId nodeId, int maxReferences, org.opcfoundation.ua.core.BrowseDirection browseDirection, org.opcfoundation.ua.builtintypes.NodeId referenceTypeId, Boolean includeSubTypes, org.opcfoundation.ua.builtintypes.QualifiedName browseName, EnumSet<org.opcfoundation.ua.core.NodeClass> nodeClassSet, EnumSet<org.opcfoundation.ua.core.BrowseResultMask> resultSet, org.opcfoundation.ua.core.ViewDescription view, int startIndex)
           
protected  BrowseContinuationPoint NodeManager.browseNode(ServiceContext serviceContext, List<org.opcfoundation.ua.core.ReferenceDescription> referenceDescriptions, org.opcfoundation.ua.builtintypes.NodeId nodeId, int maxReferences, org.opcfoundation.ua.core.BrowseDirection browseDirection, org.opcfoundation.ua.builtintypes.NodeId referenceTypeId, Boolean includeSubTypes, org.opcfoundation.ua.builtintypes.QualifiedName browseName, EnumSet<org.opcfoundation.ua.core.NodeClass> nodeClassSet, EnumSet<org.opcfoundation.ua.core.BrowseResultMask> resultSet, org.opcfoundation.ua.core.ViewDescription viewDescription, int startIndex)
          Browse a single node and filter according to the parameters.
protected  void NodeManagementServiceHandler.call(ServiceContext serviceContext, org.opcfoundation.ua.core.CallRequest request, org.opcfoundation.ua.core.CallResponse response)
           
protected  void SessionManager.cancelSession(org.opcfoundation.ua.builtintypes.NodeId authenticationToken)
           
protected  org.opcfoundation.ua.utils.NumericRange SubscriptionManager.checkIndexRangeForMonitoredItem(String indexRange, org.opcfoundation.ua.builtintypes.UnsignedInteger attributeId)
           
protected  void NodeManagerTable.checkNodeManagementEnabled()
           
protected  void ServiceHandler.checkRequestLength(Object[] requestObjects, int maxOperations)
           
protected  void SubscriptionManager.checkSession(ServiceContext serviceContext, Subscription subscription)
           
 void Subscription.close()
          Close the subscription.
protected  void SessionManager.closeSession(org.opcfoundation.ua.builtintypes.NodeId authenticationToken, boolean deleteSubscriptions)
           
protected  MonitoredDataItem SubscriptionManager.createMonitoredDataItem(ServiceContext serviceContext, Subscription subscription, org.opcfoundation.ua.core.MonitoredItemCreateRequest itemToCreate, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.MonitoringFilter filter)
           
protected  MonitoredItem SubscriptionManager.createMonitoredItem(ServiceContext serviceContext, Subscription subscription, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.MonitoredItemCreateRequest itemToCreate)
           
protected  void SubscriptionServiceHandler.createMonitoredItems(ServiceContext serviceContext, org.opcfoundation.ua.core.CreateMonitoredItemsRequest request, org.opcfoundation.ua.core.CreateMonitoredItemsResponse response, List<org.opcfoundation.ua.core.ReadValueId> itemsToRead, List<MonitoredDataItem> items)
           
protected  ServiceContext SessionServiceHandler.createServiceContext(org.opcfoundation.ua.core.RequestHeader requestHeader)
           
protected  ServiceContext ServiceHandler.createServiceContext(org.opcfoundation.ua.core.RequestHeader requestHeader)
          Create the serviceContext object used to identify the session and other parameters of a service call.
protected  Session SessionManager.createSession(org.opcfoundation.ua.transport.ServerSecureChannel serverSecureChannel, byte[] clientCertificate, org.opcfoundation.ua.core.ApplicationDescription clientDescription, org.opcfoundation.ua.builtintypes.UnsignedInteger maxResponseMessageSize, Double requestedSessionTimeout, String sessionName)
           
protected  void SubscriptionServiceHandler.createSubscription(ServiceContext serviceContext, org.opcfoundation.ua.core.CreateSubscriptionRequest request, org.opcfoundation.ua.core.CreateSubscriptionResponse response)
           
protected  void SubscriptionServiceHandler.deleteMonitoredItems(ServiceContext serviceContext, org.opcfoundation.ua.core.DeleteMonitoredItemsRequest request, org.opcfoundation.ua.core.DeleteMonitoredItemsResponse response)
           
protected  void NodeManagementServiceHandler.deleteNodes(ServiceContext serviceContext, org.opcfoundation.ua.core.DeleteNodesRequest request, org.opcfoundation.ua.core.DeleteNodesResponse response)
           
protected  void NodeManagementServiceHandler.deleteReferences(ServiceContext serviceContext, org.opcfoundation.ua.core.DeleteReferencesRequest request, org.opcfoundation.ua.core.DeleteReferencesResponse response)
           
protected  void SubscriptionServiceHandler.deleteSubscriptions(ServiceContext serviceContext, org.opcfoundation.ua.core.DeleteSubscriptionsRequest request, org.opcfoundation.ua.core.DeleteSubscriptionsResponse response)
           
protected  void Subscription.enabledChanged()
          Handles a change in PublishingEnabled
protected  void HistoryManager.endHistoryRead(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.core.HistoryReadDetails details, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.HistoryReadValueId[] nodesToRead, HistoryContinuationPoint[] continuationPoints, HistoryResult[] results)
          Called to notify the end of a HistoryRead.
protected  void HistoryManager.endHistoryUpdate(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.core.HistoryUpdateDetails[] details, org.opcfoundation.ua.core.HistoryUpdateResult[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify the end of a HistoryRead.
protected  void IoManager.endRead(ServiceContext serviceContext, Object object, org.opcfoundation.ua.core.ReadValueId[] nodesToRead, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.builtintypes.DateTime minTimestamp, org.opcfoundation.ua.builtintypes.DataValue[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify the end of a Read.
protected  void IoManager.endWrite(ServiceContext serviceContext, Object object, org.opcfoundation.ua.core.WriteValue[] nodesToWrite, org.opcfoundation.ua.builtintypes.StatusCode[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify the end of a Write.
protected  Subscription SubscriptionManager.getNextSubscriptionToPublish(ServiceContext serviceContext, long timeoutHint)
          Find the next subscription from the publish queue
protected  org.opcfoundation.ua.core.NotificationMessage Subscription.getNotificationMessage(org.opcfoundation.ua.builtintypes.UnsignedInteger retransmitSequenceNumber)
           
 Session SessionManager.getSession(org.opcfoundation.ua.builtintypes.NodeId authenticationToken)
          Get a client session.
 Subscription SubscriptionManager.getSubscription(org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
          Find the subscription by a subscriptionId
protected  UaView NodeManagementServiceHandler.getView(org.opcfoundation.ua.builtintypes.NodeId viewId, org.opcfoundation.ua.builtintypes.UnsignedInteger viewVersion, org.opcfoundation.ua.builtintypes.DateTime timestamp)
          Return the View object corresponding to the viewId.
protected  void AttributeServiceHandler.historyRead(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryReadRequest request, org.opcfoundation.ua.core.HistoryReadResponse response)
          Handle the onHistoryRead service call.
protected  void AttributeServiceHandler.historyUpdate(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryUpdateRequest request, org.opcfoundation.ua.core.HistoryUpdateResponse response)
          Handle the onHistoryUpdate service call.
protected  void Subscription.internalRemoveItem(MonitoredItem item)
          The actual method that will remove the item from the Subscription.
protected  void SubscriptionServiceHandler.modifyMonitoredItems(ServiceContext serviceContext, org.opcfoundation.ua.core.ModifyMonitoredItemsRequest request, org.opcfoundation.ua.core.ModifyMonitoredItemsResponse response)
           
protected  SubscriptionBase SubscriptionManager.modifySubscription(ServiceContext serviceContext, org.opcfoundation.ua.core.ModifySubscriptionRequest request)
           
protected  void SubscriptionServiceHandler.modifySubscription(ServiceContext serviceContext, org.opcfoundation.ua.core.ModifySubscriptionRequest request, org.opcfoundation.ua.core.ModifySubscriptionResponse response)
           
protected  void MonitoredItem.monitoringModeChanged()
           
 void SubscriptionManagerListener.onAddSubscription(ServiceContext serviceContext, Subscription subscription)
          Notification of a new subscription.
 Object HistoryManagerListener.onBeginHistoryRead(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryReadDetails details, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.HistoryReadValueId[] nodesToRead, HistoryContinuationPoint[] continuationPoints, HistoryResult[] results)
          Called to notify that a HistoryRead is beginning.
 Object HistoryManagerAdapter.onBeginHistoryRead(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryReadDetails details, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.HistoryReadValueId[] nodesToRead, HistoryContinuationPoint[] continuationPoints, HistoryResult[] results)
           
 Object HistoryManagerListener.onBeginHistoryUpdate(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryUpdateDetails[] details, org.opcfoundation.ua.core.HistoryUpdateResult[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify that a HistoryUpdate is beginning.
 Object HistoryManagerAdapter.onBeginHistoryUpdate(ServiceContext serviceContext, org.opcfoundation.ua.core.HistoryUpdateDetails[] details, org.opcfoundation.ua.core.HistoryUpdateResult[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
           
 void HistoryManagerListener.onEndHistoryRead(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.core.HistoryReadDetails details, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.HistoryReadValueId[] nodesToRead, HistoryContinuationPoint[] continuationPoints, HistoryResult[] results)
          Called to notify the end of a HistoryRead.
 void HistoryManagerAdapter.onEndHistoryRead(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.core.HistoryReadDetails details, org.opcfoundation.ua.core.TimestampsToReturn timestampsToReturn, org.opcfoundation.ua.core.HistoryReadValueId[] nodesToRead, HistoryContinuationPoint[] continuationPoints, HistoryResult[] results)
           
 void HistoryManagerListener.onEndHistoryUpdate(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.core.HistoryUpdateDetails[] details, org.opcfoundation.ua.core.HistoryUpdateResult[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
          Called to notify the end of a HistoryRead.
 void HistoryManagerAdapter.onEndHistoryUpdate(ServiceContext serviceContext, Object operationContext, org.opcfoundation.ua.core.HistoryUpdateDetails[] details, org.opcfoundation.ua.core.HistoryUpdateResult[] results, org.opcfoundation.ua.builtintypes.DiagnosticInfo[] diagnosticInfos)
           
 void SubscriptionManagerListener.onRemoveSubscription(ServiceContext serviceContext, Subscription subscription)
          Notification of Subscription removal.
protected  void Subscription.paramChanged()
          Parameter change "event".
protected  void SubscriptionManager.publish(ServiceContext serviceContext, org.opcfoundation.ua.core.PublishRequest request, org.opcfoundation.ua.core.PublishResponse response)
           
 void NodeManagerTableListener.queryFirst(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryFirstRequest request, org.opcfoundation.ua.core.QueryFirstResponse response)
           
protected  void NodeManagerTable.queryFirst(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryFirstRequest request, org.opcfoundation.ua.core.QueryFirstResponse response)
           
protected  void NodeManager.queryFirst(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryFirstRequest request, org.opcfoundation.ua.core.QueryFirstResponse response)
           
protected  void NodeManagementServiceHandler.queryFirst(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryFirstRequest request, org.opcfoundation.ua.core.QueryFirstResponse response)
           
 void NodeManagerTableListener.queryNext(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryNextRequest request, org.opcfoundation.ua.core.QueryNextResponse response)
           
protected  void NodeManagerTable.queryNext(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryNextRequest request, org.opcfoundation.ua.core.QueryNextResponse response)
           
protected  void NodeManager.queryNext(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryNextRequest request, org.opcfoundation.ua.core.QueryNextResponse response)
           
protected  void NodeManagementServiceHandler.queryNext(ServiceContext serviceContext, org.opcfoundation.ua.core.QueryNextRequest request, org.opcfoundation.ua.core.QueryNextResponse response)
           
protected  void AttributeServiceHandler.read(ServiceContext serviceContext, org.opcfoundation.ua.core.ReadRequest request, org.opcfoundation.ua.core.ReadResponse response)
          Handle the onRead service call.
protected  void EventManager.refreshSubscription(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
          called internally
 void UaServer.registerAndLoadModel(ServerCodegenModel codegenModel, URI nodeSetXml)
          Specify an information model to use in the application.
protected  void NodeManagementServiceHandler.registerNodes(ServiceContext serviceContext, org.opcfoundation.ua.core.RegisterNodesRequest request, org.opcfoundation.ua.core.RegisterNodesResponse response)
           
 MonitoredItemBase Subscription.removeItem(MonitoredItemBase item)
           
 MonitoredItemBase Subscription.removeItem(org.opcfoundation.ua.builtintypes.UnsignedInteger itemId)
           
protected  void SubscriptionManager.removeSubscription(ServiceContext serviceContext, Subscription subscription, boolean removeFromQueue)
           
protected  void SubscriptionManager.republish(ServiceContext serviceContext, org.opcfoundation.ua.core.RepublishRequest request, org.opcfoundation.ua.core.RepublishResponse response)
           
protected  void MonitoredDataItem.setDataChangeFilter(org.opcfoundation.ua.core.DataChangeFilter filter)
           
protected  void MonitoredEventItem.setEventFilter(org.opcfoundation.ua.core.EventFilter eventFilter)
           
protected  void MonitoredItem.setFilter(org.opcfoundation.ua.core.MonitoringFilter filter)
           
protected  void SubscriptionServiceHandler.setMonitoringMode(ServiceContext serviceContext, org.opcfoundation.ua.core.SetMonitoringModeRequest request, org.opcfoundation.ua.core.SetMonitoringModeResponse response)
           
protected  void SubscriptionManager.setMonitoringMode(ServiceContext serviceContext, Subscription subscription, org.opcfoundation.ua.builtintypes.UnsignedInteger monitoredItemId, org.opcfoundation.ua.core.MonitoringMode mode)
           
protected  void SubscriptionServiceHandler.setPublishingMode(ServiceContext serviceContext, org.opcfoundation.ua.core.SetPublishingModeRequest request, org.opcfoundation.ua.core.SetPublishingModeResponse response)
           
protected  void SubscriptionManager.setPublishingMode(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId, Boolean publishingEnabled)
           
protected  void SubscriptionManager.setTriggering(ServiceContext serviceContext, org.opcfoundation.ua.core.SetTriggeringRequest request, org.opcfoundation.ua.core.SetTriggeringResponse response)
           
protected static org.opcfoundation.ua.builtintypes.ExtensionObject ServiceHandler.toExtensionObject(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.Structure data, org.opcfoundation.ua.builtintypes.QualifiedName dataEncoding, org.opcfoundation.ua.encoding.EncoderContext encoderContext)
           
protected  Subscription SubscriptionManager.transferSubscription(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
           
protected  void SubscriptionServiceHandler.transferSubscriptions(ServiceContext serviceContext, org.opcfoundation.ua.core.TransferSubscriptionsRequest request, org.opcfoundation.ua.core.TransferSubscriptionsResponse response)
           
protected  org.opcfoundation.ua.core.BrowsePathTarget[] NodeManagerTable.translateBrowsePath(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.NodeId startingNode, org.opcfoundation.ua.core.RelativePath relativePath)
           
protected  org.opcfoundation.ua.core.BrowsePathTarget[] NodeManager.translateBrowsePath(ServiceContext serviceContext, org.opcfoundation.ua.builtintypes.NodeId startingNodeId, org.opcfoundation.ua.core.RelativePath relativePath)
           
protected  void NodeManagementServiceHandler.translateBrowsePathsToNodeIds(ServiceContext serviceContext, org.opcfoundation.ua.core.TranslateBrowsePathsToNodeIdsRequest request, org.opcfoundation.ua.core.TranslateBrowsePathsToNodeIdsResponse response)
           
 org.opcfoundation.ua.core.BrowsePathTarget[] NodeManagerTable.translateBrowsePathToNodeIds(org.opcfoundation.ua.builtintypes.NodeId startingNode, org.opcfoundation.ua.core.RelativePath relativePath)
          Request the NodeIds for the nodes that are references from the startingNode using paths.
protected  void NodeManagementServiceHandler.unregisterNodes(ServiceContext serviceContext, org.opcfoundation.ua.core.UnregisterNodesRequest request, org.opcfoundation.ua.core.UnregisterNodesResponse response)
           
protected  ServiceContext ServiceHandler.validateRequest(org.opcfoundation.ua.builtintypes.ServiceRequest request, org.opcfoundation.ua.transport.ServerSecureChannel serverSecureChannel)
           
protected  void AttributeServiceHandler.write(ServiceContext serviceContext, org.opcfoundation.ua.core.WriteRequest request, org.opcfoundation.ua.core.WriteResponse response)
          Handle the onWrite service call.
 

Uses of ServiceException in com.prosysopc.ua.types.di
 

Methods in com.prosysopc.ua.types.di that throw ServiceException
 Integer LockingServicesType.breakLock()
           
 Integer LockingServicesType.exitLock()
           
 FetchResultDataType TransferServicesType.fetchTransferResultData(Integer transferID, Integer sequenceNumber, Integer maxParameterResultsToReturn, Boolean omitGoodResults)
           
 Integer LockingServicesType.initLock(String currentContext)
           
 Integer LockingServicesType.renewLock()
           
 TransferServicesType.TransferFromDeviceMethodOutputs TransferServicesType.transferFromDevice()
           
 TransferServicesType.TransferToDeviceMethodOutputs TransferServicesType.transferToDevice()
           
 

Uses of ServiceException in com.prosysopc.ua.types.di.client
 

Methods in com.prosysopc.ua.types.di.client that throw ServiceException
 Integer LockingServicesTypeImplBase.breakLock()
           
 Integer LockingServicesTypeImplBase.exitLock()
           
 FetchResultDataType TransferServicesTypeImplBase.fetchTransferResultData(Integer transferID, Integer sequenceNumber, Integer maxParameterResultsToReturn, Boolean omitGoodResults)
           
 Integer LockingServicesTypeImplBase.initLock(String currentContext)
           
 Integer LockingServicesTypeImplBase.renewLock()
           
 TransferServicesType.TransferFromDeviceMethodOutputs TransferServicesTypeImplBase.transferFromDevice()
           
 TransferServicesType.TransferToDeviceMethodOutputs TransferServicesTypeImplBase.transferToDevice()
           
 

Uses of ServiceException in com.prosysopc.ua.types.gds
 

Methods in com.prosysopc.ua.types.gds that throw ServiceException
 ApplicationRecordDataType[] DirectoryType.findApplications(String applicationUri)
           
 CertificateDirectoryType.FinishRequestMethodOutputs CertificateDirectoryType.finishRequest(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId requestId)
           
 ApplicationRecordDataType DirectoryType.getApplication(org.opcfoundation.ua.builtintypes.NodeId applicationId)
           
 org.opcfoundation.ua.builtintypes.NodeId[] CertificateDirectoryType.getCertificateGroups(org.opcfoundation.ua.builtintypes.NodeId applicationId)
           
 Boolean CertificateDirectoryType.getCertificateStatus(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId)
           
 org.opcfoundation.ua.builtintypes.NodeId CertificateDirectoryType.getTrustList(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId)
           
 DirectoryType.QueryServersMethodOutputs DirectoryType.queryServers(org.opcfoundation.ua.builtintypes.UnsignedInteger startingRecordId, org.opcfoundation.ua.builtintypes.UnsignedInteger maxRecordsToReturn, String applicationName, String applicationUri, String productUri, String[] serverCapabilities)
           
 org.opcfoundation.ua.builtintypes.NodeId DirectoryType.registerApplication(ApplicationRecordDataType application)
           
 org.opcfoundation.ua.builtintypes.NodeId CertificateDirectoryType.startNewKeyPairRequest(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, String subjectName, String[] domainNames, String privateKeyFormat, String privateKeyPassword)
           
 org.opcfoundation.ua.builtintypes.NodeId CertificateDirectoryType.startSigningRequest(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, org.opcfoundation.ua.builtintypes.ByteString certificateRequest)
           
 void DirectoryType.unregisterApplication(org.opcfoundation.ua.builtintypes.NodeId applicationId)
           
 void DirectoryType.updateApplication(ApplicationRecordDataType application)
           
 

Uses of ServiceException in com.prosysopc.ua.types.gds.client
 

Methods in com.prosysopc.ua.types.gds.client that throw ServiceException
 ApplicationRecordDataType[] DirectoryTypeImplBase.findApplications(String applicationUri)
           
 CertificateDirectoryType.FinishRequestMethodOutputs CertificateDirectoryTypeImplBase.finishRequest(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId requestId)
           
 ApplicationRecordDataType DirectoryTypeImplBase.getApplication(org.opcfoundation.ua.builtintypes.NodeId applicationId)
           
 org.opcfoundation.ua.builtintypes.NodeId[] CertificateDirectoryTypeImplBase.getCertificateGroups(org.opcfoundation.ua.builtintypes.NodeId applicationId)
           
 Boolean CertificateDirectoryTypeImplBase.getCertificateStatus(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId)
           
 org.opcfoundation.ua.builtintypes.NodeId CertificateDirectoryTypeImplBase.getTrustList(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId)
           
 DirectoryType.QueryServersMethodOutputs DirectoryTypeImplBase.queryServers(org.opcfoundation.ua.builtintypes.UnsignedInteger startingRecordId, org.opcfoundation.ua.builtintypes.UnsignedInteger maxRecordsToReturn, String applicationName, String applicationUri, String productUri, String[] serverCapabilities)
           
 org.opcfoundation.ua.builtintypes.NodeId DirectoryTypeImplBase.registerApplication(ApplicationRecordDataType application)
           
 org.opcfoundation.ua.builtintypes.NodeId CertificateDirectoryTypeImplBase.startNewKeyPairRequest(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, String subjectName, String[] domainNames, String privateKeyFormat, String privateKeyPassword)
           
 org.opcfoundation.ua.builtintypes.NodeId CertificateDirectoryTypeImplBase.startSigningRequest(org.opcfoundation.ua.builtintypes.NodeId applicationId, org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, org.opcfoundation.ua.builtintypes.ByteString certificateRequest)
           
 void DirectoryTypeImplBase.unregisterApplication(org.opcfoundation.ua.builtintypes.NodeId applicationId)
           
 void DirectoryTypeImplBase.updateApplication(ApplicationRecordDataType application)
           
 

Uses of ServiceException in com.prosysopc.ua.types.opcua
 

Methods in com.prosysopc.ua.types.opcua that throw ServiceException
 void AcknowledgeableConditionType.acknowledge(org.opcfoundation.ua.builtintypes.ByteString eventId, org.opcfoundation.ua.builtintypes.LocalizedText comment)
           
 void TrustListType.addCertificate(org.opcfoundation.ua.builtintypes.ByteString certificate, Boolean isTrustedCertificate)
           
 void ConditionType.addComment(org.opcfoundation.ua.builtintypes.ByteString eventId, org.opcfoundation.ua.builtintypes.LocalizedText comment)
           
 void ServerConfigurationType.applyChanges()
           
 void FileType.close(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle)
           
 Boolean TrustListType.closeAndUpdate(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle)
           
 void AcknowledgeableConditionType.confirm(org.opcfoundation.ua.builtintypes.ByteString eventId, org.opcfoundation.ua.builtintypes.LocalizedText comment)
           
 org.opcfoundation.ua.builtintypes.NodeId FileDirectoryType.createDirectory(String directoryName)
           
 FileDirectoryType.CreateFileMethodOutputs FileDirectoryType.createFile(String fileName, Boolean requestFileOpen)
           
 org.opcfoundation.ua.builtintypes.ByteString ServerConfigurationType.createSigningRequest(org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, String subjectName, Boolean regeneratePrivateKey, org.opcfoundation.ua.builtintypes.ByteString nonce)
           
 void FileDirectoryType.delete(org.opcfoundation.ua.builtintypes.NodeId objectToDelete)
           
 void ConditionType.disable()
           
 void ConditionType.enable()
           
 void AddressSpaceFileType.exportNamespace()
           
 ServerType.GetMonitoredItemsMethodOutputs ServerType.getMonitoredItems(org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
           
 org.opcfoundation.ua.builtintypes.UnsignedLong FileType.getPosition(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle)
           
 org.opcfoundation.ua.builtintypes.ByteString[] ServerConfigurationType.getRejectedList()
           
 void ProgramStateMachineType.halt()
           
 org.opcfoundation.ua.builtintypes.NodeId FileDirectoryType.moveOrCopy(org.opcfoundation.ua.builtintypes.NodeId objectToMoveOrCopy, org.opcfoundation.ua.builtintypes.NodeId targetDirectory, Boolean createCopy, String newName)
           
 void ShelvedStateMachineType.oneShotShelve()
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger FileType.open(org.opcfoundation.ua.builtintypes.UnsignedByte mode)
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger TrustListType.openWithMasks(org.opcfoundation.ua.builtintypes.UnsignedInteger masks)
           
 org.opcfoundation.ua.builtintypes.ByteString FileType.read(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle, Integer length)
           
 void TrustListType.removeCertificate(String thumbprint, Boolean isTrustedCertificate)
           
 void ServerType.requestServerStateChange(org.opcfoundation.ua.core.ServerState state, org.opcfoundation.ua.builtintypes.DateTime estimatedReturnTime, org.opcfoundation.ua.builtintypes.UnsignedInteger secondsTillShutdown, org.opcfoundation.ua.builtintypes.LocalizedText reason, Boolean restart)
           
 void ServerType.resendData(org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
           
 void ProgramStateMachineType.reset()
           
 void DialogConditionType.respond(Integer selectedResponse)
           
 void ProgramStateMachineType.resume()
           
 void FileType.setPosition(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle, org.opcfoundation.ua.builtintypes.UnsignedLong position)
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger ServerType.setSubscriptionDurable(org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId, org.opcfoundation.ua.builtintypes.UnsignedInteger lifetimeInHours)
           
 void ProgramStateMachineType.start()
           
 void ProgramStateMachineType.suspend()
           
 void ShelvedStateMachineType.timedShelve(Double shelvingTime)
           
 void ShelvedStateMachineType.unshelve()
           
 Boolean ServerConfigurationType.updateCertificate(org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, org.opcfoundation.ua.builtintypes.ByteString certificate, org.opcfoundation.ua.builtintypes.ByteString[] issuerCertificates, String privateKeyFormat, org.opcfoundation.ua.builtintypes.ByteString privateKey)
           
 void FileType.write(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle, org.opcfoundation.ua.builtintypes.ByteString data)
           
 

Uses of ServiceException in com.prosysopc.ua.types.opcua.client
 

Methods in com.prosysopc.ua.types.opcua.client that throw ServiceException
 void AcknowledgeableConditionTypeImplBase.acknowledge(org.opcfoundation.ua.builtintypes.ByteString eventId, org.opcfoundation.ua.builtintypes.LocalizedText comment)
           
 void TrustListTypeImplBase.addCertificate(org.opcfoundation.ua.builtintypes.ByteString certificate, Boolean isTrustedCertificate)
           
 void ConditionTypeImplBase.addComment(org.opcfoundation.ua.builtintypes.ByteString eventId, org.opcfoundation.ua.builtintypes.LocalizedText comment)
           
 void ServerConfigurationTypeImplBase.applyChanges()
           
 Object[] BaseObjectTypeImpl.callMethod(org.opcfoundation.ua.builtintypes.QualifiedName browseName, Object... inArgs)
           
 void FileTypeImplBase.close(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle)
           
 Boolean TrustListTypeImplBase.closeAndUpdate(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle)
           
 void AcknowledgeableConditionTypeImplBase.confirm(org.opcfoundation.ua.builtintypes.ByteString eventId, org.opcfoundation.ua.builtintypes.LocalizedText comment)
           
 org.opcfoundation.ua.builtintypes.NodeId FileDirectoryTypeImplBase.createDirectory(String directoryName)
           
 FileDirectoryType.CreateFileMethodOutputs FileDirectoryTypeImplBase.createFile(String fileName, Boolean requestFileOpen)
           
 org.opcfoundation.ua.builtintypes.ByteString ServerConfigurationTypeImplBase.createSigningRequest(org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, String subjectName, Boolean regeneratePrivateKey, org.opcfoundation.ua.builtintypes.ByteString nonce)
           
 void FileDirectoryTypeImplBase.delete(org.opcfoundation.ua.builtintypes.NodeId objectToDelete)
           
 void ConditionTypeImplBase.disable()
           
 void ConditionTypeImplBase.enable()
           
 void AddressSpaceFileTypeImplBase.exportNamespace()
           
 ServerType.GetMonitoredItemsMethodOutputs ServerTypeImplBase.getMonitoredItems(org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
           
 org.opcfoundation.ua.builtintypes.UnsignedLong FileTypeImplBase.getPosition(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle)
           
 org.opcfoundation.ua.builtintypes.ByteString[] ServerConfigurationTypeImplBase.getRejectedList()
           
 void ProgramStateMachineTypeImplBase.halt()
           
 org.opcfoundation.ua.builtintypes.NodeId FileDirectoryTypeImplBase.moveOrCopy(org.opcfoundation.ua.builtintypes.NodeId objectToMoveOrCopy, org.opcfoundation.ua.builtintypes.NodeId targetDirectory, Boolean createCopy, String newName)
           
 void ShelvedStateMachineTypeImplBase.oneShotShelve()
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger FileTypeImpl.open(EnumSet<FileTypeOpenMode> mode)
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger FileTypeImpl.open(FileTypeOpenMode... mode)
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger FileTypeImplBase.open(org.opcfoundation.ua.builtintypes.UnsignedByte mode)
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger TrustListTypeImplBase.openWithMasks(org.opcfoundation.ua.builtintypes.UnsignedInteger masks)
           
 org.opcfoundation.ua.builtintypes.ByteString FileTypeImplBase.read(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle, Integer length)
           
 void TrustListTypeImplBase.removeCertificate(String thumbprint, Boolean isTrustedCertificate)
           
 void ServerTypeImplBase.requestServerStateChange(org.opcfoundation.ua.core.ServerState state, org.opcfoundation.ua.builtintypes.DateTime estimatedReturnTime, org.opcfoundation.ua.builtintypes.UnsignedInteger secondsTillShutdown, org.opcfoundation.ua.builtintypes.LocalizedText reason, Boolean restart)
           
 void ServerTypeImplBase.resendData(org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId)
           
 void ProgramStateMachineTypeImplBase.reset()
           
 void DialogConditionTypeImplBase.respond(Integer selectedResponse)
           
 void ProgramStateMachineTypeImplBase.resume()
           
 void FileTypeImplBase.setPosition(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle, org.opcfoundation.ua.builtintypes.UnsignedLong position)
           
 org.opcfoundation.ua.builtintypes.UnsignedInteger ServerTypeImplBase.setSubscriptionDurable(org.opcfoundation.ua.builtintypes.UnsignedInteger subscriptionId, org.opcfoundation.ua.builtintypes.UnsignedInteger lifetimeInHours)
           
 void ProgramStateMachineTypeImplBase.start()
           
 void ProgramStateMachineTypeImplBase.suspend()
           
 void ShelvedStateMachineTypeImplBase.timedShelve(Double shelvingTime)
           
 void ShelvedStateMachineTypeImplBase.unshelve()
           
 Boolean ServerConfigurationTypeImplBase.updateCertificate(org.opcfoundation.ua.builtintypes.NodeId certificateGroupId, org.opcfoundation.ua.builtintypes.NodeId certificateTypeId, org.opcfoundation.ua.builtintypes.ByteString certificate, org.opcfoundation.ua.builtintypes.ByteString[] issuerCertificates, String privateKeyFormat, org.opcfoundation.ua.builtintypes.ByteString privateKey)
           
 void FileTypeImplBase.write(org.opcfoundation.ua.builtintypes.UnsignedInteger fileHandle, org.opcfoundation.ua.builtintypes.ByteString data)
           
 



Copyright © 2018. All rights reserved.