Open GoogleCodeExporter opened 8 years ago
I want to implement chat based on MSRP.After SIP session(INVITE/200 OK) is
created,I want to send many MSRP message to chat.When I want to end the chat,I
may call a method to send SIP BYE message.
Alice send INVITE to Bob.
Bob accept this INVITE.
Alice receive Bob's 200 OK.
-----------------------------------
Alice:Hello Bob!
Bob:Hi~
Alice:How are you?
Bob:Fine.
-----------------------------------
Alice send BYE message to Bob.
Original comment by Splash.P...@gmail.com
on 31 Dec 2010 at 6:30
I want to have a method to control sending BYE message.Now when I call callMsrp
and sendMessage method,the BYE message will be sent automatically.I want to the
end of chat(BYE message) is controllable.
Original comment by Splash.P...@gmail.com
on 31 Dec 2010 at 6:45
// establish an MSRP session
ActionConfig sessionConfig = new ActionConfig();
MyMsrpSession msrpSession = MyMsrpSession.createOutgoingSession(sipStack, MediaType.Chat);
sessionConfig.addHeader("Subject","Hello");
msrpSession.session.callMsrp("+8521341041108", sessionConfig);
sessionConfig.delete();
// Once the session is established
if(msrpSession.isConnected())
{
byte[] content = "Hello Bob!".getBytes();
final ByteBuffer payload = ByteBuffer.allocateDirect(content.length);
payload.put(content);
ActionConfig messageConfig = new ActionConfig();
messageConfig.setMediaString(twrap_media_type_t.twrap_media_msrp, "content-type", "text/plain;charset=utf-8");
msrpSession.session.sendMessage(payload, (long)payload.capacity(), messageConfig);
}
Original comment by Splash.P...@gmail.com
on 31 Dec 2010 at 6:46
In addition,could you introduce the relationship between function calls in MSRP
process.(INVITE->MSRP message->BYE)
Original comment by Splash.P...@gmail.com
on 2 Jan 2011 at 5:50
[deleted comment]
The BYE message will never be sent unless you call "msrpSession.hangup()" or
the object get destroyed by the garbage collector and finalize() is called.
1. msrpSession.session.getId() will give you the id of the session.
2. "msrpSession.session.callMsrp()" will send the INVITE message. The response
to the INVITE will be sent to "SipService::OnInviteEvent(InviteEvent e)"
callback. Call "e.getSession().getId()" to check if it's your session or not.
3. The session states (dialog) changes will be sent to
"SipService::OnDialogEvent(DialogEvent e)". Call "e.getBaseSession().getId()"
to check if it's your session or not. To get the session state, call
"e.getCode()". If the value of the code is equal to
"tsip_event_code_dialog_connected" this means that your session is connected
and you are ready to send messages.
4. To send a MSRP message you can use the above code.
Original comment by boss...@yahoo.fr
on 4 Jan 2011 at 4:18
msrpSession.session.callMsrp(); ---> INVITE
msrpSession.accept(); ---> 200 OK accept this INVITE
msrpSession.session.sendMessage(); ---> MSRP message
MyMsrpSession::OnEvent() response the MSRP message?
Original comment by twbc.cla...@gmail.com
on 4 Jan 2011 at 5:44
MyMsrpSession::OnEvent(): called when you receive new msrp requests (chunks)
(SEND, AUTH, ...) or response.
Original comment by boss...@yahoo.fr
on 4 Jan 2011 at 6:00
In IMSDroid,after INVITE is accepted,which method(function) is called to send
file data?
Original comment by twbc.cla...@gmail.com
on 4 Jan 2011 at 9:04
Please help
Is the code of chat messaging work in your project.
It's only call and doesn't not send message
Please help it's very important for me.
Original comment by Arian.Sa...@gmail.com
on 13 Feb 2011 at 7:45
We have added support for MSRP chat in IMSDroid 2.x.
The source code is under branches/2.0.
Original comment by boss...@yahoo.fr
on 21 Apr 2011 at 3:42
Dear all,
I am working with Imsdroid.
I fogot same problem with issue 281
(https://code.google.com/p/imsdroid/issues/detail?id=281), after receive 200
OK, sender not send msrp message. You fixed it? I using Imsdroid v2.0 last and
doubango 2.0 last.
Please help me.
Original comment by mr.kun...@gmail.com
on 5 Sep 2014 at 9:54
Original issue reported on code.google.com by
Splash.P...@gmail.com
on 31 Dec 2010 at 6:09