WCF over Named Pipes在.NET4中抛出异常,在3.5中工作

时间:2012-08-07 21:03:57

标签: wcf .net-4.0 .net-3.5 named-pipes

我正在尝试运行从
WCF Tutorial - Basic Interprocess Communication

上的此博客条目派生的此示例

如果我在.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上的这个失败?看起来像一个非常基本的例子。我确实在每次运行之间进行了清理/构建。以下是实际堆栈跟踪的快照:

enter image description here

1 个答案:

答案 0 :(得分:1)

事实证明我在Debug中检查了“throw” - &gt;例外 - &gt;在Visual Studio中的C ++异常。如果我不抛出异常,但让它被处理,一切正常。