all groups > dotnet remoting > september 2006
Filter by week: 1 2 3 4 5
Interesting Socket error when contacting .net remote server
Posted by balak at 9/28/2006 10:44:01 PM
Server machine
===========
I have a .net remote server application (console app hosting a .net remote
object) installed on the server machine.
Client machine
==========
I also have a windows service on another machine (client) that creates the
remote object and makes calls on it. The rem... more >>
httpchannel timeout property
Posted by silva.sergiomanuel NO[at]SPAM gmail.com at 9/28/2006 6:03:06 AM
Hi,
This property is not working with asynchronous request. why??
I really need to implement timeout in remoting http requests.
Are there alternatives??
Thanks in advance=20
S=E9rgio Silva
... more >>
Server Hangs if Client Hangs
Posted by Spam Catcher at 9/27/2006 5:21:49 PM
Hi all,
We have a remoting application (.NET service) which fires off "events" to a
client via delegates.
If the client hangs (i.e. goes into sleep), the server will eventually
hang.
Could the server be running out of delegates?
Is there a maximum number of delegates in .NET?
Ar... more >>
How to break sink chain
Posted by sirtap at 9/26/2006 11:05:03 PM
Hello
I have implemented a sink (.net remoting) and I wonder how could I break
the process of execution of a remote method.
For example, I check a data in CallContext
string session = (string)lcc.GetData("www_session");
and if session is incorrect a don't want to call a method in r... more >>
What happens to an exception thrown in asyncronous call.
Posted by Douglas Peterson at 9/26/2006 7:38:54 PM
So I have this (singleton) remote object. It has a delegate for a data
change event:
public delegate void DataChangeEvent();
When the client(s) connect to the object, they add themselves as listeners
to the event:
remoteObject.dataChangeListeners += new DataChangeEvent(some function);
Wh... more >>
Multiple clients using same remoting object.
Posted by Douglas Peterson at 9/26/2006 4:03:26 PM
I created a simple client and server using the remoting example in the MSDN
Library.
Run the server and client, works fine.
Now run a second instance of the client (at the same time as the first) and
I get the following exception:
"Only one usage of each socket address
(protocol/network ... more >>
Problems using 1.1 BinaryFormatter from ASP.Net 2.0 web applicatio
Posted by dethomps at 9/26/2006 7:31:02 AM
Hi,
I've encountered a problem with a cross-firewall Remoting application which
uses a BinaryFormatter. The application was built with Framework 1.1 and
works fine when accessed from 1.1 applications, but throws the following
exception when accessed from a framework 2.0 application:
... more >>
How many remoting calls are queued?
Posted by Greg Nagel at 9/26/2006 12:00:00 AM
Hi All
I'm starting to wonder about the performance of our remoting calls and not
sure where to look to confirm my suspisions.
I've got 3 websites all making remoting calls to the app server. The app
server then makes calls to the various backends.
From what I know the remoting calls ar... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Custom Exception via Remoting
Posted by GP at 9/22/2006 2:20:02 PM
I've created a custom exception class that is marked Serializable and
implements the ISerializable interface. I am throwing this custom exception
across my remoting boundary. It works just fine when the remoting client is
a Windows forms or console application, but if I use a .NET COM-expose... more >>
Using remoting features inside a .NET applet loaded in a tag object
Posted by Lambuz at 9/21/2006 6:41:16 AM
First of all, is it possible usign .NET remoting feature inside a .NET
applet loaded into a tag object inside an HTML page ?
<OBJECT id="myID" height="150" width="300"
classid="http:applet.dll#test.applet"> </OBJECT>
If not please can anyone explain why ?
I think yes and so I'd written a ... more >>
Use .Net remoting between two app on same machine whit no net card
Posted by RF at 9/21/2006 4:54:02 AM
Hi,
We built two application that communicate with each other using .Net
remoting on the same machine, essentially replicating what we used to be able
to do with DCOM when one application controls another on the same workstation.
Everything works fine until the Network card is not active a... more >>
Requested Service Not Found
Posted by jon.porter NO[at]SPAM gmail.com at 9/19/2006 7:41:50 PM
Losing my mind with this. I had a project that I had started and was
working fine - now, that I have time to continue I have resurrected it
(started in .NET 1.1 - now .NET 2.0) and I continually get this. When
I cut and paste into some new code, I am not sure if it is something I
changed or no... more >>
File permissions and dynamic assembly loading
Posted by slylos at 9/18/2006 8:41:01 PM
Hey all,
I've got a .NET Remoting application that dynamically loads assemblies
from a specified path at run time. I have a class factory that contains the
logic to do this, and it works perfectly in a unit test, without connecting
to the remoted component. As soon as I move over to a r... more >>
Remoting:Authentication differences - 1.1 and 2.0 - how 2 upgrade
Posted by Flemming at 9/18/2006 2:10:02 PM
Scenario:
1. Web server (internet): IIS + ASP.NET (version 1.1 + 2.0)
running as a stand-alone-server.
2. Application server (Component services)
3. SQL server
Web server is an internet-connected server and runs inside a DMZ
Application server + SQL server runs inside a local dom... more >>
.NET Remoting CAO - NAT
Posted by Leonardo Bruno Lima at 9/18/2006 1:53:04 PM
Hi all,
Is there a way to use .net remoting CAO, where a client or server or both,
are using NAT? I need do it this way, because I need keep my instance alive
between calls.
... more >>
Possible to handle event from singleton server?
Posted by treeman at 9/15/2006 1:02:02 PM
I have created a singleton server in the host and want to connect an event
handler to it. My remote client simply sends some data to the server. I
want my host application to be notified when new data has been sent.
It is unclear to me if this is possible.
How can I obtain the server obje... more >>
The underlying connection was closed: Unable to connect to the remote server
Posted by Eric Friedlingstein (Synapsis) at 9/14/2006 4:25:30 PM
Hi !
- I have a winform application connecting to a remote object hosted in iis
6. I used a 'soap' formatter.
- My IIS is reacheable from the internet on an address like
http://www.myserver.com/myserver/myobject.soap
- There is no proxy.
- There is no firewall and the IIS box is part of a ... more >>
.NET Remoting in Windows Service
Posted by Lammert at 9/14/2006 5:42:14 AM
Good afternoon,
I've create a Windows Service application. The Windows Service is the
"server" for .NET Remoting. I use VB.NET 2.0.
Information about Windows Service application:
Account: Localsystem
OS: Windows 2000
When I install the Windows Service application at the same computer as
... more >>
server auto-identification of the clients after authenfication
Posted by baramuse NO[at]SPAM gmail.com at 9/14/2006 1:50:43 AM
Hi all,
before starting I must say that I'm a remoting beginner so I certainly
didn't assimilate all the tricks of remoting so please be kind ;)
Now here is my interrogation:
I'm working on a client/server architecture for a callcenter software.
The server is the only one connected to the o... more >>
Remoting IPCChannel security with Service
Posted by Grant Schenck at 9/13/2006 12:12:45 PM
I have a simple remoting sample using IPCChannel. If I run the server code
as a console app my client can connect just fine. However, if I the same
server code runs in a service, the client gets a RemotingException of
"Failed to connect to an IPC Port: Access is denied".
The Access is den... more >>
Getting at Service object from remoted object?
Posted by Grant Schenck at 9/13/2006 8:41:07 AM
Hello,
I have a Windows Service developed in C# .NET. I'm making it a remote
server and I can, via an IPC Channel, expose methods on an object and call
them from a
client. However, I now want my remoted object to be able to invoke a method
on my server object and given that the object is b... more >>
SecurityExcepion inside DLL linked in an HTML tag OBJECT
Posted by Lambuz at 9/11/2006 6:01:38 AM
Hi there,
I've got this strange problem.
I've created a library of some assemblies and one of these
(webclient.dll) is linked inside an html tag object by using this
sintax:
<OBJECT id="myID" classid="http:WebClient.dll#namespace.WebClientClass"
/>
The assembly is correctly loaded insid... more >>
Singleton or Single Call
Posted by Amy L at 9/9/2006 7:42:07 PM
Can someone please explain the difference between using single call or
singleton remoting object? When do you use one over the other.
I am working on a remoting setup where I will have hundreds of clients at a
single time hitting the server. All the clients pass is a string and get an
int... more >>
Is it possible to use remoting server developed in .NET 2005 having binary formatter from VB6 ?
Posted by Jigar Mehta at 9/8/2006 6:43:35 AM
Hi,
I have the remoting server having binary formatter (NOT SOAP) which is
developed in .NET 2005 (as windows service) and having shared interface
mechanism between server and the client. I want to get that remoting
server to be accessible from VB 6.0 client. Is that possible?
... more >>
Anyone konw a good pattern for testing remoting connectivity or object?
Posted by Sean F. Aitken at 9/8/2006 5:32:17 AM
Good morning,
Taking into consideration that Activator.GetObject(...) doesn't
immediately attempt to contact the remote server until the first member
is accessed, I was looking for a clean approach for testing remote
connectivity after making the call to Activator.GetObject(...).
Realisticall... more >>
Custom Channel "Request Service Not Found"
Posted by Josh Collins at 9/7/2006 1:21:38 PM
I have (at least partially) developed a custom remoting channel that
uses a JMS-implementation (messaging queues) as the transport.
I am using the SoapFormatter and encapsulating the SOAP request stream
in a JMS Message and sending it to a queue.
I have a server component that is consuming t... more >>
Sending a large dataset (50k rows) to the client
Posted by ami at 9/6/2006 7:58:01 AM
Hi,
I've noticed that whenever the server tries to send back to client a dataset
with over 50,000 rows, it crashes due to a memory exception.
Filling the dataset is not a problem, though in the return of the call that
was invoked by the client the error happens, it might occuer when the se... more >>
Simple sandboxing with appdomain
Posted by Nick Johnson at 9/5/2006 2:19:02 PM
Hi,
I'm trying to construct a sandbox using the procedure outlined here:
http://blogs.msdn.com/shawnfa/archive/2005/08/08/449050.aspx. I can
construct the sandbox, but when I try and instantiate a (MarshaByRefObject
descended) type in the sandbox, I get a SecurityException:
---
"System.Secur... more >>
Server crash when the client software is closed
Posted by ami at 9/5/2006 12:17:02 AM
Hey,
I am using .net remoting server.
I have encountered an unexplained problem with the server,
It's running fine till the second the client software is closed... at that
very moment the server crashes.
It throw Access Violation Exception. Details: Attempted to read or write
protected... more >>
Help ! -> Distributed BL and Database Access
Posted by crgsmrt NO[at]SPAM hotmail.com at 9/4/2006 5:01:22 AM
Hello all,
I'm working on a project that requires the use of distributed
notifications between machines. I.e. an update is made by one machine
and then another machine is notified of the change (subscriber
pattern).
As this is my first attempt with Remoting I'd really appreciate if
someone... more >>
Starting point to learn .net Remoting
Posted by PN at 9/3/2006 10:28:14 AM
Hi Experts,
I do not have any experience in .net remoting. Can you please suggest me the
correct path?
Thanks
PN
... more >>
|