Editing Room Settings from the Server
hi guys-
i'm trying figure out how change room settings server, rather client side owner privileges. use case pretty simple: user pre-schedules room expiry period/timeout, , once session begins room cuts out automatically when time (plus small graceperiod) have expired.
at moment i'm doing via client enforcement- client calls out own service current server timestamp , expiry timestamp, , sets second timer sync data every 5 minutes client can't futz settings changing system clock. optimally, however, i'd strictly enforced lccs room managing room timeout when room created.
is there way accomplish this? documentation's little sparse on how change room settings server libs.
michael krotscheck
you should able using publishitem method , "publishing" timeout value roommanager accessettings node:
i don't know language work in ruby:
#
# instance of account manager
#
am = lccs::accountmanager.new("your-account-url")
am.login(login, password)
#
# create new room
#
am.createroom("newroom")
#
# change room timeout
#
item = {
'body' => roomtimeoutvalue
}
}
am.publishitem("newroom", "roommanager", "roomaccess", item)
the room timeout value in seconds
More discussions in LiveCycle Collaboration Services
adobe
Comments
Post a Comment