Comment #7 on issue 1590 by [email protected]: SOAP API SecureHash does
not work.
http://code.google.com/p/openmeetings/issues/detail?id=1590
I am using I am using openmeetings_1_9_0_r4692.
Did you use Csharp calls? Is is still not working for me. Following is the
csharp code for your reference:
protected void Button2_Click(object sender, EventArgs e)
{
UserService omService = new UserService();
RoomClient.OMUserService.Sessiondata sData =
omService.getSession();
TextBox1.Text = sData.session_id;
long retL;
bool retB;
omService.loginUser(sData.session_id, "rajesh", "rajesh", out
retL, out retB);
TextBox2.Text = retL.ToString();
RoomService roomService = new RoomService();
long room_id;
string hash="";
string urlHash = "";
room_id = 2;
urlHash =
omService.setUserObjectAndGenerateRoomHashByURL(sData.session_id, "rajesh", "Rajesh", "Thakur", "xx", "[email protected]",
99, true, "APP", room_id, true, 0, true, 1, true);
Response.Redirect("http://localhost:5080/openmeetings/?secureHash=" +
urlHash + "&room_id=" + room_id + "&language=4");
}
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.