PJSIP Resource List Subscriptions

Hello!

I’m trying to establish a connection and presence state eyeBeam softphone and asterisk.
asterisk 13.1

pjsip:

[my_list]
type=resource_list
list_item=231@softphones
list_item=226@softphones
event=presence
full_state=yes

[226]
  type=aor
  max_contacts=3

[231]
  type=aor
  max_contacts=3

[226]
  type=endpoint
  disallow=all
  allow=alaw
  transport=udp-transport
  auth=auth226
  aors=226
  allow_subscribe=yes
  context=softphones
  mwi_from_user=226

[231]
  disallow=all
  allow=alaw
  transport=udp-transport
  type=endpoint
  auth=auth231
  aors=231
  allow_subscribe=yes
  mwi_from_user=231
  context=softphones

[auth226]
type=auth
auth_type=userpass
password=234323
username=226

[auth231]
type=auth
auth_type=userpass
password=234324234
username=231

extensions.conf:

[softphones]
  exten => 226,hint,PJSIP/226
  exten => 231,hint,PJSIP/231

Modules loaded:
res_pjsip.so: Core of PJSIP code in Asterisk.
res_pjsip_pubsub.so: The code that implements SUBSCRIBE/NOTIFY logic, on which individual event handlers are built.
res_pjsip_exten_state.so: Handles the “presence” and “dialog” events.
res_pjsip_pidf_body_generator.so: This module generates application/pidf+xml message bodies. Required for most subscriptions to the “presence” event.
res_pjsip_xpidf_body_generator.so: This module generates application/xpidf+xml message bodies. Required for some subscriptions to the “presence” event.
res_pjsip_dialog_info_body_generator.so: Required for subscriptions to the “dialog” event. This module generates application/dialog-info message bodies.
res_pjsip_pidf_eyebeam_body_supplement.so

Hints:

Change status log:

All I did the right thing?

Please help to realization this functionality.

(Placing on the asterisk 11 is also considered)

Asterisk does not support handling PUBLISH requests of the presence type. The information provided to subscribers is calculated and determined by Asterisk itself. In order to use resource lists the client must subscribe to it.