Please note: These WebEx forums have replaced the earlier site forums. All the previous threads and posts have been replicated here, and if you subscribed to the previous forums, please re-subscribe. Thank you.
« Back to Scheduling Meetings

Setting Meeting Type

Combination View Flat View Tree View
Threads [ Previous | Next ]
 
 
Hi All,

I want to create a user ,with the PrivilegeType and MeetingTypes.
below is my code.
UserService service = factory.createUserService();
CreateUser user = new CreateUser();
user.setWebExId("ZZ9991");
user.setFirstName("lance");
user.setLastName("klusner");
user.setPassword("javaLove123#");
user.setActive(ActiveType.ACTIVATED);
user.setEmail("lance.klusner@test.com");
PrivilegeType objPrevlige = new PrivilegeType();
objPrevlige.setHost(true);
user.setPrivilege(objPrevlige);
com.webex.schemas._2002._06.service.user.UserType.MeetingTypes objMeetingType = new com.webex.schemas._2002._06.service.user.UserType.MeetingTypes();
user.setMeetingTypes(objMeetingType);
service.createUser(user);
Here iam able to create a user in WebEX with empty MeetingTypes.My issue is that how to set the MeetingTypes value using the java code?
when i try to retireive other user from webEX I get the MeetingTypes as List of some long values.

So my question is how to set the MeetingTypes using the javacode.?

Create a Cisco account today and gain access across all Cisco Collaboration Developer sites.

 

Follow the WebEx Developer program on Twitter for the latest industry and WebEx Meetings related information.