Web Log of Aleksey Nudelman: Thoughts on Software Architecture

Analysis and Review of Microsoft Technologies for IT Managers, Architects and Developers

Sunday, November 14th

Using Managed Microsoft Message Queue


Managed Messaging and Queuing service allows creation of queues, which can receive and store messages. We will create a request queue for requests to the licensed resource and a response queue for results. Our application has to be able to send data to the MSMQ input queue and we will need to implement a mechanism to remove that data from the queue, perform the calculation and post the results back on the MSMS queue



* MSMQ will maintain input and output queues.

* Queuing and scheduling server (QSS) will consist of a listener reading messages from the input queue, deserializing and calculating and posting results to the output queue.

* Calculator will post messages to the input queue and will wait for results on the output queue.

Managed MSMQ Message can be any user defined or built in type, and it is automatically serialized by the .NET runtime. This offers an option of either passing the data to be evaluated by the licensed component or marshalling the component itself.

Passing data provides best performance when a moderate amount of input and output data needs to be passed between the WS and QSS. Marshalling a reference to the licensed resource may be a good alternative when the marshalling cost is smaller than the amount of input and output data (e.g. Data Set). Ultimately, only benchmarking can provide a reliable indication of the performance for either architecture. I hope your company’s benchmarking budget has already been allocated -:).
http://csharpcomputing.com/Reviews/MSMQ.htm


aleksey on 11.14.04 @ 09:21 PM PST [link]


MSN search (Beta) vs Google: Microsoft needs to do more work


I most frequenlty use google to search online msdn reference at http://msdn.com.
For example, when I need to lookup arguments of GetDlgCtrlId method, I send this query to google
http://www.google.com/search?hl=en&q=getdlgctrlid+msdn and the first result is what I need.
However, when I do similar query at MSN search:
http://beta.search.msn.com/results.aspx?q=getdlgctrlid+msdn,
MSDN reference page is nowhere to be found.

aleksey on 11.14.04 @ 03:23 PM PST [link]


UCLA extension is offering (almost) free software


If you sign up for a UCLA extension class (http://uclaextension.org), you are elligible to a buy a Microsoft product very cheaply. I understand that Windows XP Professional, VS.NET, Visio are avaiable for $5 a license. Please note that you have to enroll into a UCLA Extension class to be eligible.
Please contact Mr. Terry Werner (310-825-4100), IT program representative, for more information.

aleksey on 11.14.04 @ 02:45 PM PST [link]


  Home
  Archives
Phishing Inspector is  available

Copyright© 2006 Aleksey Nudelman