App Engine ignoring XMPP NORMAL type messages -
the xmpp java api overview states both normal
, chat
message types supported , received via same path, i.e. /_ah/xmpp/message/chat/
.
it appears normal
messages beingness ignored either xmpp server or app engine. using smack test client, interchange statements:
message msg = new message(to, message.type.chat);
by
message msg = new message(to, message.type.normal);
the sec message never beingness received @ app engine application.
anyone else has experience issue?
it happening because app engine receiving xmpp message of unsupported type, if case wouldn't handle request. please check message type you trying send. go through link of document improve understanding of xmpp [1].
[1] xmpp: https://cloud.google.com/appengine/docs/java/xmpp/#java_handling_incoming_calls
google-app-engine xmpp
No comments:
Post a Comment