--- Begin Message ---
EveryThing seems to work well except the fact that the byte array is null!!
I know that, on the server side, the byte array is conformed.
It seems that the byte array isn't serialized from the server to the
client.
I hope that I've clearly exposed my problem and that somebody will help me.
Thank by advance
Karim
thank you bryan but I solved my problem without specifying the return type.
to do so, I added a setXMLRepresentation(byte[] Xmlrepresentation) to my
javabean :
public void setXMLRepresentation(byte[] representation) {
xmlRepresentation_ = new byte[representation.length];
System.arraycopy(representation, 0, xmlRepresentation_, 0,
representation.length);
}
in order to have a setter corresponding to the getter in my bean.
Now, it works well!!
Thanks for your help
karim
--- End Message ---