-1

サーバーからメッセージを受信するにはどうすればよいですか? サーバーにメッセージを送信できるが、サーバーからメッセージを受信できない部分がありますか? どのように、何をすべきか?転送プロトコルとして xmpp を使用しています

package com.example.xmpp.asmack;

import org.jivesoftware.smack.Chat;
import org.jivesoftware.smack.ConnectionConfiguration;
import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.XMPPException;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.EditText;
import android.widget.TextView;

    public class XMPPAsATransportProtocol extends Activity implements OnClickListener {
        XMPPConnection conn;
        TextView output;
        final String HOST = "vps01.fit3140hack.org";
        final int PORT = 5222;

        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            Log.d("xmppasatransportprotocol", "got to start");
            setContentView(R.layout.main);
            View createbutton = findViewById(R.id.button1);
            View messagebutton = findViewById(R.id.button2);
            View closebutton = findViewById(R.id.button3);
            output = (TextView) findViewById(R.id.textView2);
            Log.d("xmppasatransportprotocol", "got buttons");

            createbutton.setOnClickListener(this);
            messagebutton.setOnClickListener(this);
            closebutton.setOnClickListener(this);
        }

        private void sendMessage() throws XMPPException {
            Log.d("xmppasatransportprotocol", "sendmessage");
            Chat chat = conn.getChatManager().createChat("22686274test2@" + HOST, null);
            EditText message = (EditText)findViewById(R.id.editText1);
            chat.sendMessage(message.getText().toString());
        }
        private void openConnection() throws XMPPException {
            Log.i("xmppasatransportprotocol", "openconnection");
            ConnectionConfiguration config = new ConnectionConfiguration(HOST, PORT);
            config.setSASLAuthenticationEnabled(true);
            conn = new XMPPConnection(config);

            conn.connect();
            conn.login("22686274test1", "dummy");
        }
        private void closeConnection() {
            Log.i("xmppasatransportprotocol", "closeconnection");

            conn.disconnect();
        }

        public void onClick(View v) {
            try {
                switch(v.getId()) {
                    case R.id.button1:
                        openConnection();
                        Log.i("xmppasatransportprotocol", "Connected to " + HOST + ":" + PORT);
                        output.setText("Connected to " + HOST + ":" + PORT);
                        break;
                    case R.id.button2:
                        sendMessage();
                        Log.i("xmppasatransportprotocol", "message sent");
                        EditText message = (EditText)findViewById(R.id.editText1);
                        output.setText("Message sent:\n" + message.getText().toString());
                        break;
                    case R.id.button3:
                        closeConnection();
                        output.setText("Disconnected");
                        break;
                    default:    
                        throw new Exception("screwed up exception");
                }
            } catch (Exception e) {
                Log.d("xmppasatransportprotocol", "exception caught:" + e.getMessage());
                output.setText("Error: " + e.getMessage());
            }
        }
    }
4

1 に答える 1

0
  1. サーバーで使用するアカウントがあることを確認してください。

  2. エラーをリッスンする必要があります。conn.addConnectionCreationListener などの各接続パブリッシャーにリスナーをアタッチします。このためには、MessageListener、ConnectionCreationListener、org.jivesoftware.smack.ConnectionListener、PacketListener などのインターフェースを実装する必要があります。これらのインターフェイスを実装する場合、オーバーライド connectionClosedOnError(Exception e) によって何が問題なのかがわかります。オーバーライドされたメソッド processPacket(Packet packet) で、次のようなエラーを確認する必要があります。

    if (packet.getError() != null) 
    {
        Exception e = new XMPPException(packet.getError())
        System.out.println(e);
    }
    
于 2012-10-09T14:09:36.960 に答える