cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
132
Views
0
Helpful
0
Comments
cdnadmin
Community Member
This document was generated from CDN thread

Created by: patil bipin on 11-02-2012 12:27:46 AM
 
 
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("[email protected]");
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.?
Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Quick Links