all groups > dotnet remoting > august 2005 > threads for august 1 - 7, 2005
Filter by week: 1 2 3 4 5
Singleton threading question
Posted by Ron at 8/5/2005 3:37:41 PM
When two requests hit a method call on a singleton object nearly
simotaneously is it possible that the second call could overright the
parameters passed into the first request.
void SaveIntToDatabase ( int i ) {
//do a bunch of processing that
// takes time
//execute command ob... more >>
Getting Error : (407) Proxy Authentication Required.
Posted by mili at 8/4/2005 10:25:01 PM
Hi,
I am using events in .Net remoting Scenario, So server process can invoke
client delegate function by firing the event.
But when my server tries to fire the event, I get the a exception :
System.Net.WebException: The remote server returned an error: (407) Proxy
Authentication Required... more >>
Help!!! Could not establish secure channel for SSL/TLS intermittent error
Posted by PromisedOyster at 8/4/2005 8:24:47 PM
Our C#/.NET Remoting application has been running successfully for a
number of months on a number of different networks.
However, there is one client using HTTPS that is getting the following
error message intermittently:
The underlying connection was closed. Could not establish secure
chan... more >>
Array Remoting
Posted by MoriCristian at 8/4/2005 1:27:02 AM
Hi everyone. I'm having troubbles in remoting an Int32 array.
All the data are correctly passed from the server to the client, but if in
the client I try to write an element of the array the data is not passed back
to the server.
Can anyone explain me why?
Thanks!... more >>
Remoting Beginner
Posted by CristianMori at 8/3/2005 2:14:06 PM
Hi everyone!
I'm pretty new on remoting. Today I have managed to create a singleton of
this object
class MyObject : MarshallByRef
{
public Int32 test1;
public Int32[] testArray=new Int32[40];
public String testString="Test";
public MyObject() {}
}
If in the server I write each... more >>
(404) Not Found.
Posted by jenright560 at 8/3/2005 11:21:02 AM
I have created a remoting component on a Win2K server using IIS 5.0 and can
connect to the component. However when I move the component to a Win2003
server running IIS 6.0 I get a (404) Not found message. Why?... more >>
application domain
Posted by Cristian Mori at 8/3/2005 12:00:00 AM
Hi! Another question for you....
Using Application Domains, is it possible to share data within several
process on the same machine?
Thanks!
... more >>
NonSerializedAttribute question
Posted by Ron at 8/3/2005 12:00:00 AM
I recently read about the [NonSerializedAttribute].
If I have three properties
------------------------
[Serializable()]
class MyName
{
string FirstName
{
get;
set;
}
string LastName
{
get;
set;
}
string DisplayName
{
get { return FirstName + " " + LastNam... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to pass OleDbParameter object across domain?
Posted by Prodip Saha at 8/2/2005 6:39:25 PM
I am sure many of you have encountered similar problem when you try to =
pass an OleDbParameter object from client to Remote Service. You will =
get a nice message saying - Because of security restrictions, the type =
System.Runtime.Remoting.ObjRef cannot be accessed.
This has to do with the S... more >>
Getting Out of memory exception even when the memory is not high !!
Posted by Aravind at 8/2/2005 6:23:56 PM
Hi,
I am ruuning to out of memory exception , My system has RAM of 4 GB
and virtual memory paging size set to 4GB .When I check the memory
occupied by the process during the exception , it is less ( around 500
MB and peak Memory usage 800MB , even the total memory of the system
is not high ... more >>
How possible?
Posted by Jason Callas at 8/2/2005 3:52:22 PM
How is it possible for the following client code to cause an "The channel
tcp is already registered" error? I thought the value of 0 tells it to pick
an unused (i.e. available) port? I have confirmed that it is only being
caused once.
Dim channel As System.Runtime.Remoting.Channels.Tcp.TcpCha... more >>
Serialization and remoting with dynamic appdomains
Posted by dave.rafkind NO[at]SPAM gmail.com at 8/2/2005 12:25:21 PM
Hello all, I am attempting something tricky with remoting and dynamic
AppDomains:
I have client A, server B, server C, and assembly X.
A, B, and C are all on seperate computers, with an identical copy of
assembly X available to each.
Client A statically references assembly X.
I would lik... more >>
Typed datasets and DateTime using .NET remoting over differing timezones
Posted by PromisedOyster at 8/2/2005 12:28:41 AM
We have a client/server WinForms/C# application that uses .NET Remoting
for the middleware. There is a SQL Server database at the back-end. (I
believe that the same issue exists with WebServices).
The server machine is in one time zone. Some users are in another time
zone. They connect to the ... more >>
Object Design Question
Posted by Jason Callas at 8/1/2005 3:56:35 PM
I have an application were the server marshals out a reference to a Manager
object. Each of my clients gets a reference to this Manager and registers
themselves (which are serializable) (this way the Manager has references
back to all the clients). I do this so the Manager can get/set properti... more >>
|