HI !
I have just added two web services to my vs.2008 solution:
RoomService;
UserService;
I do this:
Dim oUserService As New WebReference.UserService
Dim oResponse As WebReference.getSessionResponse
oResponse = oUserService.getSession()
Dim returnVal As Long
Dim returnSpecified As Boolean
Dim SessionID As String = oResponse.return.session_id
oUserService.loginUser(SessionID, "admin", "pass", returnVal,
returnSpecified)
Dim oError As WebReference.ErrorResult
If returnVal < 0 Then
oError = oUserService.getErrorByCode(SessionID, returnVal,
True, 4, True)
End If
Dim oRoomService As New WS_Rooms.RoomService
Dim oRoomsList As New WS_Rooms.RoomsList
oRoomsList= oRoomService.getRoomsPublic(SessionID, 1, True)
i have no rooms in output....
oRoomsList.roomList.first = nothing
If i call: oService.getRoomTypes(SessionID) i have an XML output and
not a list(of roomtypes) as in
http://code.google.com/p/openmeetings/wiki/SoapMethods#getRoomTypes
Another problem on room creation (no ID of created room, no
organizationID required to create room,...).. i have an exception
"SoapException: For input string: "true"" i have put boolean on
boolean input parameters.. string on string parameters, long in long
parameters... but the room will be not created.
I have visual studio 2008, WS reference created by authomatic tool of
VS and also by wsdl.exe command in VS command prompt.
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings User" 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-user?hl=en.