sending information from one application to another
-
I have two distinct .NET applications which must interact with one another. Some information from the first one should be passed to the second. :confused: How can i do that ? Thanks in advance for any ideas. Ekaterina
-
I have two distinct .NET applications which must interact with one another. Some information from the first one should be passed to the second. :confused: How can i do that ? Thanks in advance for any ideas. Ekaterina
Need a bit more detail about what your doing... What are you passing between the apps and how much? How do these apps interact? Do they have to interact in real-time or can they do their processing in transactions and batches? Do you have the source for both apps? RageInTheMachine9532
-
I have two distinct .NET applications which must interact with one another. Some information from the first one should be passed to the second. :confused: How can i do that ? Thanks in advance for any ideas. Ekaterina
Looks like the kind of thing you'd use "Remoting" for...? '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd
-
I have two distinct .NET applications which must interact with one another. Some information from the first one should be passed to the second. :confused: How can i do that ? Thanks in advance for any ideas. Ekaterina
Remoting is the solution. http://www.codeproject.com/csharp/remotingcallbacks.asp[^] Free your mind...
-
Remoting is the solution. http://www.codeproject.com/csharp/remotingcallbacks.asp[^] Free your mind...
Duh! That would be the all-encompassing answer, wouldn't it! :) My bad! Thanks! RageInTheMachine9532
-
I have two distinct .NET applications which must interact with one another. Some information from the first one should be passed to the second. :confused: How can i do that ? Thanks in advance for any ideas. Ekaterina