473,396 Members | 1,879 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Publish/Subscribe (Outof Process)

Hello Folks
I am working on a applications which needs a publish/subscribe model to
handle events. There can be various components involved and some maybe out of
process.

Ideally I would like to have Windows Service where these different
components can publish there status to and a GUI app that can subscribe to
these statuses and be notified.

What is the best way to go about implementing this ?
Any suggestions ??

Thanks in advance..
Jul 21 '05 #1
4 1742
Hi Veriblue,

You need to use events. You can have public interfaces for the publisher in
which you define an event. The subscribers can hook into this event and then
handle it. A generic event-model might be a good choice for the type of
events. Is this what you are trying to accomplish?

HTH,
- Rakesh Rajan

"Veriblue" <Ve******@discussions.microsoft.com> wrote in message
news:8B**********************************@microsof t.com...
Hello Folks
I am working on a applications which needs a publish/subscribe model to
handle events. There can be various components involved and some maybe out of process.

Ideally I would like to have Windows Service where these different
components can publish there status to and a GUI app that can subscribe to
these statuses and be notified.

What is the best way to go about implementing this ?
Any suggestions ??

Thanks in advance..

Jul 21 '05 #2
Seeing as how some of the components may be out-of-proccess, one mechanism
you may want to consider is Message Queueing (MSMQ).
"Rakesh Rajan" <ra**********************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hi Veriblue,

You need to use events. You can have public interfaces for the publisher in which you define an event. The subscribers can hook into this event and then handle it. A generic event-model might be a good choice for the type of
events. Is this what you are trying to accomplish?

HTH,
- Rakesh Rajan

"Veriblue" <Ve******@discussions.microsoft.com> wrote in message
news:8B**********************************@microsof t.com...
Hello Folks
I am working on a applications which needs a publish/subscribe model to
handle events. There can be various components involved and some maybe out
of
process.

Ideally I would like to have Windows Service where these different
components can publish there status to and a GUI app that can subscribe

to these statuses and be notified.

What is the best way to go about implementing this ?
Any suggestions ??

Thanks in advance..


Jul 21 '05 #3
Thanks, how about COM+ Events, I read somewhere that it can do loosley
coupled event ..is it something that can be used in this scenario ? and could
you please post any good links you have for MSMQ

"Stephany Young" wrote:
Seeing as how some of the components may be out-of-proccess, one mechanism
you may want to consider is Message Queueing (MSMQ).
"Rakesh Rajan" <ra**********************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hi Veriblue,

You need to use events. You can have public interfaces for the publisher

in
which you define an event. The subscribers can hook into this event and

then
handle it. A generic event-model might be a good choice for the type of
events. Is this what you are trying to accomplish?

HTH,
- Rakesh Rajan

"Veriblue" <Ve******@discussions.microsoft.com> wrote in message
news:8B**********************************@microsof t.com...
Hello Folks
I am working on a applications which needs a publish/subscribe model to
handle events. There can be various components involved and some maybe out
of
process.

Ideally I would like to have Windows Service where these different
components can publish there status to and a GUI app that can subscribe

to these statuses and be notified.

What is the best way to go about implementing this ?
Any suggestions ??

Thanks in advance..



Jul 21 '05 #4
The Visual Studio (MSDN) help files contain all the information you need to
get started with MSMQ.
"Veriblue" <Ve******@discussions.microsoft.com> wrote in message
news:16**********************************@microsof t.com...
Thanks, how about COM+ Events, I read somewhere that it can do loosley
coupled event ..is it something that can be used in this scenario ? and could you please post any good links you have for MSMQ

"Stephany Young" wrote:
Seeing as how some of the components may be out-of-proccess, one mechanism you may want to consider is Message Queueing (MSMQ).
"Rakesh Rajan" <ra**********************@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hi Veriblue,

You need to use events. You can have public interfaces for the publisher
in
which you define an event. The subscribers can hook into this event
and then
handle it. A generic event-model might be a good choice for the type
of events. Is this what you are trying to accomplish?

HTH,
- Rakesh Rajan

"Veriblue" <Ve******@discussions.microsoft.com> wrote in message
news:8B**********************************@microsof t.com...
> Hello Folks
> I am working on a applications which needs a publish/subscribe model to > handle events. There can be various components involved and some

maybe out
of
> process.
>
> Ideally I would like to have Windows Service where these different
> components can publish there status to and a GUI app that can
subscribe to
> these statuses and be notified.
>
> What is the best way to go about implementing this ?
> Any suggestions ??
>
> Thanks in advance..


Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
by: Adrian B. | last post by:
Does anyone know of a framework or library that will enable me to use publish/subscribe comms? I want to create a server (using Python) running on a Unix box that will accept client connections...
0
by: Russ | last post by:
Can anyone tell me if .NET directly supports the publish/subscribe messaging paradigm? If not directly, does anyone know of any .NET add-ons which offer this type of functionality? Thanks in...
0
by: Russ | last post by:
Can anyone tell me if .NET directly supports the publish/subscribe messaging paradigm? If not directly, is there an add-on that is available that offers this type of functionality? Thanks in...
1
by: SKumar | last post by:
Hello: I am trying to implement a publish/subscribe model for an applications I am working on. I would very greatful if anybody could offer me some suggestions. The application basically is a...
4
by: Veriblue | last post by:
Hello Folks I am working on a applications which needs a publish/subscribe model to handle events. There can be various components involved and some maybe out of process. Ideally I would like...
0
by: Kamilche | last post by:
''' event.py An event manager using publish/subscribe, and weakrefs. Any function can publish any event without registering it first, and any object can register interest in any event, even...
2
by: gregory_may | last post by:
I am looking for a publish/subscribe mechanism for .Net/Atlas. Does this exist? I need to make web service callbacks to clients when specific events happen. It almost sounds like RSS, but I am...
9
by: Jason | last post by:
Hi all, I am no longer able to publish a web site project using Visual Studio 2005 Professional. I am publishing it to an FTP url, and this used to work just fine. I enter the username and...
3
by: Ludwig Wittgenstein | last post by:
Hello, all. Does anyone know of documentation about implementing a publish- subscribe model between a .NET Web service provide and a Java service consumer? I have this problem I am trying to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.