View Issue Details

IDProjectCategoryView StatusLast Update
001026510000-004: ServicesSpecpublic2025-04-03 14:34
ReporterKevin Herron (Inductive Automation) Assigned To 
PrioritynormalSeverityminorReproducibilityN/A
Status newResolutionopen 
Product Version1.05.04 
Summary0010265: Subscription sequence number behavior clarification
Description

It seems something is wrong with the way the subscription model in 5.14.1 describes when to increment a sequence number.

Given the following exchange with UaCPP Demo server:

(initial notification)
2025-04-02 13:46:18:083 Received PublishResponse, subscriptionId=3999684478, sequenceNumber=1, expectedSequenceNumber=1
2025-04-02 13:46:18:084 subscription onDataReceived: nodeId=NodeId{ns=3, id=Demo.Static.Scalar.Int16}, value=Variant{value=0}

(keep-alive notifications)
2025-04-02 13:46:28:175 Received PublishResponse, subscriptionId=3999684478, sequenceNumber=2, expectedSequenceNumber=2
2025-04-02 13:46:38:239 Received PublishResponse, subscriptionId=3999684478, sequenceNumber=2, expectedSequenceNumber=2
2025-04-02 13:46:48:334 Received PublishResponse, subscriptionId=3999684478, sequenceNumber=2, expectedSequenceNumber=2

(write a new value, expect a change)
2025-04-02 13:46:52:355 Received PublishResponse, subscriptionId=3999684478, sequenceNumber=2, expectedSequenceNumber=2
2025-04-02 13:46:52:356 subscription onDataReceived: nodeId=NodeId{ns=3, id=Demo.Static.Scalar.Int16}, value=Variant{value=1}

(keep-alive notifications)
2025-04-02 13:47:02:426 Received PublishResponse, subscriptionId=3999684478, sequenceNumber=3, expectedSequenceNumber=3
2025-04-02 13:47:12:484 Received PublishResponse, subscriptionId=3999684478, sequenceNumber=3, expectedSequenceNumber=3

according to the spec, shouldn't the sequenceNumber of the PublishResponse with the value change have been incremented?

Once the value changed, the Subscription would have been in State #14 in the Subscription State Table. The actions:

ResetLifetimeCounter()
StartPublishingTimer()
DequeuePublishReq()
ReturnNotifications()
MessageSent = TRUE

ReturnNotifications() is defined as:

CreateNotificationMsg()
ReturnResponse()
If (MoreNotifications == TRUE) && (PublishingReqQueued == TRUE)
{
    DequeuePublishReq()
    Loop through this function again
}

The first line of CreateNotificationMsg() calls for the sequence number to be incremented:

Increment the SeqNum and create a NotificationMessage from the MonitoredItems assigned to the Subscription.
Save the newly-created NotificationMessage in the retransmission queue.
If all available Notifications can be sent in the Publish response, the MoreNotifications state Variable is set to FALSE. Otherwise, it is set to TRUE.

So why doesn't it increment?

TagsNo tags attached.
Attached Files
image.png (34,954 bytes)   
image.png (34,954 bytes)   
image-2.png (34,954 bytes)   
image-2.png (34,954 bytes)   
image-3.png (10,024 bytes)   
image-3.png (10,024 bytes)   
image-4.png (12,858 bytes)   
image-4.png (12,858 bytes)   
image-5.png (18,154 bytes)   
image-5.png (18,154 bytes)   
Commit Version
Fix Due Date

Activities

Kevin Herron (Inductive Automation)

2025-04-02 20:55

reporter   ~0022588

I have no idea how those images got attached. It seems passages of the spec I was highlighting at some point got turned into images and included?

Kevin Herron (Inductive Automation)

2025-04-02 21:02

reporter   ~0022589

The only explanation I can see is that what the spec should really say is something equivalent to:

MsgSeq = SeqNum.GetAndIncrement();
// send NotificationMessage using MsgSeq

Peter Wehrfritz

2025-04-03 14:34

reporter   ~0022590

The value 2 is correct. A keep-alive message does not increment the sequence number.

The spec clearly states:

Each keep-alive Message is a response to a Publish request in which the notificationMessage parameter does not contain any Notifications and that contains the sequence number of the next NotificationMessage that is to be sent.

Issue History

Date Modified Username Field Change
2025-04-02 20:52 Kevin Herron (Inductive Automation) New Issue
2025-04-02 20:52 Kevin Herron (Inductive Automation) File Added: image.png
2025-04-02 20:52 Kevin Herron (Inductive Automation) File Added: image-2.png
2025-04-02 20:52 Kevin Herron (Inductive Automation) File Added: image-3.png
2025-04-02 20:52 Kevin Herron (Inductive Automation) File Added: image-4.png
2025-04-02 20:52 Kevin Herron (Inductive Automation) File Added: image-5.png
2025-04-02 20:55 Kevin Herron (Inductive Automation) Note Added: 0022588
2025-04-02 21:02 Kevin Herron (Inductive Automation) Note Added: 0022589
2025-04-03 14:34 Peter Wehrfritz Note Added: 0022590