Assume i have an IN-AE, IN-CSE & MN-CSE. The MN-CSE has a container resource that is announced in the IN-CSE. The IN-AE, via the link in the announced resource, creates a subscription on the container in the MN-CSE, and the notificationURI of that subscription is the POA of the IN-AE.
What is the mechanism by which the MN-CSE is able to route notifications back through the IN-CSE to the IN-AE?
For example, let's say i have a container in my MN-CSE at /mn-cse/ae1/container
and my IN-AE POST the following subscription to the IN-CSE:
POST http://in-cse-host/mn-cse/ae1/container?rcn=2 HTTP/1.1
X-M2M-Origin: ae
X-M2M-RI: ri1
{
"sub": {
"enc": {
"net": [
3
]
},
"nu": [
"http://in-ae-host/notify"
],
"nct": 1
}
}
NOTE: the nu
there is the IN-AE's POA, and it's how the IN-CSE can talk to the IN-AE.
However, let's say the MN-CSE doesn't talk HTTP, or can't route to in-ae-host
. How does the MN-CSE know how to route notifications with that nu
back to the correct AE?