Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to serialize my POJO with simplexml but it crashes during this step.

My POJO is:

package de.srs.android.pdixuploader.services;
import java.io.Serializable;



import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;


@Root
public class AttachRequest implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 5922518491140977011L;
    @Element
    private String username;
    @Element
    private String password;
    @Element
    private String group;
    @Element
    private String instanceId;
    @Element
    private String formId;

    public AttachRequest() {
    }

    public AttachRequest(String username, String password, String group) {
        super();
        this.username = username;
        this.password = password;
        this.group = group;
    }

    public AttachRequest(String username, String password, String group,
            String instanceId, String formId) {
        this(username, password, group);
        this.instanceId = instanceId;
        this.formId = formId;
    }

    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    public String getGroup() {
        return group;
    }
    public void setGroup(String group) {
        this.group = group;
    }

    public String getInstanceId() {
        return instanceId;
    }

    public void setInstanceId(String instanceId) {
        this.instanceId = instanceId;
    }

    public String getFormId() {
        return formId;
    }

    public void setFormId(String formId) {
        this.formId = formId;
    }

    @Override
    public String toString() {
        return "AttachRequest [username=" + username + ", password=" + password
                + ", group=" + group + ", instanceId=" + instanceId
                + ", formId=" + formId + "]";
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((formId == null) ? 0 : formId.hashCode());
        result = prime * result + ((group == null) ? 0 : group.hashCode());
        result = prime * result
                + ((instanceId == null) ? 0 : instanceId.hashCode());
        result = prime * result
                + ((password == null) ? 0 : password.hashCode());
        result = prime * result
                + ((username == null) ? 0 : username.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        AttachRequest other = (AttachRequest) obj;
        if (formId == null) {
            if (other.formId != null)
                return false;
        } else if (!formId.equals(other.formId))
            return false;
        if (group == null) {
            if (other.group != null)
                return false;
        } else if (!group.equals(other.group))
            return false;
        if (instanceId == null) {
            if (other.instanceId != null)
                return false;
        } else if (!instanceId.equals(other.instanceId))
            return false;
        if (password == null) {
            if (other.password != null)
                return false;
        } else if (!password.equals(other.password))
            return false;
        if (username == null) {
            if (other.username != null)
                return false;
        } else if (!username.equals(other.username))
            return false;
        return true;
    }



}

My service code is:

Serializer serializer = new Persister();

            AttachRequest attRequest = new AttachRequest();
            attRequest.setUsername(j.getUser().getUsername());
            attRequest.setPassword(j.getUser().getPassword());
            attRequest.setInstanceId(j.getInstanceId());

            File outputDir = getApplicationContext().getCacheDir();
            Log.d(TAG, "output dir of cached files is " + outputDir);
            File attRequestFile;
            attRequestFile = File.createTempFile("attrequest",String.valueOf(j.getId()), outputDir);
            serializer.write(attRequest, attRequestFile);

This is the traces.txt of the call:

----- pid 124 at 2012-12-17 10:45:18 -----
Cmd line: com.android.settings

DALVIK THREADS:
"main" prio=5 tid=1 WAIT
  | group="main" sCount=1 dsCount=0 s=N obj=0x4001d8e0 self=0xccb0
  | sysTid=124 nice=0 sched=0/0 cgrp=bg_non_interactive handle=-1345026008
  | schedstat=( 239302713 1942330767 55 )
  at java.lang.Object.wait(Native Method)
  - waiting on <0x44e7b840> (a android.os.MessageQueue)
  at java.lang.Object.wait(Object.java:288)
  at android.os.MessageQueue.next(MessageQueue.java:146)
  at android.os.Looper.loop(Looper.java:110)
  at android.app.ActivityThread.main(ActivityThread.java:4627)
  at java.lang.reflect.Method.invokeNative(Native Method)
  at java.lang.reflect.Method.invoke(Method.java:521)
  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
  at dalvik.system.NativeStart.main(Native Method)

"Binder Thread #2" prio=5 tid=6 NATIVE
  | group="main" sCount=1 dsCount=0 s=N obj=0x44e76ce8 self=0x117a70
  | sysTid=142 nice=0 sched=0/0 cgrp=bg_non_interactive handle=1254056
  | schedstat=( 3886153 101010333 2 )
  at dalvik.system.NativeStart.run(Native Method)

"Binder Thread #1" prio=5 tid=5 NATIVE
  | group="main" sCount=1 dsCount=0 s=N obj=0x44e763b8 self=0x1320c8
  | sysTid=141 nice=0 sched=0/0 cgrp=default handle=1244360
  | schedstat=( 11215758 2609880972 6 )
  at dalvik.system.NativeStart.run(Native Method)

"JDWP" daemon prio=5 tid=4 VMWAIT
  | group="system" sCount=1 dsCount=0 s=N obj=0x44e752a0 self=0x126688
  | sysTid=136 nice=0 sched=0/0 cgrp=bg_non_interactive handle=1201408
  | schedstat=( 8865201 110733608 15 )
  at dalvik.system.NativeStart.run(Native Method)

"Signal Catcher" daemon prio=5 tid=3 RUNNABLE
  | group="system" sCount=0 dsCount=0 s=N obj=0x44e751e8 self=0x125310
  | sysTid=130 nice=0 sched=0/0 cgrp=bg_non_interactive handle=1168968
  | schedstat=( 23685704 102321889 20 )
  at dalvik.system.NativeStart.run(Native Method)

"HeapWorker" daemon prio=5 tid=2 VMWAIT
  | group="system" sCount=1 dsCount=0 s=N obj=0x438b8eb8 self=0x123f78
  | sysTid=126 nice=0 sched=0/0 cgrp=bg_non_interactive handle=1191504
  | schedstat=( 25376442 304821825 9 )
  at dalvik.system.NativeStart.run(Native Method)

----- end 124 -----
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.