all groups > dotnet remoting > february 2005 > threads for february 8 - 14, 2005
Filter by week: 1 2 3 4
Message.CoereArg exception???
Posted by Patrick at 2/14/2005 3:40:28 PM
Hey Guys,
I created a remote object which hosting in a console
application (for dev only which will be window services
later). Which is singleton, SAO, delegate event, TCP and
HTTP in it. I create a console application and window
application to talk to remote object and register the
event, b... more >>
Sponser dies, getting System.Net.Sockets.SocketException exception
Posted by Shlomo at 2/14/2005 8:55:25 AM
Hi,
I have a CAO objects that are generated from a singleton server (factory).
The client sponsors the CAO object. When the client dies, I get the a System.Net.Sockets.SocketException exception.
I understands why it is thrown (the CAO cannot reach its lease), but how do I catch it?
From http... more >>
Impersonation in IIS Hosted Remote Objects (NOT WebService)
Posted by at5mith6 NO[at]SPAM hotmail.com(Anthony at 2/13/2005 11:52:23 PM
Hi
I have some Remote objects that I was hosting in a service. The need for
authentication and impersonation has meant I have moved the objects to be
hosted in IIS. I can get the authentication to use proper Windows
Authentication, but I can't achieve impersonation. I achieve
authenticatio... more >>
Genuine Channels - Worth buying?
Posted by Uchiha Jax at 2/13/2005 4:45:12 PM
Hello all,
Given my general greenness when it comes to remoting and my
desire to having something relatively stable up and running in the short
term I have been considering the purchase of Genuine Channels.
Would I be making a smart purchase here? What things should I be cons... more >>
LoadFrom problem in Web Service
Posted by Jaising at 2/13/2005 3:31:00 PM
I am using LoadFrom in my webservice to dynamically load an assembly
and get the following error:
System.Runtime.Remoting.RemotingException: Can not load type
'MS.IT.Legal.Dev.ClassLibrary1.Class1, ClassLibrary1,
Version=1.0.1870.25127, Culture=neutral,
PublicKeyToken=059c47bbe623bab9'.
It w... more >>
Error remoting ...
Posted by Gigi at 2/12/2005 6:31:58 PM
I have write a DLL server
I have this problem : when I call one specific function to the inside Class
i have this error :
"Impossible to find the constructor demanded for deserialize a object of
type DllServer.NetApi+cColl
This is my Class, I have only specified the interested part
Pub... more >>
Factory and object reference problem
Posted by Inverted at 2/12/2005 2:32:49 PM
Hi,
After having uncomprehensible problems with remoting, I drilled down
the the simple example in Ingo Rammer's Chapter3
"ClientActivatedViaFactory". My problem is still there...
When I run both server and client on the same machine, everything works
fine. Problems arise when I distribut... more >>
How to debug between my calling code and remote code?
Posted by feng at 2/12/2005 8:16:13 AM
I am getting error between my local code, that's making
call to a remote object, and the called remote code. The
error occoured after my remote object returns (I can debug
to that point. And it shows the returned reference
correctly) and before my calling code gets the returned
reference b... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Copying the remote object
Posted by Raqofella via DotNetMonster.com at 2/11/2005 3:05:56 PM
hey
i wanna get a copy of my remote object through its realproxy on the local
context. some code of mine is below:
----SERVER-----
// Start publishing the object over remoting
TcpServerChannel statusChannel = new TcpServerChannel(3333);
ChannelServices.RegisterChannel(statusChannel);
Rem... more >>
References to server
Posted by Urs Vogel at 2/11/2005 1:53:12 PM
Hi
I'm not absolutley sure how references in Remoting will persist. My server
object is a singleton.
Let's say I have two server methods (extremely simplified for this
question):
// case 1
public MyClass GetClass()
{
return new MyClass();
}
// case 2
public MyClass FillClass... more >>
WSH and ASP.NET
Posted by Gilberto Fres at 2/10/2005 3:03:01 PM
I'm trying to run a remote script using WSH script. When I run the script
from the command prompt, it work fine. Tracing the task manager, when the
script run from the command prompt it use the my user account.
I trying to run the script from an ASP.NET page using a system.diagnostic
pr... more >>
MemoryStream??
Posted by Charles A. Lackman at 2/10/2005 11:52:57 AM
Hello,
I am working on an updater that Retrieves a file from a web page.
GetRequest.Method = "POST"
SW = New StreamWriter(TheRequest.GetRequestStream)
SW.WriteLine(TransferName)
SW.Close()
TheResponse = TheRequest.GetResponse()
ms = New MemoryStream()
CopyData(TheResponse.GetResponse... more >>
Common Component Deployment Options
Posted by Mansoor Siddiqui at 2/10/2005 6:49:09 AM
Hi all,
I have a common component that will be used from many applications in my
organization. There are different ways to host that component, such as:
(1) As COM+ application on a server
(2) As a shared assembly in GAC on every machine
(3) As a remoting component hosted in IIS
(4) As a ... more >>
TcpServerChannel - doesn't seem to exist?
Posted by Mark Baldwin at 2/9/2005 11:32:12 PM
I am trying to create a simple test server activated object.
In the source code I have...
ChannelServices.RegisterChannel(new TcpServerChannel(8085));
But the compiler cannot find the TcpServerChannel class (nor HttpChannel). I
am "using System". Interestingly this class should be defined ... more >>
How do I automatically re-establish remoting connection?
Posted by Ken Varn at 2/9/2005 5:47:35 PM
I have a remoting server application and a client application. The client
app.is hitting the server with continuous request through .net TCP remoting.
On occasion, the server app. may need to be restarted. If a client is still
communicating with the server, I want the client to be put on hold s... more >>
Scalability of a singleton remote object
Posted by Julia at 2/9/2005 1:14:50 PM
Hi,
My RemoteServer is a singleton remote object hosted by windows service and
accessed by ASP.NET application
using remoting,server activated
Basically my RemoteServer need to send several email message types,and it
have a single method
Send(string To,string Body,int type)
the im... more >>
Catch packets on same PC
Posted by Petr Votocek at 2/9/2005 10:12:36 AM
Hi all, could you help me, what should I do to catch packets on same PC as
sender is!
I use Ethereal to analyze and try to install MS Loopback Adapter...bad way
;o(.
Thanks all
... more >>
Pushing data from the server to the client
Posted by DW at 2/8/2005 8:46:27 PM
Hi,
Here is my question. I want to push security prices to the desktop from the
server. Whenever there is a new price in the database, the server notifies
the client. How can this be done in the following situations using MS .NET
Winforms on the desktop:
1. Using .NET Web Services on ... more >>
|