我有发布到 IIS 并正常工作的宁静 Web Api。
然后我成功发布了我的 BizTalk 业务流程。
这是 C:\Program Files (x86)\Microsoft BizTalk Server 2013 R2\SDK\Samples\Orchesstrations\HelloWorld 中的 Hello World 示例模板
我在接收端口的架构是:
<?xml version="1.0" encoding="utf-16" ?>
<xs:schema xmlns="http://BizTalk_call_wsdn4_wsdn2.Schema2" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" targetNamespace="http://BizTalk_call_wsdn4_wsdn2.Schema2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Product">
<xs:complexType>
<xs:attribute name="id" type="xs:string" />
<xs:attribute name="price" type="xs:string" />
<xs:attribute name="name" type="xs:string" />
<xs:attribute name="sync" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:schema>
这是我使用的 Visual Studio 编排架构模板,因此您可以在hello world示例中找到它
然后管理控制台中的此映射将参数传递到下一步:
管理控制台中的此架构:
这两个屏幕截图显示我配置了我的发送和接收端口以调用 web HTTP restful
我的问题是如何逐步跟踪以调试我的计划?
发布前我的项目中的发送和接收端口:
如何在发布后连接到 BizTalk 中的配置项目?如何追查?如何一步步调试和运行?
Google 出现在与跟踪 c# 应用程序没有任何相似性的结果文章中。