Quantcast
Channel: Ignite Realtime: Message List
Viewing all articles
Browse latest Browse all 11413

XMPP ANDROID HELP!

$
0
0

I am trying to connect to my openfire server which is currently on the internet. I keep getting a 401 error from the server when I log in / send a presence / or send a message. Below is my source code. Any suggestions?

 

 

 

package com.example.finchbrian.miata_control;

 

 

 

 

import android.os.Bundle;

import android.os.StrictMode;

import android.support.v7.app.ActionBarActivity;

import android.view.Menu;

import android.view.MenuItem;

import android.view.View;

import android.widget.Button;

 

 

import org.jivesoftware.smack.ConnectionConfiguration;

import org.jivesoftware.smack.SmackException;

import org.jivesoftware.smack.XMPPException;

import org.jivesoftware.smack.packet.Message;

import org.jivesoftware.smack.packet.Presence;

import org.jivesoftware.smack.tcp.XMPPTCPConnection;

import org.jivesoftware.smack.tcp.XMPPTCPConnectionConfiguration;

 

 

import java.io.IOException;

 

 

 

 

public class MainActivity extends ActionBarActivity {

 

 

    private Button dumby;

    public static final String HOST = "grandline.terracrypt.net";

    public static final int PORT = 5222;

    public static final String SERVICE = "grandline.terracrypt.net";

    private String Tag = "test";

 

 

 

 

 

 

    private XMPPTCPConnectionConfiguration conf = XMPPTCPConnectionConfiguration.builder()

            .setServiceName("173.255.230.176")

            .setHost("173.255.230.176")

            .setSecurityMode(ConnectionConfiguration.SecurityMode.disabled)

            //.setUsernameAndPassword("tester79@grandline.terracrypt.net", "testing123")

            .setPort(PORT)

            .setDebuggerEnabled(true)

            .setCompressionEnabled(false).build();

    private XMPPTCPConnection connection = new XMPPTCPConnection(conf);

 

 

 

 

 

 

 

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        if (android.os.Build.VERSION.SDK_INT > 9) {

            StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();

            StrictMode.setThreadPolicy(policy);

        }

 

 

        //ConnectionConfiguration connConfig; //new ConnectionConfiguration(HOST, PORT);

        //XMPPTCPConnectionConfiguration con = new XMPPTCPConnectionConfiguration();

        //connection = new XMPPConnection("grandline.terracrypt.net");

 

 

 

 

        try {

            connection.connect();

        } catch (SmackException e) {

            e.printStackTrace();

        } catch (IOException e) {

            e.printStackTrace();

        } catch (XMPPException e) {

            e.printStackTrace();

        }

 

 

        try {

            connection.login("*********", "*******");

        } catch (XMPPException e) {

            e.printStackTrace();

        } catch (SmackException e) {

            e.printStackTrace();

        } catch (IOException e) {

            e.printStackTrace();

        }

 

 

        Presence presence = new Presence(Presence.Type.available);

        try {

            connection.sendPacket(presence);

        } catch (SmackException.NotConnectedException e) {

            e.printStackTrace();

        }

        try {

            connection.sendPacket(presence);

        } catch (SmackException.NotConnectedException e) {

            e.printStackTrace();

        }

 

 

 

 

        dumby = (Button) findViewById(R.id.Test);

 

 

        dumby.setOnClickListener(new View.OnClickListener() {

            @Override

            public void onClick(View v) {

                Message msg = new Message("tester@grandline.terracrypt.net", Message.Type.chat);

                msg.setBody("Test");

                try {

                    connection.sendPacket(msg);

                } catch (SmackException.NotConnectedException e) {

                    e.printStackTrace();

                }

            }

        });

    }

 

 

 

 

    @Override

    public boolean onCreateOptionsMenu(Menu menu) {

        // Inflate the menu; this adds items to the action bar if it is present.

        getMenuInflater().inflate(R.menu.menu_main, menu);

        return true;

    }

 

 

    @Override

    public boolean onOptionsItemSelected(MenuItem item) {

        // Handle action bar item clicks here. The action bar will

        // automatically handle clicks on the Home/Up button, so long

        // as you specify a parent activity in AndroidManifest.xml.

        int id = item.getItemId();

 

 

        //noinspection SimplifiableIfStatement

        if (id == R.id.action_settings) {

            return true;

        }

 

 

        return super.onOptionsItemSelected(item);

    }

}

 

 

 

MY ERRORS AS FOLLOWS:

02-18 15:11:56.566  13895-13901/com.example.finchbrian.miata_control D/dalvikvm﹕ Debugger has detached; object registry had 1 entries

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 198 bytes, ptr = 0x729dcb88

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 48 Width() : 48 sampleSize : 1

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ normal image decoding sample size = 1

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 normal decoding

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ normal image decoding end

02-18 15:16:08.056  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.view.ViewGroup.onNestedScrollAccepted, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.onNestedScrollAccepte d

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 11357: Landroid/view/ViewGroup;.onNestedScrollAccepted (Landroid/view/View;Landroid/view/View;I)V

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6f at 0x0000

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.view.ViewGroup.onStopNestedScroll, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.onStopNestedScroll

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 11363: Landroid/view/ViewGroup;.onStopNestedScroll (Landroid/view/View;)V

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6f at 0x0000

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.support.v7.internal.widget.ActionBarOverlayLayout.stopNestedScroll, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.setHideOnContentScrol lEnabled

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 9046: Landroid/support/v7/internal/widget/ActionBarOverlayLayout;.stopNestedScroll ()V

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x000e

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.content.res.TypedArray.getChangingConfigurations, referenced from method android.support.v7.internal.widget.TintTypedArray.getChangingConfigurations

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 367: Landroid/content/res/TypedArray;.getChangingConfigurations ()I

02-18 15:16:08.086  25838-25838/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002

02-18 15:16:08.096  25838-25838/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.internal.widget.TintTypedArray.getType

02-18 15:16:08.096  25838-25838/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 389: Landroid/content/res/TypedArray;.getType (I)I

02-18 15:16:08.096  25838-25838/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002

02-18 15:16:08.096  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.096  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:16:08.096  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.096  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:16:08.106  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.106  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:16:08.106  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.106  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:16:08.106  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.106  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:16:08.116  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.116  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:16:08.116  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.116  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 513 bytes, ptr = 0x72a20e78

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ normal image decoding sample size = 1

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 normal decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ normal image decoding end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 428 bytes, ptr = 0x72a21f20

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[54]

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 467 bytes, ptr = 0x72a20e78

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[54]

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 418 bytes, ptr = 0x72a21020

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[35]

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 409 bytes, ptr = 0x72a21018

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[34]

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:16:08.136  25838-25838/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:16:08.166  25838-25866/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <stream:stream xmlns='jabber:client' to='173.255.230.176' xmlns:stream='http://etherx.jabber.org/streams' version='1.0' xml:lang='en'>

02-18 15:16:08.176  25838-25867/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <?xml version='1.0' encoding='UTF-8'?><stream:stream xmlns:stream="http://etherx.jabber.org/streams" xmlns="jabber:client" from="grandline.terracrypt.net" id="33d173b3" xml:lang="en" version="1.0">

02-18 15:16:08.186  25838-25867/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <stream:features><starttls xmlns="urn:ietf:params:xml:ns:xmpp-tls"></starttls><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>DIGEST-MD5</mechanism><mech anism>PLAIN</mechanism><mechanism>ANONYMOUS</mechanism><mechanism>CRAM-MD5</mech anism></mechanisms><compression xmlns="http://jabber.org/features/compress"><method>zlib</method></compression><auth xmlns="http://jabber.org/features/iq-auth"/><register xmlns="http://jabber.org/features/iq-register"/></stream:features>

02-18 15:16:08.186  25838-25866/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='DIGEST-MD5'>=</auth>

02-18 15:16:08.206  25838-25867/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <challenge xmlns="urn:ietf:params:xml:ns:xmpp-sasl">cmVhbG09ImdyYW5kbGluZS50ZXJyYWNyeXB0Lm 5ldCIsbm9uY2U9IkkwU2FYMVlzTFcxVEhKMDd0T3loVmp3R0hHSTlVTmlYcjFVaUt1WnAiLHFvcD0iYX V0aCIsY2hhcnNldD11dGYtOCxhbGdvcml0aG09bWQ1LXNlc3M=</challenge>

02-18 15:16:08.206  25838-25866/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <response xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>dXNlcm5hbWU9ImZpbmNoYjc5QGdyYW5kbGluZS 50ZXJyYWNyeXB0Lm5ldCIscmVhbG09IjE3My4yNTUuMjMwLjE3NiIsbm9uY2U9IkkwU2FYMVlzTFcxVE hKMDd0T3loVmp3R0hHSTlVTmlYcjFVaUt1WnAiLGNub25jZT0iMVQ4Z2hxa2pKMjJmbkpobjQ3YzhIZE IwVWdkVTQyM0kiLG5jPTAwMDAwMDAxLHFvcD1hdXRoLGRpZ2VzdC11cmk9InhtcHAvMTczLjI1NS4yMz AuMTc2IixyZXNwb25zZT0yMWYyZTc2YTg1NTU0YWUzMmNkMGI5OTY2YjRiODA1MixjaGFyc2V0PXV0Zi 04</response>

02-18 15:16:08.226  25838-25867/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <failure xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><not-authorized/></failure>

02-18 15:16:08.226  25838-25838/com.example.finchbrian.miata_control W/System.err﹕ org.jivesoftware.smack.sasl.SASLErrorException: SASLError using DIGEST-MD5: not-authorized

02-18 15:16:08.226  25838-25838/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.SASLAuthentication.authenticationFailed(SASLAuthenticati on.java:365)

02-18 15:16:08.226  25838-25838/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.tcp.XMPPTCPConnection$PacketReader.parsePackets(XMPPTCPC onnection.java:1011)

02-18 15:16:08.226  25838-25838/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.tcp.XMPPTCPConnection$PacketReader.access$200(XMPPTCPCon nection.java:915)

02-18 15:16:08.226  25838-25838/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.tcp.XMPPTCPConnection$PacketReader$1.run(XMPPTCPConnecti on.java:930)

02-18 15:16:08.226  25838-25838/com.example.finchbrian.miata_control W/System.err﹕ at java.lang.Thread.run(Thread.java:841)

02-18 15:16:08.226  25838-25866/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <presence id='s3G42-1'></presence>

02-18 15:16:08.226  25838-25866/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <presence id='s3G42-1'></presence>

02-18 15:16:08.236  25838-25867/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <presence id="s3G42-1" to="grandline.terracrypt.net/33d173b3" type="error"><error code="401" type="auth"><not-authorized xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error></presence>

02-18 15:16:08.246  25838-25871/com.example.finchbrian.miata_control E/AbstractXMPPConnection﹕ Exception in packet listener

    java.lang.NullPointerException

            at org.jxmpp.util.XmppStringUtils.parseResource(XmppStringUtils.java:84)

            at org.jivesoftware.smack.roster.Roster$PresencePacketListener.processPacket(Roste r.java:1223)

            at org.jivesoftware.smack.AbstractXMPPConnection$4.run(AbstractXMPPConnection.java :1156)

            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)

            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)

            at java.lang.Thread.run(Thread.java:841)

02-18 15:16:08.286  25838-25867/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <presence id="s3G42-1" to="grandline.terracrypt.net/33d173b3" type="error"><error code="401" type="auth"><not-authorized xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error></presence>

02-18 15:16:08.286  25838-25871/com.example.finchbrian.miata_control E/AbstractXMPPConnection﹕ Exception in packet listener

    java.lang.NullPointerException

            at org.jxmpp.util.XmppStringUtils.parseResource(XmppStringUtils.java:84)

            at org.jivesoftware.smack.roster.Roster$PresencePacketListener.processPacket(Roste r.java:1223)

            at org.jivesoftware.smack.AbstractXMPPConnection$4.run(AbstractXMPPConnection.java :1156)

            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)

            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)

            at java.lang.Thread.run(Thread.java:841)

02-18 15:16:08.326  25838-25838/com.example.finchbrian.miata_control I/Adreno-EGL﹕ <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build:  ()

    OpenGL ES Shader Compiler Version: E031.24.00.08+13

    Build Date: 03/28/14 Fri

    Local Branch: 0328_AU200_patches

    Remote Branch:

    Local Patches:

    Reconstruct Branch:

02-18 15:16:08.386  25838-25838/com.example.finchbrian.miata_control D/OpenGLRenderer﹕ Enabling debug mode 0

02-18 15:16:08.396  25838-25838/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:16:08.396  25838-25838/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 198 bytes, ptr = 0x72a31cd8

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 48 Width() : 48 sampleSize : 1

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ normal image decoding sample size = 1

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 normal decoding

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ normal image decoding end

02-18 15:18:01.386  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.view.ViewGroup.onNestedScrollAccepted, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.onNestedScrollAccepte d

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 11357: Landroid/view/ViewGroup;.onNestedScrollAccepted (Landroid/view/View;Landroid/view/View;I)V

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6f at 0x0000

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.view.ViewGroup.onStopNestedScroll, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.onStopNestedScroll

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 11363: Landroid/view/ViewGroup;.onStopNestedScroll (Landroid/view/View;)V

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6f at 0x0000

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.support.v7.internal.widget.ActionBarOverlayLayout.stopNestedScroll, referenced from method android.support.v7.internal.widget.ActionBarOverlayLayout.setHideOnContentScrol lEnabled

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 9046: Landroid/support/v7/internal/widget/ActionBarOverlayLayout;.stopNestedScroll ()V

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x000e

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.content.res.TypedArray.getChangingConfigurations, referenced from method android.support.v7.internal.widget.TintTypedArray.getChangingConfigurations

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 367: Landroid/content/res/TypedArray;.getChangingConfigurations ()I

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control I/dalvikvm﹕ Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.internal.widget.TintTypedArray.getType

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control W/dalvikvm﹕ VFY: unable to resolve virtual method 389: Landroid/content/res/TypedArray;.getType (I)I

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control D/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.406  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.416  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.426  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.426  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.426  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.426  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 513 bytes, ptr = 0x729da938

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ normal image decoding sample size = 1

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 normal decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ normal image decoding end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 428 bytes, ptr = 0x72a219a8

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[54]

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 467 bytes, ptr = 0x72a219a8

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[54]

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 418 bytes, ptr = 0x72a20060

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[35]

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ This is decoding

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : stream read 409 bytes, ptr = 0x72a20060

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader call : QM

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage parsing for decoding ok

02-18 15:18:01.446  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image

02-18 15:18:01.456  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageDecParseHeader 9patched image end

02-18 15:18:01.456  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : QmageHeader Height() 96 Width() : 78 sampleSize : 1

02-18 15:18:01.456  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Make Color table[34]

02-18 15:18:01.456  27288-27288/com.example.finchbrian.miata_control D/﹕ Qmage Mae Color table end

02-18 15:18:01.456  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding

02-18 15:18:01.456  27288-27288/com.example.finchbrian.miata_control D/﹕ 1 to 1 Index mode decoding end

02-18 15:18:01.456  27288-27288/com.example.finchbrian.miata_control D/﹕ onDecode : return true

02-18 15:18:01.476  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <stream:stream xmlns='jabber:client' to='173.255.230.176' xmlns:stream='http://etherx.jabber.org/streams' version='1.0' xml:lang='en'>

02-18 15:18:01.486  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <?xml version='1.0' encoding='UTF-8'?><stream:stream xmlns:stream="http://etherx.jabber.org/streams" xmlns="jabber:client" from="grandline.terracrypt.net" id="c01cc871" xml:lang="en" version="1.0">

02-18 15:18:01.506  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <stream:features><starttls xmlns="urn:ietf:params:xml:ns:xmpp-tls"></starttls><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>DIGEST-MD5</mechanism><mech anism>PLAIN</mechanism><mechanism>ANONYMOUS</mechanism><mechanism>CRAM-MD5</mech anism></mechanisms><compression xmlns="http://jabber.org/features/compress"><method>zlib</method></compression><auth xmlns="http://jabber.org/features/iq-auth"/><register xmlns="http://jabber.org/features/iq-register"/></stream:features>

02-18 15:18:01.506  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='DIGEST-MD5'>=</auth>

02-18 15:18:01.516  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <challenge xmlns="urn:ietf:params:xml:ns:xmpp-sasl">cmVhbG09ImdyYW5kbGluZS50ZXJyYWNyeXB0Lm 5ldCIsbm9uY2U9IlpkSW9LNm9tdDVWdE8rWTAwMlN2eUtxTGZZKytYLzM3eVFMeTJpa3AiLHFvcD0iYX V0aCIsY2hhcnNldD11dGYtOCxhbGdvcml0aG09bWQ1LXNlc3M=</challenge>

02-18 15:18:01.526  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <response xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>dXNlcm5hbWU9ImZpbmNoYjc5IixyZWFsbT0iMT czLjI1NS4yMzAuMTc2Iixub25jZT0iWmRJb0s2b210NVZ0TytZMDAyU3Z5S3FMZlkrK1gvMzd5UUx5Mm lrcCIsY25vbmNlPSJqYWZFTHRTYkJwdVBOM3BNa1RrWFVqQkJTQTB0dW5SNiIsbmM9MDAwMDAwMDEscW 9wPWF1dGgsZGlnZXN0LXVyaT0ieG1wcC8xNzMuMjU1LjIzMC4xNzYiLHJlc3BvbnNlPTY4ODlkNzkxZm JkYzQwNjZlOWJhMGRmZDVlN2E4MzJkLGNoYXJzZXQ9dXRmLTg=</response>

02-18 15:18:01.536  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <failure xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><not-authorized/></failure>

02-18 15:18:01.536  27288-27288/com.example.finchbrian.miata_control W/System.err﹕ org.jivesoftware.smack.sasl.SASLErrorException: SASLError using DIGEST-MD5: not-authorized

02-18 15:18:01.536  27288-27288/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.SASLAuthentication.authenticationFailed(SASLAuthenticati on.java:365)

02-18 15:18:01.536  27288-27288/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.tcp.XMPPTCPConnection$PacketReader.parsePackets(XMPPTCPC onnection.java:1011)

02-18 15:18:01.536  27288-27288/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.tcp.XMPPTCPConnection$PacketReader.access$200(XMPPTCPCon nection.java:915)

02-18 15:18:01.536  27288-27288/com.example.finchbrian.miata_control W/System.err﹕ at org.jivesoftware.smack.tcp.XMPPTCPConnection$PacketReader$1.run(XMPPTCPConnecti on.java:930)

02-18 15:18:01.536  27288-27288/com.example.finchbrian.miata_control W/System.err﹕ at java.lang.Thread.run(Thread.java:841)

02-18 15:18:01.536  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <presence id='30QIw-1'></presence>

02-18 15:18:01.546  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <presence id='30QIw-1'></presence>

02-18 15:18:01.556  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <presence id="30QIw-1" to="grandline.terracrypt.net/c01cc871" type="error"><error code="401" type="auth"><not-authorized xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error></presence>

02-18 15:18:01.566  27288-27342/com.example.finchbrian.miata_control E/AbstractXMPPConnection﹕ Exception in packet listener

    java.lang.NullPointerException

            at org.jxmpp.util.XmppStringUtils.parseResource(XmppStringUtils.java:84)

            at org.jivesoftware.smack.roster.Roster$PresencePacketListener.processPacket(Roste r.java:1223)

            at org.jivesoftware.smack.AbstractXMPPConnection$4.run(AbstractXMPPConnection.java :1156)

            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)

            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)

            at java.lang.Thread.run(Thread.java:841)

02-18 15:18:01.596  27288-27288/com.example.finchbrian.miata_control I/Adreno-EGL﹕ <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build:  ()

    OpenGL ES Shader Compiler Version: E031.24.00.08+13

    Build Date: 03/28/14 Fri

    Local Branch: 0328_AU200_patches

    Remote Branch:

    Local Patches:

    Reconstruct Branch:

02-18 15:18:01.606  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <presence id="30QIw-1" to="grandline.terracrypt.net/c01cc871" type="error"><error code="401" type="auth"><not-authorized xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error></presence>

02-18 15:18:01.606  27288-27342/com.example.finchbrian.miata_control E/AbstractXMPPConnection﹕ Exception in packet listener

    java.lang.NullPointerException

            at org.jxmpp.util.XmppStringUtils.parseResource(XmppStringUtils.java:84)

            at org.jivesoftware.smack.roster.Roster$PresencePacketListener.processPacket(Roste r.java:1223)

            at org.jivesoftware.smack.AbstractXMPPConnection$4.run(AbstractXMPPConnection.java :1156)

            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)

            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)

            at java.lang.Thread.run(Thread.java:841)

02-18 15:18:01.676  27288-27288/com.example.finchbrian.miata_control D/OpenGLRenderer﹕ Enabling debug mode 0

02-18 15:18:01.686  27288-27288/com.example.finchbrian.miata_control D/﹕ DFactory start

02-18 15:18:01.686  27288-27288/com.example.finchbrian.miata_control D/﹕ isQmage : stream is not a Qmage file

02-18 15:18:28.396  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <message to='tester@grandline.terracrypt.net' id='30QIw-4' type='chat'><body>Test</body></message>

02-18 15:18:28.406  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <message to="grandline.terracrypt.net/c01cc871" id="30QIw-4" type="error"><body>Test</body><error code="401" type="auth"><not-authorized xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error></message>

02-18 15:21:28.456  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): <iq type="get" id="979-1094" from="grandline.terracrypt.net" to="grandline.terracrypt.net/c01cc871"><ping xmlns="urn:xmpp:ping"/></iq>

02-18 15:21:28.466  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <iq to='grandline.terracrypt.net' id='979-1094' type='result'></iq>

02-18 15:21:28.486  27288-27336/com.example.finchbrian.miata_control D/SMACK﹕ RECV (0): </stream:stream>

02-18 15:21:28.486  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): <presence id='30QIw-8' type='unavailable'></presence>

02-18 15:21:28.486  27288-27335/com.example.finchbrian.miata_control D/SMACK﹕ SENT (0): </stream:stream>


Viewing all articles
Browse latest Browse all 11413

Latest Images

Trending Articles



Latest Images