all groups > dotnet remoting > october 2007
WCF Book Recommendation
Posted by Andrew Faust at 10/29/2007 7:04:21 PM
I've got a system I need to build that I was going to implement with Web
Services. However, this system needs fairly high throughput and after
reading Microsoft's performance comparison it looks like WCF is the best
way to go. http://msdn2.microsoft.com/en-us/library/bb310550.aspx
My questi... more >>
Easiest was to send a String from one app to another??
Posted by M O J O at 10/29/2007 4:17:22 PM
Hi,
What is the easiest way to send a string from one application to another?
I'm develloping an OutlookAddIn and in some cases I need to make my
OutlookAddIn send a string to my other (CRM) application.
Any idea?
Thanks M O J O... more >>
Call a sub in another winform
Posted by timmytong at 10/28/2007 2:28:00 AM
Hi all,
I have a winform running on a machine to check for some criteria, once the
criteria is fullfilled, this winform need to notify several winforms on
different machine to do some actions(calling the sub). Can anyone list out
some simple steps that I can follow?
... more >>
[OneWay] and IPC channel - does not work?!?!
Posted by js at 10/19/2007 1:50:22 PM
Hi,
I have observed strange behavior with the IpcChannel and methods
marked as [OneWay]. It seems that they can be called only a fixed
number of times and after the limit is reached they do not appear on
server anymore. It can be seen even in a simplest sample application
(I include the code ... more >>
how to notify clients
Posted by almir at 10/16/2007 10:47:33 PM
hi,
i need to notify clients about change that happened on server. there
will be about 2000 clients each will have my service running in it,
what would be the best way to notify only few of them them (not all)
about event on server.
i think that using .net events is not an option in this ca... more >>
Hosting Remote objects in Windows Service
Posted by William at 10/13/2007 10:55:53 PM
Hey
We've currently have a remoting objects that are being hosted by a Windows
Service. The Windows Service gets the names and port to host the objects on
from a config file. The Server Components being hosted, then retrieve the
connection string for the database to connect to from the Se... more >>
Using TCP between ASP.net web application and windows service Host
Posted by naeem ahmad at 10/8/2007 2:47:00 AM
Hi,
Using .net Remoting.
Can I able to use TCP protocol calling method on windows service from
ASP.net application.
I have managed to use HTTP, but when i tried with TCP, it fails, do i need
any configurartion for ASP.net.
Calling method on DLL hosted by windows service, I can call over TCP ... more >>
Missing Tcp
Posted by Andrew Jarvis at 10/4/2007 3:57:29 PM
Dear All,
I decided to experiment with remoting but fell at the first hurdle with the
error:
The type or namespace name 'Tcp' does not exist in the namespace
'System.Runtime.Remoting.Channels'
due to:
using System.Runtime.Remoting.Channels.Tcp;
Where do I go from here?
Regard... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
RemotingConfiguration problem
Posted by dsavy4 NO[at]SPAM gmail.com at 10/2/2007 5:41:04 PM
I am having difficulty calling the static method of
RemotingConfiguration class. Here is what I have
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Remoting;
namespace MyServer
{
public class Class1
{
RemotingConfiguration.Co... more >>
Remoted object passes blank properties to client
Posted by miles3719 NO[at]SPAM msn.com at 10/2/2007 8:46:54 AM
Hello there,
I've scoured the web for a couple of hours now trying to find a
solution to my problem so I am going to resort to asking the wider
world for assistance. I'm sure it's going to be a simple thing but I
just cant make it work.
Consider the following server activation code
Im... more >>
|