Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet remoting > november 2004 > threads for november 1 - 7, 2004

Filter by week: 1 2 3 4 5

Artricle : Ngen.exe -- A discussion , some queries (.NET Framework Tools Series)
Posted by Namratha Shah \(Nasha\) at 11/7/2004 10:57:20 AM
Hi Guys, Today we will discuss Ngen.exe and then there are some questions regarding Ngen which ahve always bothered me. I have managed to get answers to them ..... please read thru and let me know your answers to them ... coz I am sure these questions must have bothered u also. Lets start...more >>


Article : Code Access Security Part - 1 (.Net FrameWork Tools Series)
Posted by Namratha Shah \(Nasha\) at 11/6/2004 8:58:37 PM
Hey Guys, Today we are going to look at Code Access Security. Code access security is a feature of .NET that manages code depending on its trust level. If the CLS trusts the code enough to allow it ro run then it will execute, the code execution depends on the permission provided to the ass...more >>

No connection could be made because the target machine.....
Posted by Julia at 11/6/2004 3:03:49 PM
Hi, I have a web page which could a remote server activated object hosted by an exe application and registered as a singleton I also override InitializeLifetimeService() and return NULL the first time the web page called the object everything works fine,but if I am waiting a while and c...more >>

.Net Remoting Web Services - namespaces question
Posted by Ivan Zuzak at 11/5/2004 9:04:40 PM
Hello, i have created a web service using .net remoting. the HttpChannel created, by default, has a SdlChannelSink which replys to "...?wsdl" request with a http message containing the WSDL of the web service. how can i change the namespaces in the generated WSDL, or better yet, how can i se...more >>

web apps + remoting sometimes request queue force to iisreset
Posted by Dicky Cheng at 11/5/2004 8:02:56 PM
Hi, I have web client application and web server application. The client will send remoting request to the server. In a normal condition, the client app runs smoothly. But sometimes, the client will request queue up due to too many requests from users, and that requests will trigger remoting s...more >>

Server component instances
Posted by Pedro Gago at 11/5/2004 3:36:15 PM
Hi everybody, I'm doing tests with the server activation methods: singlecall and singleton. My test is (from the client point of view): I open the channel (TCP), I do 10 calls to a server component function and I close the channel. But here there are the problems: 1) I have writen code in ...more >>

500 Server error when updating large dataset
Posted by kirklarsen NO[at]SPAM gmail.com at 11/5/2004 11:39:40 AM
Here is my problem: When I update a small amount of data, my update works fine. When I do a large update, it gives a 500 server error after about 10 or 15 seconds. Is there a server timeout that I'm hitting, or maybe a maximumn POST size?...more >>

callback, asynchronous callbacks and all that crazy stuff
Posted by Phil Greg at 11/5/2004 8:53:02 AM
Hi, in my test project I successfully implemented two-way communication between the client and the server, using an interface derived client, like such: public __gc __interface IClientEvents //This is an interface that will be implemented by the client { ...more >>



IIS 6 probelm??
Posted by Arne Bernhardt at 11/5/2004 8:19:04 AM
Hello, i reduced my problem to a demo-program: (which you can download at http://service.gmx.net/mc/K7UnMaoROYhMr0O4zrY57BGl8PK6jw (please click the button "GMX Mediacenter starten")) I´ve got a forms-client and a simple SingleCall-Service hostet for tests in console or localhost (WinXP II...more >>

Event problems when passing values with properties
Posted by Cyr1dian at 11/4/2004 10:35:31 PM
Hi guys, Here's the thing: I have a pretty basic setup with 2 clients and a server using a singleton to communicate. Pretty basic communication is achieved by setting a value in a property of the sharedobject and then retrieving it. example: Cube.name="Fred"; Setting the name in clie...more >>

Real Proxy and transparent proxy
Posted by Amit at 11/4/2004 9:02:50 PM
Can anyone list the basic of the above topic. any links ???? --- Posted using Wimdows.net Newsgroups - http://www.wimdows.net/newsgroups/...more >>

Asynchronous Callbacks
Posted by pSm at 11/4/2004 7:24:01 PM
Hi, I am trying to understand how the callback mechanism works. My Callback function looks like this --> Public Sub RemoteCallBack(ByVal iar As IAsyncResult) TextBox2.Text = TextBox2.Text + "In Callback..." + vbCrLf Dim obj As DelSub = CType(iar.AsyncState, DelSub) ...more >>

My custom channel blocks exception, but tcp channel does not
Posted by msnews.microsoft.com at 11/4/2004 5:00:37 PM
On frame 1.1, I made a bi-directional socket channel, when server throws a custom exception, client always get a RemotingException with "Server encountered an internal error. For more information, turn on customErrors in the server's .config file.", but client can get the correct exception when...more >>

remoting client in IIS request server waiting permenantly when the network connection broken
Posted by Dicky Cheng at 11/4/2004 2:32:07 PM
Hi, I am using .net remoting technology. I set up a .net remoting client and server in IIS. When the client calls the server, the server will run a long duration method (30-60seconds). I have a test on it that if the network broken at the time the client have already send the remoting request ...more >>

Is Microsoft going to drop Remoting?
Posted by Hani Atassi at 11/4/2004 2:24:01 PM
I wonder if Microsoft is going to keep .NET remoting as it's in .NET Framework 1.1 when Windows Longhorn comes out with the new technology (Indigo)? What would happen to our applications that we already built using .NET Remoting? Is there going to be an easy migration? Thanks, ...more >>

Windows Form + .NET Remoting problem
Posted by yihcheng at 11/4/2004 12:49:59 PM
Hi all, I write a client-server proram. Client is a windows form app and it will invoke some methods in server-side component by .net remoting (httpchannel and singleton mode). Server-side is a windows form too composed 2 parts. Form1.cs is the Windows form part. program.cs is the .net remoti...more >>

Different databases
Posted by Pedro Gago at 11/4/2004 12:44:30 PM
Hi everybody, I'm making a distributed application in which the data access component (located in the server) must connect with different databases in the same server. That means that I will have different ODBCs and I will need to use one or another depending on the client that access to this ...more >>

Identity of the client
Posted by Phil Greg at 11/4/2004 12:07:01 PM
Alright, I've been at this for a couple of days now, and thanks to the helpful people on this forum, I've finally got a C++ project working pretty well. There's still something I wonder, though. Here's how my stuff works: When a client is started, it calls up a method called RegisterWithSe...more >>

New TcpChannel, client side
Posted by Phil Greg at 11/4/2004 7:29:09 AM
Hi, When using client callbacks, I understand you need to define a TcpChannel with a port number (ex.: new TcpChannel(8887)), instead of the regular one way constructor (new TcpChannel()). However, when you run two instances of the same client on the same computer, you get an exception since ...more >>

CallContext lost when reaching Custom server sink?
Posted by Niels Flensted-Jensen at 11/4/2004 7:04:02 AM
In a simple remoting support library I create a custom IClientChannelSink and in the ProcessMessage I stick a principal in the CallContext. The Principal is wrapped in an ILogicalThreadAffinative marked object to make it cross AppDomain boundries. When the call reaches the equivalent IServ...more >>

App gets lost during callback on client
Posted by Phil Greg at 11/4/2004 7:03:04 AM
Hi, I'm pretty new to this, so sorry if I'm not being too clear... I implemented events using the callback method (defined an interface in the common project, from which my client class is derived, I pass a reference of this to the server, which in turn calls up a function on my client). It s...more >>

Antivirus problem
Posted by Steffo at 11/3/2004 5:40:25 PM
Hi I have a problem with my remoting app. I'm using .net remoting, tcpchannels, SAO singleton. My problem is that my customer has installed panda antivirus, wich resulted in that my server is not able to fire any events to the clients. The client is able able to reach the server, but wh...more >>

Remoting Error....Clarification, please help
Posted by Jason Schneekloth at 11/3/2004 11:46:01 AM
Hey all- Posted a problem I was having a few days ago, here is a clarification to that problem, I can't find any answers anywhere on how to go about fixing this. I have a .NET remoting app set up, including a server, a client, and a shared assembly between them.... To test, I called: ...more >>

Remoting error
Posted by John Vonesh at 11/3/2004 11:07:25 AM
Hello, I am working on a remoting project in VB.NET that uses interfaces to instantiate remote objects on the server. After browsing the web for a few days, I realize that you have probably heard one version of what I am going to ask at least a few hundred times. The one difference is, I have alr...more >>

Hosting server components
Posted by Pedro Gago at 11/3/2004 10:52:47 AM
Hi everybody, I'm hosting multiple server components in the same windows service, always using the same port. That works fine but I don't know if it is a good solution. What I'm looking for is not to write one host for each component server. So: is this solution ok? has any effect using alwa...more >>

Full C++ example including events
Posted by Phil Greg at 11/3/2004 7:54:02 AM
Hi, I recently downloaded an example solution using the interface approach, which helped me out a lot... However, I'm still having trouble with events, and passing classes defined in the common project as arguments to server functions. If anyone could provide me, or tell me where to find, a...more >>

Has anyone successfully implemeted CAO on 1.1 framework
Posted by Amit at 11/3/2004 4:59:28 AM
please provide the code... --- Posted using Wimdows.net Newsgroups - http://www.wimdows.net/newsgroups/...more >>

Callback delegate fails on Remoting
Posted by Duy Le at 11/2/2004 10:10:44 PM
Hello, I have a SecurityException problem when doing a callback delegate from my remoting singleton object. The remoting object is hosted by a windows service. The stack trace indicates that it is trying to deserialize my remoting callback method. I'm aware of setting the FilterType property to F...more >>

How to build a Windows Forms remoting host?
Posted by gkustas NO[at]SPAM hvc.rr.com at 11/2/2004 5:48:00 PM
In the "old days", I could make a windows application an ActiveX exe, and expose all the properties and methods I wanted. I could allow a remote application to show and/or hide the application, or access application data(i.e. current customer number in a customer order application). I now hav...more >>

Get by with a little help from my 'Friend' (Sensitive methods)??
Posted by Phil Jones at 11/2/2004 4:52:22 PM
I'm just thinking through an approach when working with a published Remoting server object that exposes methods that are sensitive. I'm wondering - is it enough to have an assembly that contains both the server and client object (signed with a Strong Name) and set the access scope of th...more >>

Problem accessing Remote Object properties
Posted by Jimski at 11/2/2004 8:26:52 AM
Hi all, I am attempting to create a simple Winforms test app that consists of a Client and a Server. From the client I wish to create a remote object on the server, I then wish to pass this object a fileName that will then open the file and return the contents. (fairly simple I thought). I ...more >>

TCP Channel Authentication
Posted by Amit at 11/2/2004 4:26:14 AM
hi Can anyone give pointers on the topic TCP Channel Authentication basics about it Thanks --- Posted using Wimdows.net Newsgroups - http://www.wimdows.net/newsgroups/...more >>

CAO
Posted by Amit at 11/2/2004 4:23:30 AM
hi people i am using CAO.... following is the code in the client:. TcpChannel channel = new TcpChannel(); ChannelServices.RegisterChannel(channel); RemotingConfiguration.RegisterActivatedClientType( typeof(MyRemoteObject), "tcp://localhost:1234/AppName"); however i am getting the foll...more >>

format of binary serialized data...
Posted by Petr Votocek at 11/2/2004 12:46:24 AM
Hi all, is there some description, which describes how binaryformatter serializes data??? I need rules, specification... Thanks PEtr ...more >>


DevelopmentNow Blog