i'm working Android App use Alljoyn framework and i have some prolem
i have a custom object
public class Package implements BusObject {
public static enum DataSendType {
TEXT,IMAGE
}
public static enum PackageStatus {
NONE, SENDING, DONE
}
@Signature("s")
private String m_id;
@Signature("a")
private ArrayList<DataPackage> m_listPackage;
@Signature("r")
private PackageStatus m_status;
@Signature("r")
private DataSendType m_type;
@Signature("s")
private String m_packageName;
}
and interface
@BusInterface (name="xxxx.simpleinterface")
public interface SimpleInterface {
@BusSignal (name="Chat", signature="o")
public void Chat(Package message) throws BusException;
}
but i get this error cannot marshal class Package into 'o' when use Chat(Package)..
pls help me, because i can't get this error out for 2 weeks.
sorry because my English is too bad :)
looking at your code it looks like what you are trying to send is a struct the signature for a struct should be
"r"
or the actual signature surrounded by parenthesizes(
and)
. i.e. forPackage
the signature would be"(sayiis)"
ArrayList
and you must specify the type of data that is in the array.DataSendType
specifiedTEXT
orIMAGE
I made the assumption that you want to send an array of bytes.SimpleInterface
that should extend theSimpleInterface
and `BusObject'Anything sent using AllJoyn should be public so the interface can read the member variables.
for the interface the signature should be
"r"
for struct the signature"o"
means object path. This is an AllJoyn object path which means it just a string with path data.If you really need to use an ArrayList convert the ArrayList to an actual array before sending the
Chat
signal.