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....

