Alternate to MSMQ

D

DBC User

Hello,

Is there an alternative approach to MSMQ for delivering messages? I am
planning to develop an app which I don't want clients to install MSMQ
(or do anything otherthan install my app). I was want to pass messages
between two programs and my first approach was MSMQ and it worked
perfectly and then I found out MSMQ is a seperate win component and is
not installed by default.

I am looking at writing files and implement filesystemwatcher method.
Is it a viable solution??

Thanks in advance.
 
G

Guest

You can write files, or you can use a "no install" database such as SQLite.
As long as you have some notification / polling mechanism operating, you
should be able to come up with something that works. MSMQ, however, if you
need a robust solution, is preferable.
Peter
 
N

Nicholas Paldino [.NET/C# MVP]

DBC User,

Honestly, why not make it a prerequisite that they install MSMQ? Using
files in that manner is pretty gnarly.

If anything, you could always use sockets.

Hope this helps.
 
D

DBC User

If I make MSMQ as a pre-requite, the client need to have Widows CD?
Nicholas said:
DBC User,

Honestly, why not make it a prerequisite that they install MSMQ? Using
files in that manner is pretty gnarly.

If anything, you could always use sockets.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

DBC User said:
Hello,

Is there an alternative approach to MSMQ for delivering messages? I am
planning to develop an app which I don't want clients to install MSMQ
(or do anything otherthan install my app). I was want to pass messages
between two programs and my first approach was MSMQ and it worked
perfectly and then I found out MSMQ is a seperate win component and is
not installed by default.

I am looking at writing files and implement filesystemwatcher method.
Is it a viable solution??

Thanks in advance.
 
N

Nicholas Paldino [.NET/C# MVP]

DBC User,

I have never needed the Windows CD to install MSMQ on my machine after
installing Windows XP SP 2. I would just go to the windows components and
click on it, and it would install, no CD required.

However, it's not unreasonable to expect people to have the CD. After
all, they bought it, no?

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

DBC User said:
If I make MSMQ as a pre-requite, the client need to have Widows CD?
Nicholas said:
DBC User,

Honestly, why not make it a prerequisite that they install MSMQ?
Using
files in that manner is pretty gnarly.

If anything, you could always use sockets.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

DBC User said:
Hello,

Is there an alternative approach to MSMQ for delivering messages? I am
planning to develop an app which I don't want clients to install MSMQ
(or do anything otherthan install my app). I was want to pass messages
between two programs and my first approach was MSMQ and it worked
perfectly and then I found out MSMQ is a seperate win component and is
not installed by default.

I am looking at writing files and implement filesystemwatcher method.
Is it a viable solution??

Thanks in advance.
 
D

DBC User

I agree but what I am trying to get at is to make my app more easy to
install and easy to use. But I will explore this option.
Thanks again.
DBC User,

I have never needed the Windows CD to install MSMQ on my machine after
installing Windows XP SP 2. I would just go to the windows components and
click on it, and it would install, no CD required.

However, it's not unreasonable to expect people to have the CD. After
all, they bought it, no?

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

DBC User said:
If I make MSMQ as a pre-requite, the client need to have Widows CD?
Nicholas said:
DBC User,

Honestly, why not make it a prerequisite that they install MSMQ?
Using
files in that manner is pretty gnarly.

If anything, you could always use sockets.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Hello,

Is there an alternative approach to MSMQ for delivering messages? I am
planning to develop an app which I don't want clients to install MSMQ
(or do anything otherthan install my app). I was want to pass messages
between two programs and my first approach was MSMQ and it worked
perfectly and then I found out MSMQ is a seperate win component and is
not installed by default.

I am looking at writing files and implement filesystemwatcher method.
Is it a viable solution??

Thanks in advance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top