Question
Adobe Connect API: event-register must be executed twice to successfully enter the participant
I'm submitting participants through the API using the event-register method, however, I must post the same information twice in order to be able to view the participant in the Participant tab of the event information.
In first HTTP post, a success XML is being responded, but when I check the participant list in adobe connect web site, the participant wasn't added:
<?xml version="1.0" encoding="utf-8"?>
<results>
<status code="ok"/>
</results>
In the second HTTP post, a success XML plus the user information is being responded and in this iteration when I check the participant list the user is vissible.
<?xml version="1.0" encoding="utf-8"?>
<results>
<status code="ok"/>
<principal account-id="##" principal-id="####" type="guest" has-children="false" is-primary="false" is-hidden="false">
<name>Name</name>
<login>Email</login>
</principal>
</results>
Is this the expected behavior?
Best Regards
