ProtoBuf WCF“没有分配模型实例”

时间:2013-06-18 15:58:16

标签: wcf c#-4.0 protobuf-net

我收到此错误:

没有将模型实例分配给ProtoOperationBehavior

我刚刚在Visual Studio中使用WCF模板应用程序来查看是否可以让它运行。如何解决此错误?

代码

public class Service1 : IService1
{
    public string GetData(int value)
    {
        return string.Format("You entered: {0}", value);
    }

    public CompositeType GetDataUsingDataContract(CompositeType composite)
    {
        if (composite == null)
        {
            throw new ArgumentNullException("composite");
        }
        if (composite.BoolValue)
        {
            composite.StringValue += "Suffix";
        }
        return composite;
    }
}

[ServiceContract]
public interface IService1
{

    [OperationContract]
    [ProtoBehavior()]
    string GetData(int value);

    [OperationContract]
    [ProtoBehavior()]
    CompositeType GetDataUsingDataContract(CompositeType composite);
}


[DataContract]
[ProtoBuf.ProtoContract]
public class CompositeType
{
    bool boolValue = true;
    string stringValue = "Hello ";

    [DataMember(Order = 1)]
    [ProtoBuf.ProtoMember(1)]
    public bool BoolValue
    {
        get { return boolValue; }
        set { boolValue = value; }
    }

    [DataMember(Order = 2)]
    [ProtoBuf.ProtoMember(2)]
    public string StringValue
    {
        get { return stringValue; }
        set { stringValue = value; }
    }
}

的app.config:

<services> 
<service name="ProtoBufService.Service1"> 
    <host> 
        <baseAddresses> 
            <add baseAddress="net.tcp://localhost:9086/ProtoBufService/Service1/" />
        </baseAddresses>
    </host> 
    <endpoint address="basic" 
        binding="netTcpBinding" contract="ProtoBufService.IService1" 
        behaviorConfiguration="protoEndpointBehavior">         
    </endpoint> 
    <endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange"/>     
</service> 
</services>
<extensions> 
    <behaviorExtensions> 
         <add name="protobuf" 
            type="ProtoBuf.ServiceModel.ProtoBehaviorExtension, 
            protobuf-net, Version=2.0.0.640, 
            Culture=neutral, PublicKeyToken=257b51d87d2e4d67" />     
     </behaviorExtensions> 
</extensions>

<endpointBehaviors>
    <behavior name="protoEndpointBehavior">
        <protobuf />
    </behavior>
</endpointBehaviors>

1 个答案:

答案 0 :(得分:0)

  

我尝试过使用nuget。那没用。

我希望能够更多地了解您在那里遇到的问题

  

然后我尝试使用谷歌代码版本(Core,net30程序集),同样的错误。

“仅核心”库不包含元编程层 - 它设计用于预生成的序列化程序集。因此,没有默认模型 - 必须始终提供。

这里最简单的“修复”只是使用库的“完整”构建;这将元编程模型作为默认模型。