I am relatively new to mqueue and I'm trying to interface between two queues within my network but on different UNIX servers. I'm not sure if this is possible, but any information will be useful.
If what you mean my "mqueue" is POSIX (i.e. mq_open(),...) or System V (i.e. msgget(),...) message queues, it is not possible. Message queues are an an IPC mechanism. This means that they facilitate communication between processes on the same machine.
To communicate between machines you will need to use sockets (i.e. TCP/IP, UDP/IP) or remote procedure calls (RPC).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.