Socket communications

I have a perl script that runs as a deamon on a linux firewall and listens to a socket on a specified port.
If I want to connect to it from a windows juce app, can I still use the InterprocessConnection Class or must I use the Socket Class?
I will send a message to the socket and it will return some data.

Thanks

and a happy new year to all and may the best of 2006 be the worst of 2007.

Hendry

Happy new year to you, too.

The Interprocessconnection class is my own simple protocol for sending the data, so you’d need the same thing at both ends - if you’ve already got a protocol of your own, you’d need to write your own handler using the socket class.