|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
MessagesThank you in advance for reading this.
I need to have two applications send messages over the network to each other. Basically one server application and (possibly) many client applications. I am using VS 2003. What choices do I have when it comes to implementing this. I am currently using (and it is working) the TcpClient but would like to know what other choices are out there. Thanks again! "It depends". It depends on your requirements for what would be a good
choice for sending messages. I have a solution that has many distributed client applications and one central server. In my scenario I need to have messages routed from one client to another and I need to make sure that the messages arrive. To accomplish that I use MSMQ. It is quite trivial and has more than adaquate performance for what I need. The solution works by each client registering themselves with the server via a well known private queue name. When the server needs to communicate to a client it looks up its computer name and sends a message to the client on a well know client queue name. There are more choices but you would be well served to identify more of your requirements. Steve unwantedspam wrote: Show quoteHide quote > Thank you in advance for reading this. > I need to have two applications send messages over the network to each > other. Basically one server application and (possibly) many client > applications. I am using VS 2003. What choices do I have when it comes > to implementing this. I am currently using (and it is working) the > TcpClient but would like to know what other choices are out there. > > Thanks again! FishingScout wrote:
Show quoteHide quote > "It depends". It depends on your requirements for what would be a good Steve,> choice for sending messages. > > I have a solution that has many distributed client applications and one > central server. In my scenario I need to have messages routed from one > client to another and I need to make sure that the messages arrive. To > accomplish that I use MSMQ. It is quite trivial and has more than > adaquate performance for what I need. The solution works by each > client registering themselves with the server via a well known private > queue name. When the server needs to communicate to a client it looks > up its computer name and sends a message to the client on a well know > client queue name. > > There are more choices but you would be well served to identify more of > your requirements. > > Steve > > unwantedspam wrote: > > Thank you in advance for reading this. > > I need to have two applications send messages over the network to each > > other. Basically one server application and (possibly) many client > > applications. I am using VS 2003. What choices do I have when it comes > > to implementing this. I am currently using (and it is working) the > > TcpClient but would like to know what other choices are out there. > > > > Thanks again! Thank you for your response. Basically what needs to be done is the following: Client sends a message to the server. Based on what is in the message, the server will perform an action (update db, write text file, send email,...) Then the sever sends a message back to the client stating success or failure. I would greatly appreciate any feed back you might have based on this information. Thanks again. unwantedspam,
It sounds like one option would be to use a Web Service. Kerry Moorman Show quoteHide quote "unwantedspam" wrote: > > FishingScout wrote: > > "It depends". It depends on your requirements for what would be a good > > choice for sending messages. > > > > I have a solution that has many distributed client applications and one > > central server. In my scenario I need to have messages routed from one > > client to another and I need to make sure that the messages arrive. To > > accomplish that I use MSMQ. It is quite trivial and has more than > > adaquate performance for what I need. The solution works by each > > client registering themselves with the server via a well known private > > queue name. When the server needs to communicate to a client it looks > > up its computer name and sends a message to the client on a well know > > client queue name. > > > > There are more choices but you would be well served to identify more of > > your requirements. > > > > Steve > > > > unwantedspam wrote: > > > Thank you in advance for reading this. > > > I need to have two applications send messages over the network to each > > > other. Basically one server application and (possibly) many client > > > applications. I am using VS 2003. What choices do I have when it comes > > > to implementing this. I am currently using (and it is working) the > > > TcpClient but would like to know what other choices are out there. > > > > > > Thanks again! > > > > Steve, > Thank you for your response. Basically what needs to be done is the > following: > Client sends a message to the server. Based on what is in the message, > the server will perform an action (update db, write text file, send > email,...) Then the sever sends a message back to the client stating > success or failure. > > I would greatly appreciate any feed back you might have based on this > information. > > Thanks again. > > Kerry Moorman wrote:
Show quoteHide quote > unwantedspam, Kerry,> > It sounds like one option would be to use a Web Service. > > Kerry Moorman > > > "unwantedspam" wrote: > > > > > FishingScout wrote: > > > "It depends". It depends on your requirements for what would be a good > > > choice for sending messages. > > > > > > I have a solution that has many distributed client applications and one > > > central server. In my scenario I need to have messages routed from one > > > client to another and I need to make sure that the messages arrive. To > > > accomplish that I use MSMQ. It is quite trivial and has more than > > > adaquate performance for what I need. The solution works by each > > > client registering themselves with the server via a well known private > > > queue name. When the server needs to communicate to a client it looks > > > up its computer name and sends a message to the client on a well know > > > client queue name. > > > > > > There are more choices but you would be well served to identify more of > > > your requirements. > > > > > > Steve > > > > > > unwantedspam wrote: > > > > Thank you in advance for reading this. > > > > I need to have two applications send messages over the network to each > > > > other. Basically one server application and (possibly) many client > > > > applications. I am using VS 2003. What choices do I have when it comes > > > > to implementing this. I am currently using (and it is working) the > > > > TcpClient but would like to know what other choices are out there. > > > > > > > > Thanks again! > > > > > > > > Steve, > > Thank you for your response. Basically what needs to be done is the > > following: > > Client sends a message to the server. Based on what is in the message, > > the server will perform an action (update db, write text file, send > > email,...) Then the sever sends a message back to the client stating > > success or failure. > > > > I would greatly appreciate any feed back you might have based on this > > information. > > > > Thanks again. > > > > Thank you for your feedback. I had thought of using a web service. The issue I had was how do I tell that the server has finished processing. Would I need to "pull" the web service on a set interval. Any further information on using this approach would be greatly appreciated. Thanks Again!
Can't override CultureInfo.ToString
Mixed types in multidimensional arrays Re: ActiveX raise event - attn Walter Wang More than one method is found with VB but not with C# Application.StartupPath Did Mabry Software Tank! GET SUBNET LOCATION IN VB.NET How to read XML from a string variable?? Use dll created in dotnet using them from vb6 Method does not have same signature etc... |
|||||||||||||||||||||||