Remote object - is it possible to call some of methods of remote object in "local" mode
Wed, 31 Oct 2007 06:32:38 -0700
Hi!
Is it possible to mark some of methods of remote object (MarshallByRef
singleton) as "local", and process them in local context, without
exchanging messages between the client and server? I'm thinking about
marking some methods with a certain atrtribute, and then processing
such methods in a dynamic clien ...
|
Intercommunication control?
Wed, 31 Oct 2007 11:33:46 +0100
Hi,
I have absolutely no clue how to do TCP Client/Server stuff.
I would like to drop a "server control" on my server form, a "client
control" on my client form, set some parameters like port and then just
enable it. The controls will take care of the rest (like if the server
restarts, the client will re ...
|
Passing CAO reference back to remoting host
Tue, 30 Oct 2007 18:00:06 +0100
Hi,
i have a little Problem with a CAO reference.
On client side i use a code like this:
IUserProfile profile = ClientContext.CurrentUser.Profile;
profile["CalendarViewSplitterDistance"] = 200;
ServerContext.UserManager.UpdateProfile(user);
where ServerContext is a SAO Singleton, ClienContext is a CAO ...
|
WCF Book Recommendation
Mon, 29 Oct 2007 19:04:21 -0600
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 question is, what books ...
|
Easiest was to send a String from one app to another??
Mon, 29 Oct 2007 16:17:22 +0100
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 ...
|
Call a sub in another winform
Sun, 28 Oct 2007 02:28:00 -0700
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?
...
|
ANN: High performance of remoting ADO.NET objects cross desktop and smart devices
Sat, 27 Oct 2007 10:25:15 -0400
Hi, All:
UDAParts has updated .NET versions of SocketProAdapter at www.udaparts.com
for supporting binary remoting .NET ADO.NET objects, DataSet, DataTable and
DataReader.
Key features and improvements over MS technologies are:
1. Bi-directional remoting DataSet, DataTable and DataReader across desktop
a ...
|
|
|
Remoting error: The underlying connection was closed...
Sat, 27 Oct 2007 11:01:21 +0100
Hi,
we have built a remote service via http channelling which works
well in a LAN environment but fails, if we try to use it
via VPN tunnel to a remote network. The firewall between
offers a permission on a special port. Nevetheless I get
the message (client side):
"The underlying connection was closed: An ...
|
Type is not marked as serializable
Fri, 26 Oct 2007 03:33:37 -0000
Hi,
I have the following C++ code snippet that always give me the error.
The type A in Assembly ........... is not marked as serializable when
I try to run it.
My class already has the [Serializable] attribute.
What am I still missing or I am doing something wrong completely?
[Serializable]
__gc cla ...
|
Returning MarshalByRefObject from an method
Thu, 25 Oct 2007 18:24:13 +0200
Hi,
i'm new to remoting, so perhaps the following question could be stupid
or design may be wired.
I have a remoting object like this:
public class ClientContext : MarshalByRefObject
{
public UserProfile Profile {
get { return ServerContext.CurrentUser.Profile; }
}
}
[Serializable]
pub ...
|