all groups > dotnet remoting > february 2004 > threads for february 15 - 21, 2004
Filter by week: 1 2 3 4
CreateWindowStation
Posted by Paul at 2/20/2004 9:42:03 AM
Does anyone have the vb code to use this function I have found the API
import for this but not the layout of the structures that need to be passed
to the routine. I'm also looking for vb versions of
- CreateWindowStation
- SetProcessWindowStation
- CreateDesktop
- SetThreadDesktop
- GetGUIT... more >>
Passing callback methods to worker classes
Posted by gs_sarge NO[at]SPAM yahoo.com at 2/20/2004 6:45:00 AM
Hi:
I'm working on a server application that takes a callback parameter
from the client to pass large amounts of data through. My server is a
singleton, and would theoretically (I could always dream) have mucho
calls coming to it simultaneously from multiple clients at the same
time. Obviou... more >>
Event deactivation: synchronous or asynchronous
Posted by gs_sarge NO[at]SPAM yahoo.com at 2/20/2004 1:39:55 AM
Hi:
I was wondering what the behavior is when a delegate is unregistered
from an event.
For example:
Say I've registered my delegate on a server and then the server
crashes at some point. I don't know this, so I make a call like this
when I'm logging off
server.serverDelegateEvent ... more >>
Remoting events are lost after period of inactivity.
Posted by Konstantin at 2/19/2004 2:29:28 PM
Hi,
Can somebody explain how to fight with the following problem:
I have client subscribed to remoting events from server.
Events are fine. but after some period of client inactivity client looses
events. I client resubscribe, events are captured again.
In other words:
Client starts so... more >>
Finding Computer Name
Posted by Barry at 2/19/2004 11:26:08 AM
Does anyone know a way on the client to get the computer name for the server that is on the other end of a proxy?... more >>
Best method for callback into client from a server object
Posted by Marlon R at 2/19/2004 10:02:12 AM
I have a server object that updates SQL SERVER 2000 database from a
DataTable (passed from the client).
I want the client to call the server object method asynchronously, and then
received progress update on the database update process.
The question is: What is best way to send update notif... more >>
ASP.NET project using .NET Remoting (DUPLICATE)
Posted by Mike at 2/19/2004 8:06:09 AM
Hello All
I'm a beginner in Visual Studio .NET and a Visual Basic programmer. I'm interesting in building a ASP.NET project as a VNC application. Example
Let say you want to do a presentation from your computer. you want to use the web as your host client to connect to your remote server. You als... more >>
Is tcp so much faster?
Posted by chanser NO[at]SPAM web.de at 2/19/2004 5:28:30 AM
Hi!
Is TCP really so much faster?
In a performance test the client receives 60kb data using .NET
Remoting. Using the TCP channel it takes 1 second, using the HTTP
channel it takes 40 seconds. Is this realistic or might there be a
mistake?
I'm using the RemotinConfiguration-File, so that I ch... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Remoted objects calling other remoted objects
Posted by arjenkraak NO[at]SPAM hotmail.com at 2/19/2004 3:57:54 AM
I have a component which is hosted in a windows service (Comp A). This
component calls another which I have hosted in another windows service
(Comp B). Both use the http channel.
During development and debugging, I have hosted both services on my
development machine.
When I test my client (a ... more >>
Object refereance not equal to null
Posted by Arshad Islam at 2/18/2004 6:30:17 PM
Hi there,
The object referrence for an object should be null if the remote object is
not available at the specified place right ? My object ref is not null when
I try to create a remote object at a place where it is not exposed , any
ideas what could be the reason.
I am exposing the object ... more >>
Serializing only changed objects
Posted by David at 2/18/2004 5:11:07 PM
Hi
We have a problem whereby we want to only serialize a collection of objects - they may be anything but they are at least all serializable - if one of them has been modified (is dirty if you like).
So in essense our workflow is
1. Deserialize the session collection (Session is the object cont... more >>
Remote DataSet Update
Posted by Chris at 2/18/2004 8:30:22 AM
Hello,
I'm just learning remoting and have some questions about DataSets.
Currently, I have a method in my server that uses four data adapters to
populate a single dataset. Using a Get method, the remote application then
requests this dataset via a remote call (and a reference to the datase... more >>
DLLImport and Remoting.
Posted by Rob Peppin at 2/18/2004 5:16:06 AM
Hi all
I am having a problem when trying to use an imported method on a C++ DLL. This is an API call, not a COM interface.
The imported method is being called at the remote server end (a C# DLL)
When I use the method without remoting, the call works fine (and has done for some time). When I at... more >>
memory issue
Posted by Yair Cohen at 2/18/2004 12:02:50 AM
Hi
i have a console remoting server that loads 37K mb in the memory (this
measure is from the task manager not an academic check...)
whay it has to load very much ?
is it because the remoting ?
is there a way to reduce this ?
... more >>
dataadapter fill performance problem
Posted by Yair Cohen at 2/17/2004 9:49:33 PM
Hi
i have a strange problem:
i use code like this:
ODBCConnection cnn = new ODBCConnection("... cnn string ...");
ODBCDataAdapter da = new ODBCDataAdapter("select * from tbl left join tbl2
on tbl.refid = tbl2.id", cnn);
DataTable dt = new DataTable;
DateTime t = Now();
da.Fill(dt);
Ti... more >>
Does the channel name represent the protocol portion of a channel URI?
Posted by Nobody at 2/17/2004 4:01:28 PM
For example, a TcpChannel has by default the channel name of "tcp" and a
channel URI starts with tcp://... I am wondering, if I change the channel
name to something else such as "custom" should the channel URI start with
custom://...?
In all samples and books I have found, and looking at code... more >>
IIS Problem?
Posted by Irfan at 2/17/2004 3:05:46 PM
I am using Windows 2003, DotNet Framework 1.1.
I am hosting a component in IIS. My IIS configuration file is listed below
<system.runtime.remoting>
<application>
<channel ref="http" name="myhttpchannel">
<serverProviders>
<formatter ref="binary" />
</serverProviders... more >>
undoing RegisterActivatedClientType
Posted by steve at 2/17/2004 6:16:07 AM
Once I've called RegisterActivatedClientType how do I remove it
I want to be able to connect to more than one remote service depending on the server name but it appears you can't register more than once for different server. Nor can I determine how to unregister so I can change it
Any suggstion
... more >>
Problem in Debugging C# Remote Object
Posted by deepalk NO[at]SPAM sabretch.com at 2/17/2004 3:33:56 AM
Hi,
I have done a simple .NET Remoting test sample. It works fine with
Remoting.
But i can't debug to the Remote Object.
My Components are like this,
I have created a Class Library project called RemoteLibrary and i have
added a Class Called RemoteFactory(which is inherited by MarshalByRef)
... more >>
How to access a CAO serverside, or - how to achieve CAO functionalities with a Singleton
Posted by Harry at 2/17/2004 2:31:09 AM
Hello,
I'm trying to design a remoting architecture with the following requirements :
*** An object for each client instance ; that is, not only having ClientA and ClientB point to different objects, but also, for a given client, having 2 different ObjectA_1 and ObjectA_2 to proxy to a different... more >>
Remoting and NLB
Posted by Vikram at 2/16/2004 10:59:32 PM
Hi,
I have a Client-Server app which uses .NET Remoting TCP-IP with Binary
formatting for communication
between client and server. The Remote objects are configured as SingleCall
[Server Activated].
The app uses .NET 1.1 on Windows Server 2003.
The plan is to scale out using NLB. Can anyon... more >>
mixing .NET Serviced components and .NET Remoting
Posted by Mario Rodriguez at 2/16/2004 6:55:44 PM
Does anyone knows if makes sense mixing
..NET Serviced components and .NET Remoting , and if it does, How to do it?
thanks
... more >>
Remoting performance
Posted by Sascha at 2/16/2004 4:06:22 PM
Hi,
does anybody know if there exist benchmarks on inter-AppDomain
communication (the AppDomains are assumed running in the same process)?
I'd like to compare the performance of Single-AppDomain-Method-Calls to
Multi-AppDomain-Method-Calls using Remoting. I've implemented a
benchmark ass... more >>
|