all groups > dotnet remoting > december 2005 > threads for december 8 - 14, 2005
Filter by week: 1 2 3 4 5
Mutex & .NET Remoting
Posted by Greg at 12/14/2005 11:46:27 PM
Hi All,
I've a problem. I want to implement a kind of distributed mutex
mechanism, based on one coordinator (the server). The server has a
shared object (singleton, marshalbyref) which exposes 2 methods
takeMutex() and releaseMutex(). I implemented these methods using the
standard c# mutex, b... more >>
Connection terminates, have to restart server?
Posted by Owen J. at 12/14/2005 2:30:16 PM
We have a web application that uses .NET remoting to communicate with another
server. This second server is used to generate Crystal Report files. Each
process can run for several minutes, (some reports can be over a hundred
pages). When a several reports, (20 or more), are generated at the... more >>
How to validate the URL ?
Posted by Prakash at 12/14/2005 2:03:33 AM
Hi Friends,
I am developing application based on .net Remoting. In my client
application i have accessed the remote object by Activator.GetObject
function. In this GetObject function, i have passed the second argument
as URL, like "tcp://localhost:8384/Container". From my client program
how c... more >>
Is object remote activated
Posted by defense at 12/14/2005 1:02:23 AM
I have .net class library, which classes I activate as client objects
and/or as remote objects. Inside those objects I need to know how were
they activated: remote or inside client application. Question: how to
get that information from object?
... more >>
Delegation problem in FW 2.0
Posted by Alex Ivanov at 12/14/2005 12:03:02 AM
Delegation not work in 3-tier application.
My configuration:
Client: windows app. "Account is sensitive and cannot be delegated" is not
selected for user.
Middle tier: windows service (log on as local system).
Server: SQL Server (log on as local system).
All computers has "Trust this comp... more >>
remoting program hangs with FIN_WAIT2
Posted by David Mensik at 12/13/2005 4:50:47 PM
Hi all,
I have this simple remoting object server program:
---
RemotingConfiguration.Configure(Helper.GetCurrentProcessConfigFile());
Console.WriteLine("Started.\r\nPress any key to exit...");
Console.ReadLine();
---
Next I have a client, which is using this server object.
When I press... more >>
Problem calling a remote object from within a remote a object
Posted by EMac at 12/13/2005 9:00:02 AM
Hello,
Would be interested if anyone has come accross this problem? Have some
SingleCall SOA remote objects and communicating with them using http channel.
Theres is a lot of extra client and server formatters.
I have a problem when:
1. Client calls a method on remote object (Obj1) prov... more >>
AccessViolationException
Posted by Nicolai Andersen at 12/13/2005 8:27:03 AM
Hi,
I have just migrated a client/server application to .Net 2.0. After that I
get an AccessViolationException in the server program when the client program
is terminated!!
"AccessViolationException: Attempted to read or write protected memory. This
is often an indication that other mem... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
app.config and Published
Posted by max at 12/12/2005 11:45:23 AM
Hello there
How can I specify the URL of a "published" object in the "app.config" file
of a client?
That is:
###############
SERVER:
I have a Singleton obj (don't confuse with "WellKnownObjectMode.Singleton" )
I want it published by remoting.
....
static void Main(string[] args)... more >>
Help please. Switching Remote server in Remoting Custom Sink
Posted by Eric at 12/9/2005 8:02:19 AM
Hi!
I am trying to handle failover in remoting by try is to change the URI
of the message to a new server.
I implemented a Custom client Sink with the following ProcessMessage
// IClientChannelSink
public void ProcessMessage(IMessage msg, ITransportHeaders
requestHeaders, Stream requestS... more >>
Host a web service in a Windows Forms Application
Posted by Ludovic DE FREITAS at 12/9/2005 5:50:01 AM
Hello,
I am making a prototype system with a Pocket PC that must connect to a
Server Application.
Unfortunately, the server cannot be a Web Server, but a simple Windows Forms
Application.
Here is my question:
The only way to easily communicate for a Pocket PC is the Web Service.
Is it p... more >>
Windows Service host on .NET 2.0
Posted by hangar18 at 12/9/2005 3:45:37 AM
Hi,
we are currently using the Beta 2.
I've created a simple remote object which i'm hosting on a windows
service.
This is the code in the service
Protected Overrides Sub OnStart(ByVal args() As String)
RemotingConfiguration.Configure("RemoteClassLibServer.exe.config")
End Sub
I have s... more >>
Return argument has an invalid type
Posted by sidney at 12/8/2005 6:06:02 PM
I have a dll hosted in IIS with two declared classes: ClassA and Class
respectively:
class ClassA : MarshalByRefObject
{
public GetB
{
get{return new ClassB();}
{
}
class ClassB : MarshalByRefObject
{
public Something()
}
When I try to execute the code:
ClassA myClassA = ne... more >>
Help: Requested Service not found
Posted by larry at 12/8/2005 11:17:17 AM
I'm trying to host a small remoting object on IIS, I tried several days,
I can not get it work, So please help me, I really appreciate your help.
Follwing is my code:
-------------------------------------------------------
//Remoting object code
-------------------------
using System;
nam... more >>
|