Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
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.?
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: