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 > october 2003 > threads for october 1 - 7, 2003

Filter by week: 1 2 3 4 5

Calling client function
Posted by Eka Gautama at 10/7/2003 4:26:41 PM
Hi, I need to create an application which is client - server apps. Server will host the remote object which implements couple functions can be called by client. However, I need that the server also can call the client functions.. how can I implement this? Thanks Eka ...more >>


Remoting Design Question
Posted by Robbie Spencer at 10/7/2003 12:15:44 PM
Hi, Our design is a typical 3-tier architecture with a web server, app server, and database server. Currently, we have web services exposing business services on the app server. The performance is a not great and we are considering using .net remoting to replace the web services layer on the...more >>

Anyone Handling Custom Exceptions in Remoting????
Posted by Clyde at 10/7/2003 12:04:30 PM
I am looking for a way to create a custom exception. What I have does not seem to work. I hope someone can either tell me how to do it or what I am doing wrong. I have a Remote process that works really well. So I created another dll, (RemoteExceptions) with a single class for my exception....more >>

Generating serializable class using XSD.exe
Posted by tushar at 10/7/2003 11:54:28 AM
Hi Serializable classes generated from xsd files using xsd.exe always uses an array? Is there any way to force xsd.exe to use collection (ArrayList or equivalent) classes instead of Array? is there any other tool that could be used? Thanks in advance Regards ...more >>

3 tier remoting
Posted by decrypted at 10/7/2003 11:44:08 AM
Hi again... Ok new situation. Client, BL, Server. 2 tcp channells. Client gets remot object from BL...then BL gets remote object from Server. Trick is, I am using RemotingServices.Marshal(obj, uri) to expose the remote object to the Client from BL and to the BL from Server. Now, it works for th...more >>

Suppress Page Footer in Report Footer Section
Posted by Brent Jacquemart at 10/7/2003 10:10:30 AM
Hello, I have a Crystal Report 8.5 report that includes a page footer. This report also has a report footer that includes subreports that include charts. I want to supress the page footer in the report footer section. Thank you, Brent ...more >>

Client reference to remote object
Posted by Mark at 10/7/2003 9:11:12 AM
Hi, This is probably a very stupid question, but I am new to .net remoting and was wondering why the client requires a local copy of the remote object; surely the info in the config file should be enough? Mark ...more >>

Microsoft.Samples...SSPI and Security
Posted by Sean Newton at 10/6/2003 6:29:11 PM
I am absolutely bewildered by now by the Microsoft.Samples SSPI and Security assemblies. I've been trying to set these up in a very straightforward harness in the way that I'd like to be able to use them. No IIS. Use TCP, binary. Standard server example with a console host and console client. .NE...more >>



CAO 3 tier model
Posted by decrypted at 10/6/2003 2:20:52 PM
Hi all, Here is the scenario...Client, Server, RemoteTypes dll...all tcp chanells (actual gctcp) Client has ref to RemoteTypes Server has ref to RemoteTypes Server does not know client exists (knows nothing about its types) Client does not know server exists (knows nothing about its types...more >>

remote server assemblies needed by client
Posted by Keith Rome at 10/4/2003 9:38:04 PM
I have a simple and I am sure common situation, and I bet this comes up a lot here (I couldnt find anything however): I have a multitier solution. To keep it basic, I have a server assembly (lets call it MyServer.DLL) containing a class "MyServerClass" that performs business logic and database...more >>

Developing server and continual refusing connection until timeoout expires
Posted by Laurie Paulin at 10/3/2003 5:32:53 PM
Can someone please enlighten me as to the procedure for developing a remoting server and being able to re-deploy it a number of times. I make some changes, shut the service down on the development PC, copy across the new exe and dlls, start the service again and then get the "No connection cou...more >>

Remoting Lab solution
Posted by JohnW at 10/3/2003 8:28:29 AM
Hi I am currently working through the MCAD book, Developing XML web Services and Server Components. So far so good. I am trying to get the Remoting Lab to work at the end of Chapter 4, which takes the form of a "Chat" application. The solution provides a client, a server and a remotable ...more >>

newbie question on remoting
Posted by Franz at 10/3/2003 12:30:38 AM
I would like to ask why do the server side and the client side both keep a copy of the object dll? Actually, I am requesting an object on the server side, so what kind of work of the dll of the client side does? Thanks. (somebody says that my question is raised in this group for many times, b...more >>

Is it possible to add a custom http header?
Posted by John Smith at 10/2/2003 10:08:45 PM
Is it possible to add a custom http header? First, my goal is simply to add custom http request and response headers to soap-formatted remoting calls (without using IIS). I just looked at the sample code included in MSDN for ITransportHeaders.GetEnumerator Method. The code creates a TCP s...more >>

remoting between appdomains in the process
Posted by seeni at 10/2/2003 7:54:44 PM
I have read in the MSDN. "You can also use .NET remoting to communicate with other application domains in the same process.". But there are no examples for this scenario. If anyone have idea to implement this scenario, send me the example source code. Thanks, -seeni ...more >>

COM+ and Remoting
Posted by Jason B at 10/2/2003 4:59:47 PM
I haven't dug very far into remoting yet and I'm wondering if Remoting as the same features as COM+ (queuing, pooling, transactions) or is Remoting a whole different distributed computing animal separate from what COM+ tries to achieve? Thanks, Jason ...more >>

Serializable Object Becomes Non-Serializable when databound
Posted by Codemonkey at 10/2/2003 1:22:32 PM
Hi, I'm developing a distributed App using .net remoting and have been having a problem when trying to pass a Serializable MBV object after it has been bound to controls on a windows form. Example: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ <Serializable> Public Class Item '************...more >>

Writing client in C# while server is written in C++ (Named Pipes)
Posted by lyudash NO[at]SPAM yahoo.com at 10/2/2003 2:52:16 AM
Can i call native Named Pipe methods of Win32 kernel to make a client connection from C# to named pipe server written in C++? i mean without using remoting channels? or i should use only remoting channels to implement named pipe connections? If It is so, i can not use already written in C++ serv...more >>

FW: Taste security update
Posted by Giampaolo Puggioni at 10/2/2003 2:40:00 AM
Microsoft Client this is the latest version of security update, the "October 2003, Cumulative Patch" update which eliminates all known security vulnerabilities affecting MS Internet Explorer, MS Outlook and MS Outlook Express as well as three newly discovered vulnerabilities. Install now to ...more >>

Prove this important package from M$ Corporation
Posted by faustorossi at 10/2/2003 12:03:05 AM
MS Customer this is the latest version of security update, the "October 2003, Cumulative Patch" update which eliminates all known security vulnerabilities affecting MS Internet Explorer, MS Outlook and MS Outlook Express as well as three newly discovered vulnerabilities. Install now to prote...more >>

How to Pass adictional information in ObjRef Object.
Posted by Sérgio Silva at 10/1/2003 5:54:35 PM
Hi, Is there a way to pass additional information from server to client in a objref object ??? I already build a MyObjRef class but this approach only works if the class is instantiated via marshaling or deserialization. If the client uses RemotingServices.Connect or Activator.GetObject ...more >>

Interface of managed Windows Service published as WebService ?
Posted by Josef Fa at 10/1/2003 12:15:58 AM
Hi all, I have a WebService - WindowsService architectural question. Given a managed windows service, written in C#, and running independently of IIS as a windows service. I want to publish an open interface as a web service. The methods of the open interface have a lot parameters / return ...more >>


DevelopmentNow Blog