01-24-2009 02:30 PM
Solved! Go to Solution.
01-24-2009 03:17 PM
Are you trying to read from the queue from a separate computer? Passing the queue reference over the network to another computer won't allow that application to read data from the queue. Queue data is only stored locally.
I'm honestly not sure why you'd get an error trying, though. Other options you have for accessing a queue globally on the same machine are to use a Global Variable, rather than a Shared Variable, or to obtain your queue reference using a known name that other parts of the application know as well.
01-24-2009 04:18 PM