|
Buck, Justin, Correct me if I'm wrong, but the scenario you (buck) describe, would be more complicated than need be, if the client and the server were on the same box, because wouldn't it be quicker and easier to just write a procedure or external call to retrieve the quantity? Plus, if i remember correctly, aren't there data queue hooks for other platforms (windows, *nix, java, etc.) that were being pushed for the classic client/server model? rick -------original message--------- >Could I use data queues for looking up >inventory quantities? Sure. Think of data queues as messengers. On the one end you have a client who needs to know the on hand quantity. So he puts a message on the queue with the part number. Then you have a server program you wrote who is listening to that queue. When he hears the message, he does the lookup and returns the quantity by putting a message on another queue (or the same one.) You can make the queues 'keyed' so that the two ends of the transaction share a common ID number. client: send ID 541, part ABC server: recv ID 541, part ABC look up ABC send ID 541, part ABC, qty 34 client: recv ID 541, part ABC, qty 34 --buck _______________________________________________
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.