1

我正在尝试运行这个源自
WCF 教程 - 基本进程间通信的博客条目的示例

如果我在 .NET4 中运行服务器代码,则会引发以下异常:

First-chance exception at 0x754cd36f (KernelBase.dll) in TestConsole.exe: 0xE0564552: 0xe0564552.

如果我在 .NET3.5 中运行服务器代码,它工作得很好。在两个测试中,客户端代码都是针对 .NET4 编译的。我的服务器代码如下:

[ServiceContract]
public interface IStringReverser
{
    [OperationContract]
    string ReverseString(string value);
}

public class StringReverser : IStringReverser
{
    public string ReverseString(string value)
    {
        char[] retVal = value.ToCharArray();
        int idx = 0;
        for (int i = value.Length - 1; i >= 0; i--)
            retVal[idx++] = value[i];

        return new string(retVal);
    }
}

class Program
{
    static void Main(string[] args)
    {
        using (ServiceHost host = new ServiceHost(typeof(StringReverser), new Uri[] { new Uri("net.pipe://localhost") }))
        {
            host.AddServiceEndpoint(typeof(IStringReverser), new NetNamedPipeBinding(), "PipeReverse");
            host.Open();

            Console.WriteLine("Service is available. Press <ENTER> to exit.");
            Console.ReadLine();

            host.Close();
        }
    }
}

我的客户端代码如下:

[ServiceContract]
public interface IStringReverser
{
    [OperationContract]
    string ReverseString(string value);
}

class Program
{
    static void Main(string[] args)
    {
        ChannelFactory<IStringReverser> pipeFactory =
          new ChannelFactory<IStringReverser>(
            new NetNamedPipeBinding(),
            new EndpointAddress(
              "net.pipe://localhost/PipeReverse"));

        IStringReverser pipeProxy = pipeFactory.CreateChannel();

        while (true)
        {
            string str = Console.ReadLine();
            Console.WriteLine("pipe: " +
              pipeProxy.ReverseString(str));
        }
    }
}

为什么这在 .NET4 上会失败?似乎是一个非常基本的例子。我确实在每次运行之间进行了清理/构建。这是实际堆栈跟踪的快照:

在此处输入图像描述

4

1 回答 1

1

事实证明,在 Visual Studio 中,我在 Debug -> Exceptions -> C++ Exceptions 中检查了“抛出”。如果我不抛出异常,而是让它被处理,一切正常。

于 2012-08-08T16:42:30.933 回答