Smackを使用してAndroidクライアントからGAEサーバーにXMPPメッセージを送信したい。私はGmailの設定でこの投稿を読み、それがどのように行われるべきかについての考えを得ました。しかし、GoogleAppEngineアカウントのhost
とを設定する方法はありません。serviceName
String host = "talk.google.com";
int port = 5222;
String serviceName gmail.com;
ConnectionConfiguration connConfig = new ConnectionConfiguration(host ,port , serviceName);
XMPPConnection connection = new XMPPConnection(connConfig);
connection.connect();
Message msg = new Message(to, Message.Type.chat);
msg.setBody(text);
connection.sendPacket(msg);