all groups > dotnet remoting > september 2004 > threads for september 15 - 21, 2004
Filter by week: 1 2 3 4 5
Performance of the "Remoting"
Posted by Hawix at 9/20/2004 4:07:56 PM
Hi All,
I need make an application server designed for 200 online clients. The
Remoting technology is very nice but I'm afraid that is not efficient for
hunders online clients.
I want to make application server which is designed for mediating between
client and SQL database server. More of th... more >>
network credentials and .NET Remoting: Proxy Authentication Required
Posted by Greg Robinson at 9/20/2004 3:54:06 PM
We are getting a System.Net.WebException: "The remote server returned an
error: (407) Proxy Authentication Required" from one and only one client
when making calls to a remote server, hosted by IIS. I am thinking this one
client has a proxy and\or firewall for internal traffic.
Is there a wa... more >>
Any reason I would not be able to pass an IPrincipal object?
Posted by Gary A. Bushey [MVP] at 9/20/2004 3:12:20 PM
I am (very) new to .Net Remoting. I am trying to pass in a IPrincipal
object to a .Net remote object but everytime I try I get an "Exception has
been thrown by the target of an invocation" error which goes into more
detail to tell me that:
System.Security.SecurityException: Request failed.... more >>
Yet another "channel tcp is already registered" issue
Posted by Gary A. Bushey [MVP] at 9/20/2004 1:34:17 PM
I am using a SharePoint Web Part to call a .Net remote object hosting in a
Windows Service. The first time I call this, everything works fine.
Additional calls result in the dreaded "The channel tcp is already
registered". This occurs if I refresh the page that had the successful call
or i... more >>
Cached Connections in .NET Remoting
Posted by cmagicos NO[at]SPAM pop.com.br at 9/20/2004 11:51:52 AM
Hi there,
Days ago, i ran into a serious problem. I´m using DNS round robin in a
..NET Remoting application. But, as long as the .NET Remoting makes a
sort of cache of each connection made. If you try to connect to a
server as mycomputer:3001, that is an alias to the round robin, the
..NET Re... more >>
Repost: CallContext.GetData - cannot be used in the constructor of the Server object (Remoting)
Posted by José Joye at 9/20/2004 7:40:40 AM
I'm playing around with the "CallContext" class to pass around extra
information between my client and Server applications (implemented with
Remoting).
My Server is a SAO-singlecall.
If I try to use the CallContext.GetData() method to retrieved information
from within a method in the Server p... more >>
How to make my remoting application through firewall???
Posted by minehe at 9/19/2004 6:35:02 AM
my application using HTTP channel 80 port and BINARY data transfer.
but my application can not through firewall under CAO or SAO, why? and how ?
I dont want to use SOAP transfer because SOAP mode is very slow.... more >>
remoting proxy has no channel sink
Posted by JohnK at 9/18/2004 2:49:03 PM
when button1_Click is executed, I get this msg
==============================================
An unhandled exception of type 'System.Runtime.Remoting.RemotingException'
occurred in mscorlib.dll
Additional information: This remoting proxy has no channel sink which means
either the server has... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
My object's remoting proxy is WAY huge on the client
Posted by 0to60 at 9/18/2004 10:32:20 AM
I have an object A, who contains a bunch of maps of other objects B, C, D.
Some maps are internal, some are private. Object A inherits from
MarshalByRefObject, whereas B, C and D are all marked Serializable.
On client computers, I'll obtain a remoting proxy to object A (often proxies
to many ... more >>
System.Runtime.Remoting.ObjRef cannot be accessed
Posted by vfees NO[at]SPAM liquidcognition.com at 9/18/2004 7:59:20 AM
I'm receiving the above error in a ASP.Net remoting architecture where
(for now) I am running both the server and client on the same machine.
I've attempted to apply known fixes, and currently have the following
setup:
The "<system.runtime.remoting>" section of my machine.config looks
like ... more >>
.net remoting
Posted by mridul buragohain via .NET 247 at 9/17/2004 11:10:38 AM
Hi,
( regarding the chat application sample using remoting in the microsoft book for mcsd)
i also faced that problem. solved that using the automatic deserialization, described in msdn. but now get another problem. i m getting the following error message.
"Unhandled Exception: System.Runtime.... more >>
How Do I Stop Events From Being Received After Proxy Is Set To Nothing?
Posted by emmanuel NO[at]SPAM epr.footman-walker.com at 9/17/2004 4:36:01 AM
Hi everyone!
I have this problem: After instantiating a proxy to a remote object
using Activator.GetObject, I receive events fired by the remote object
as expected.
However, when I set the proxy to nothing, the code in the event
handlers still executes; that is, the events still continue t... more >>
One Server .NET Remoting Simulation
Posted by Henry at 9/16/2004 7:00:38 PM
Hi guys,
I want to practice remoting. The problem is that I only have one server
available.
Can I simulate calling objects in different ports using one server?
Is so, can someone provide me with an article, tool or example on how to
accomplish this?
Thanks in advance.
Henry
... more >>
Loading remotable object host app in an AppDomain
Posted by Ratan at 9/15/2004 10:41:08 PM
Hi,
I have a remotable object 'RemotObj' in "RemoteObj.dll" assembly. This
object is hosted in "RemoteObjHost.exe" assembly. I have a console app
"Test.exe" and want to run "RemoteObjHost.exe" in a new App Domain of
Test.exe process.
My code in "Test.exe" is as follows:
AppDomainSetup *do... more >>
lifetime of MBR Component hosted in IIS
Posted by xie yongzhi via .NET 247 at 9/15/2004 7:09:02 PM
(Type your message here)
recently I build a Asp.Net Application and use Remoting to connect to a .Net
MBR Component hosted in IIS.Because the MBR Component need use large Cache
which need long time to be initialized,I want to make the MBR Component
create once and run at all times,So I override... more >>
Connection actively refused on localhost
Posted by BeanDog at 9/15/2004 4:17:55 PM
I'm using the Socket class to connect across a local area network. When I
test the application by running both the client and server on my development
machine, the connection works fine when I try to connect to "127.0.0.1" but
the connection is "actively refused" when I try to connect to
"<... more >>
|