【发布时间】:2016-06-03 08:52:23
【问题描述】:
我有发布到 IIS 并正常工作的 RESTful Web Api。
然后我成功发布了我的 BizTalk 编排。
这是 C:\Program Files (x86)\Microsoft BizTalk Server 2013 R2\SDK\Samples\Orchestrations\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 示例中找到它
然后管理控制台中的这个map将参数传递到下一步:
管理控制台中的此架构:
这两个屏幕截图显示我配置了我的发送和接收端口以调用 web HTTP restful
我的问题是如何逐步跟踪以调试我的计划?
发布前我的项目中的发送和接收端口:
如何连接到 BizTalk 中的已配置项目,这些配置在发布后?如何追查?如何一步步调试运行?
Google 出现在与跟踪 c# 应用程序没有任何相似性的结果 articles。
【问题讨论】:
-
您是一般性问题还是有具体问题?
-
一般来说,我们如何在 biztalk 服务器中跟踪这些类型的端口,这些端口配置为“稍后指定”,如 Visual Studio 跟踪(如断点)?或生成日志?下一个问题,当我教学生时,我们如何可视化 biztalk 中触发的线程?
标签: rest visual-studio-2013 biztalk biztalk-2013r2