Hello,If your backend is in python (GAE) in my case i just put the adobe user/pass/url for account manager in local_settings.py.Using a CVS solution settings.py does not contain these private info, local_settings is only present on the prod server.Greg
Hello AFCS team,A while ago i was trying to cache the account manager but was getting some errors on .createRoom or .getsession after a while, which told me that the accountmanager is valid for a certain amount of time only.How long should i cache it ? am = afcs.accountmanager(AFCS_ACCOUNT_U...
A last question about Whiteboard:To handle Shape creation the WBmodel uses:NodeConfiguration.STORAGE_SCHEME_MANUALLetting the clients set the shape ID.Race condition which is actually handled well by the whiteboard is when user A creates a Shape with id #4 and B also creates a shape with the same id...
Wow that was a nice explanation !Ok i understant the root of our problems now, we only use one shape definition for creation and for properties which includes colors and position.Since we do not listen for our own published message we get out of sync on creation abd on updates. But now i have a theo...
My plan was wrong.If after 300ms A publishes 'aaa' but then A types more and later receives the message that he sent to AFCS there are two choices.If he does not discard it, it will erase what he just added like "aaabb" and replace it with "aaa". Or maybe thats is where i should do a merge When it c...
So if i understand well when it is from keyboard lets user the following scenariaUser A and B manipulates Text Shape T with content "zzz"User A adds 'a' and user B adds 'b' at the same time (i.e before B receives sync from A and A the sync from B)Then A is going to see zzzb and B zzza.However if B o...
Hi Hironmay,We publish the shape after our UI update, then wait for the publish back from AFCS, and then reupdate the UI on our side.What do you mean by " syncing from the model" a message received from AFCS ?Thanks
Hi all,We had a problem with our own board and tried on AFCS youtube whiteboard sample who also seem to have it.The recipe:Get two users A and B on the boardDraw a square with AUser A resize the height of the square but to not do the 'mouse up action' which actualy publish to AFCS.User B resize the ...