DnD between java apps - help!!!!!!

I'm implemeting drag 'n' drop within my application using custom Transferable imlementation and my own data flavor:

DataFlavor ownDataFalvor =new DataFlavor(MyOwn.class,"My Own Class");

Inside one application it works fine. However, when I'm trying drag data to the second app of this kind - I get no DnD functions called. But, when I add to my Transferable-derived class one more data flavor (plainText or string) - drag is being recognized, with 27 (!) flavors of text type (String, Reader, CharBuffer etc.). NONE of these is of my type (ownDataFalvor).

Please help....

[675 byte] By [hitry] at [2007-9-26 3:36:55]
# 1
Well, I've found the solution myself....It's just because MyOwn class was not Serializable.
hitry at 2007-6-29 12:08:54 > top of Java-index,Desktop,Core GUI APIs...
# 2
I would change the varible name as well.ownDataFalvorcould be changed toownDataFlavor...just for readability ;-)
Ragnvald at 2007-6-29 12:08:54 > top of Java-index,Desktop,Core GUI APIs...