all groups > dotnet remoting > august 2005 > threads for august 15 - 21, 2005
Filter by week: 1 2 3 4 5
NAT and Remoting
Posted by venkats_n at 8/21/2005 11:36:14 AM
I am developing an WinForms based application used 90% within a LAN and
10% across the Internet though the Internet use may increase over time.
This application uses the remoting technology.
The application does not work for Natted IP addresses.
I tried to work around this problem with the r... more >>
The underlying connection was closed: An unexpected error occurred on a receive
Posted by J at 8/21/2005 11:15:07 AM
We are receiving this error when attempting to process a load of
approximately 5000 requests.
The scenerio is as follows:
A Windows Application makes a request to Windows 2003 server which in
turn
makes a request to a mainframe using EntireX. The error occurs on the
server.
I'll post ... more >>
What's the difference between Activator.GetObject(serverType,url) and RemotingServices.Connect(serverType,url)
Posted by Gustavo Guerra at 8/21/2005 12:00:00 AM
Hello
Can some one explain me the difference between
Activator.GetObject(serverType,url) and
RemotingServices.Connect(serverType,url)? They seem to do exactly the same.
Best Regards,
Gustavo Guerra
... more >>
Long run process with progress notification
Posted by Barry at 8/20/2005 4:26:01 AM
I'm writing remoting project, client is a windows form application and remote
objects are hosted on IIS. Some of the methods of remote objects would
consume long time no run, I want to show the progress or state of the process
on the client side to notify the client about the progress.
I've... more >>
Server notification from client
Posted by venkatesh at 8/19/2005 8:52:26 AM
Hello,
I am new to.Net remoting. Just got some concepts on how it works.
I have to do this at my work. I have a server with a remotable object.
There are some clients connected to the server using .Net remoting.
One client changes some value from his front end and updates the data
in the se... more >>
HELP: Dymamically create IPC channels in windows service application(newbie)
Posted by Hank at 8/18/2005 5:31:28 PM
Hi, experts:
I am writing a windows service application in C# which will dynamically
create IPC channels upon receiving client requests(both service and clients
running on the same machine, so I choose IPC instead of TCP or HTTP).
following are my questions:
(1)How do I dynamically get free ... more >>
Interface serialization
Posted by Fanette Ozil at 8/18/2005 8:57:30 AM
Hello,
Here is the goal of my project :
- to create a simplified API with helper classes for a complex software.
- to protect the software code by redefining a new interface.
My project contains 3 assemblies :
- one that I call "interface dll", which only contains interfaces and
abstract... more >>
remoting not working through vpn
Posted by Rich Wood at 8/18/2005 7:33:08 AM
My application consists of a client and server that communicate via a Tcp
Channel. The client sends requests to the server which then sends data back
to the client. It works fine for clients on the LAN but not for clients
connected to the LAN through VPN. The clients are able to send requests ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Problem recieving data from mainfram application
Posted by Paul at 8/18/2005 5:45:49 AM
Hi. I'm connecting to an IBM mainframe application with a TcpClient-object. I
have prewritten JAVA-code which works fine, but my simple .NET code will not
work. Can anyone a bit more experienced please help me? I'm rather stuck..
Here's my code:
TcpClient tcpClient = new TcpClient();
tcpC... more >>
IpcChannel and events problem
Posted by Stein Karlsen at 8/18/2005 12:33:02 AM
Hi
I'm trying to fire events via ipcserverchannel and ipcclientchannel but I
get this message :
"This remoting proxy has no channel sink which means either the server has
no registered server channels that are listening, or this application has no
suitable client channel to talk to the s... more >>
Remoting events problem HELP !
Posted by Gene Vangampelaere at 8/18/2005 12:00:00 AM
Hi,
I'm having a problem with my remote events.
I've uploaded my code to :
http://www.vangampelaere.be/download/RemotingEventsDemo.zip
The server console works fine but when I try to add the handler to the
remote object event i get :
... more >>
What is the best method for .NET App inter process communication?
Posted by Thanga at 8/17/2005 8:05:21 AM
Hi Experts,
I have a standalone desktop application, a windows service and couple
of MS Office Add-ins. All these applications run in the same computer.
The Desktop Application needs to talk to Windows service and Office
Add-ins and Vice versa.
Since all these three are running under the dif... more >>
Scalable architecture and retaining state in SAO
Posted by kerkkoj NO[at]SPAM gmail.com at 8/17/2005 5:41:15 AM
Hi,
I have remote objects that offer object persistence services to
clients.
When my server starts up, it reads up all information about the remote
objects from an config xml-file. For example, in the config file I tell
which persistence-class to use and to which database fields objects
sh... more >>
Why would I NOT use remoting?
Posted by Michael at 8/16/2005 11:46:57 AM
I'm wring a smart client app which will be used 90% within a LAN and 10%
across the Internet though the Internet use may increase over time. I've set
off using remoting but have noticed Microsoft suggesting in a number of
places that we should use Web Services in preference most of the time a... more >>
Web Farm/Load Balancing question
Posted by Anthony at 8/15/2005 11:25:03 PM
Hello everyone!
I've searched around for an answer but couldn't find one, so I'm hoping one
of you savvy .NET gurus would know the answer. Basically, I would like to
know how SAOs and CAOs work in a web farm scenario and how .NET achieves
load balancing. The reason I am asking this is becau... more >>
sharing static data
Posted by Brad Quinn at 8/15/2005 2:05:04 PM
I have a console application that hosts several server activated objects.
Before Main calls RemotingConfiguration.Configure it initializes a bunch of
static members in a class that holds configuration information. None of the
hosted objects modify this data (the members are private and there... more >>
|