Reputation: 9171
I have a java desktop app and I have a silverlight client app running on a computer. What are my best options for communicating between the two of them? Can the silverlight client app host a wcf so the desktop app can talk directly to it while bypassing the server?
Upvotes: 0
Views: 206
Reputation: 5033
Java and Silverlight both support TCP Sockets, so use them. Sockets in Silverlight And Java Sockets are good places to start.
You might also need Google Protocol Buffers + Java and protobuf-net for compatible serialization. Good luck!
Upvotes: 1