0

我在 BizTalk 2009 集成的另一边,我有一个相当简单的合同,看起来像这样:

[ServiceContract(Name = "ReceiverService", Namespace = "http://services.company.org/")]
public interface IReceiverService : ILoadBalanced
{
 [OperationContract]
 void FinishedRouting(long applicationId);

 [OperationContract]
 void ResponsePending(long applicationId, string stringId, short count);

 [OperationContract]
 void ReportException(long applicationId, string errorMessage, string stringId);

 [OperationContract]
 void SaveResponse(WebResponseDto decision);
}

但是,当 BizTalk 组尝试使用 WCF 服务使用向导时,它会阻塞并提供此堆栈跟踪:

[5096] System.NullReferenceException: Object reference not set to an instance of an object. 
[5096]    at Microsoft.BizTalk.Adapter.Wcf.Consuming.Exporters.BindingInfoExporter.CreatePrimaryTransport(ServiceEndpoint serviceEndpoint, Boolean custom) 
[5096]    at Microsoft.BizTalk.Adapter.Wcf.Consuming.Exporters.BindingInfoExporter.CreateSendPort(ServiceEndpoint endpoint, Port port, Boolean custom) 
[5096]    at Microsoft.BizTalk.Adapter.Wcf.Consuming.Exporters.BindingInfoExporter.Export(ServiceEndpointCollection endpoints, ServiceDescriptionCollection wsdlDocuments, Boolean custom) 
[5096]    at Microsoft.BizTalk.Adapter.Wcf.Consuming.Consumer.CreateBindingFiles(MetadataSet metadataSet, String serviceName) 

然后在这里:

[5096] System.NullReferenceException: Object reference not set to an instance of an object. 
[5096]    at Microsoft.BizTalk.Adapter.Wcf.Consuming.Implementation.ClientImplementation.AddFilesToProject(String schemaNamespace) 
[5096] System.NullReferenceException: Object reference not set to an instance of an object. 
[5096]    at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous) 
[5096]    at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args) 
[5096]    at Microsoft.BizTalk.Adapter.Wcf.Consuming.Consumer.Consume(ISynchronizeInvoke synchronizeInvoke, DTE dte, MetadataSet metadataSet, Project project, String importNamespace) 

有人知道从哪里开始看这个吗?

4

2 回答 2

1

它可能类似于这些 -这里这里,即:

  • 对您的 WCF 客户端使用 svcutil.exe 和/或 wsdl.exe 以确保可以由非 BizTalk 客户端生成代理
  • 检查所有 WSDL 以确保所有元素都存在目标命名空间 - 在您的实例中,还记得检查您的基本合同 (ILoadBalanced) 和您的实体 (WebResponseDto)

您能否确认您可以在琐碎的 WCF 服务上使用 WCF 使用向导(无基本接口、一个操作、字符串输入和字符串返回)?如果不是,则可能是您的 VS IDE 已损坏。

FWIW void 返回似乎不是问题 - BTS 为 void 操作创建以下响应模式

  <xs:element name="GetDataResponse">
    <xs:complexType>
      <xs:sequence />
    </xs:complexType>
  </xs:element>

并且将 Contract 和 Base Contract 接口放在不同的命名空间中也是可以的。

但是,将不可序列化的属性添加到 DTO/实体都失败了 svcutil 和 BizTalk WCF 向导

高温高压

namespace WcfService1
{
    [ServiceContract(Namespace = "http://someorl.org/ns1")]
    public interface IBase
    {
        [OperationContract]
        void SomeBaseMethod(int value);
    }

    [ServiceContract(Namespace = "http://someorl.org/ns2")]
    public interface IService1 : IBase
    {

        [OperationContract]
        void GetData(int value);

        [OperationContract]
        CompositeType GetDataUsingDataContract(CompositeType composite);

        // TODO: Add your service operations here
    }


    // Use a data contract as illustrated in the sample below to add composite types to service operations.
    [DataContract]
    public class CompositeType
    {
        bool boolValue = true;
        string stringValue = "Hello ";

        [DataMember]
        public bool BoolValue
        {
            get { return boolValue; }
            set { boolValue = value; }
        }

        [DataMember]
        public string StringValue
        {
            get { return stringValue; }
            set { stringValue = value; }
        }

        //[DataMember]
        //public XmlDocument NonSerializable
        //{
        //    get;
        //    set;
        //}
    }
}
于 2010-09-15T08:11:40.457 回答
0

WCF 客户端应用程序不能使用具有单向操作的服务协定将消息发送到您的 WCF 接收位置。客户端合约上的操作应使用 IsOneWay=false 和 ReplyAction=”*” 进行注释。唯一的例外是当您使用 NetMsmqBinding 时,在这种情况下,客户端合同上的所有操作都应该是单向的。

于 2010-09-14T19:32:52.153 回答