Advertisement

06.23.2008 at 10:32AM PDT, ID: 23508365
[x]
Attachment Details

C# WCF proxy Help me understand this example code...

Asked by JonMny in .NET Framework 3.x versions, Microsoft Visual C#.Net

I am trying to use this class for calling my WCF Service


http://electroholic.com/?p=10

in the sample the author has this code
ExampleWCFClient client = proxy = new ExampleWCFClient();

this will not compile.

Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
using System.ServiceModel;
 
namespace ConsoleApplication1
{
    public delegate void SafeProxyInvocationHandler(out ICommunicationObject proxy);
 
    public static class SafeProxyHandler
    {
        public static Exception Invoke(SafeProxyInvocationHandler del)
        {
            return Invoke(null, del);
        }
 
        public static Exception Invoke(string messageTemplate,
                                        SafeProxyInvocationHandler del)
        {
            if (del == null)
                throw new ArgumentException("Expected delegate instance for handler to invoke!");
 
            ICommunicationObject proxy = null;
 
            try
            {
                del(out proxy);
                HandleClose(proxy);
 
                return null;
            }
            catch (TimeoutException exception)
            {
                HandleException(proxy, exception, messageTemplate);
                return exception;
            }
            catch (FaultException exception)
            {
                HandleException(proxy, exception, messageTemplate);
                return exception;
            }
            catch (CommunicationException exception)
            {
                HandleException(proxy, exception, messageTemplate);
                return exception;
            }
            catch (Exception exception)
            {
                HandleException(proxy, exception, messageTemplate);
                return exception;
            }
        }
 
        private static void HandleClose(ICommunicationObject proxy)
        {
            if (proxy != null
                && proxy.State != CommunicationState.Closed
                && proxy.State != CommunicationState.Closing
                && proxy.State != CommunicationState.Faulted)
                proxy.Close();
        }
 
        private static void HandleException(ICommunicationObject proxy,
                                                          Exception e,
                                                          string messageTemplate)
        {
            AbortClient(proxy);
            ReportException(e, messageTemplate);
        }
 
        private static void ReportException(Exception e, string template)
        {
            Trace.WriteLine(FormatMessage(template, e.GetType().Name));
        }
 
        private static string FormatMessage(string message, params string[] args)
        {
            return args == null || args.Length == 0 ? message : string.Format(message, args);
        }
 
        private static void AbortClient(ICommunicationObject proxy)
        {
            if (proxy != null)
                proxy.Abort();
        }
    }
}
 
Loading Advertisement...
 
[+][-]06.23.2008 at 02:14PM PDT, ID: 21850410

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.27.2008 at 05:42AM PDT, ID: 21883003

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: .NET Framework 3.x versions, Microsoft Visual C#.Net
Sign Up Now!
Solution Provided By: JonMny
Participating Experts: 1
Solution Grade: B
 
 
[+][-]06.27.2008 at 10:56AM PDT, ID: 21886205

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.27.2008 at 01:51PM PDT, ID: 21887510

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]07.01.2008 at 05:37AM PDT, ID: 21907080

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628