11
votes
3answers
3k views
C# Remoting - How to turn off CustomErrors
I getting the following error when I try to connect to my server app using remoting:
A problem seems to have occured whilst connecting to the remote server:
Server encountered an internal error. …
9
votes
6answers
3k views
Windows packet sniffer that can capture loopback traffic?
(This is a followup to my previous question about measuring .NET remoting traffic.)
When I am testing our Windows service / service controller GUI combination, it is often most convenient to run both …
7
votes
3answers
642 views
Is .NET Remoting really deprecated?
Everyone is saying how .NET Remoting is being replaced by WCF, but I'm wondering just how accurate that is. I haven't seen any official word that Remoting is being deprecated, and it seems to me there …
7
votes
4answers
453 views
What does it mean that powershell 2.0 will be “firewall friendly”?
I'm interested in executing powershell scripts on a computer behind a firewall. What ports will I need to have open? Will any special configuration be needed or I'll be just be able to connect to a …
7
votes
3answers
2k views
.NET Remoting vs. Web Services vs. Windows Communication Foundation (WCF)
Anyone willing to help me out with pros/cons on .NET Remoting, Web Services, and WCF? I have worked a bit with .NET Remoting and Web Services and I am architecting a new ASP.NET 3.5 web app where I …
7
votes
4answers
329 views
Powershell remoting with V1
Do you know of any good remoting solutions using powershell V1 (I know the V2 stuff is awesome, but my organization doesn't like using pre-release software). I don't need anything spectactular, just …
7
votes
14answers
6k views
Get external IP address over remoting in C#
I need to find out the external IP of the computer a C# application is running on.
In the application I have a connection (via .NET remoting) to a server. Is there a good way to get the address of …
6
votes
5answers
385 views
Remoting or WCF for new development (between two .NET apps on the same machine) using interfaces?
We want to have two .NET apps running on the same machine communicate with each other. We want three projects. A library containing interfaces. A "server" app that implements the interfaces and …
6
votes
8answers
452 views
Remoting performance degrades over the time
Hello,
I'm working on a client-server solution that uses .NET 2.0 Remoting (server activation, binary formatting over TCP channel, Vista Ultimate) for communication purposes. Currently I'm profiling …
6
votes
2answers
799 views
ASP.NET Stress Testing
Is there a way to test an application where you simulate a hundred different clients connecting to a IIS server and asking the same data? At the customer where our project is running they have 400 …
6
votes
6answers
981 views
What are the pros and cons of Web Services and RMI in a Java-only environment?
When developing distributed applications, all written in Java by the same company, would you choose Web Services or RMI? What are the pros and cons in terms of performance, loose coupling, ease of …
5
votes
6answers
205 views
What remoting approach for Java application would you recommend?
I wonder how is the best way to integrate Java modules developed as separate J(2)EE applications. Each of those modules exposes Java interfaces. The POJO entities (Hibernate) are being used along with …
5
votes
3answers
257 views
Can I tell the CLR to marshal immutable objects between AppDomains by reference?
When marshaling objects between AppDomains in .NET the CLR will either serialize the object (if it has the Serializable attribute) or it will generate a proxy (if it inherits from MarshalByRef)
With …
5
votes
3answers
1k views
Usage of AppDomain in C#
What is the most important use of AppDomains in C#?
5
votes
2answers
2k views
How fast or lightweight Is Protocol Buffer?
Is Protocol Buffer for .NET gonna be lightweight/faster than Remoting(the SerializationFormat.Binary)? Will there be a first class support for it in language/framework terms? i.e. is it handled …
