惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
Vulnerabilities – Threatpost
S
Securelist
The Hacker News
The Hacker News
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
AI
AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
博客园 - 司徒正美
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest
Engineering at Meta
Engineering at Meta
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
U
Unit 42
V
V2EX
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
Recorded Future
Recorded Future
P
Privacy & Cybersecurity Law Blog
美团技术团队
小众软件
小众软件
F
Fortinet All Blogs

博客园 - Dansin

Asp.net发送邮件的两种方法 PS合成人物图像 PS进行照片简单处理 SQL Server2005维护计划中删除历史备份 宝宝起名 微软KB974571补丁会使LCS2005变成评估板,报已过期无法使用 2009年度工作总结 两台笔记本无线共享上网图解 转发:用Web Service上传文件 JS调用Vb Script 完成日期的计算 - Dansin Biztalk 实例之 传输文本文件 BizTalk2004安装配置 MSMQ适配器的配置说明(转载) - Dansin - 博客园 将程序集安装到全局缓存GC中的命令 三篇好文章 Hands-on Labs for WWF Release Candidates Biztalk采用Http方式接收数据配置方式 BizTalk调用.net程序,找不到程序集的解决办法 BizTalk调用WebService的权限设置
如何改变bizTalk的并发线程数?
Dansin · 2006-10-31 · via 博客园 - Dansin

      前段时间在做一个项目时遇到一个问题,主要是由于bizTalk为了提高处理速度,采用的是多线程进行处理,默认是2个,原来的接收程序没有考虑多线程,产生了一些问题,后来经过咨询发现biztalk的并发线程数量是可以配置的,根据具体境况设置合适的数值。

修改步骤:

1,在BizTalk安装目录下,打开BTSNTSvc.exe.config文件

2,在结束标签</configuration>之前加上如下配置信息

<configuration>

   <system.net>

      <connectionManagement>

         <add address= "*" maxconnection = "20"/>

      </connectionManagement>

   </system.net>

</configuration>

3,重启BizTalk服务

BTSNTSvc.exe.config文件的全部内容如下:

<?xml version="1.0" ?>
<configuration>
    
<runtime>
        
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            
<probing privatePath="BizTalk Assemblies;Developer Tools;Tracking;Tracking\interop" />
        
</assemblyBinding>
    
</runtime>
    
    
<system.runtime.remoting>
    
        
<channelSinkProviders>
            
<serverProviders>
                
<provider id="sspi" type="Microsoft.BizTalk.XLANGs.BTXEngine.SecurityServerChannelSinkProvider,Microsoft.XLANGs.BizTalk.Engine" securityPackage="ntlm" authenticationLevel="packetPrivacy" />
            
</serverProviders>
        
</channelSinkProviders>
    
        
<application>
            
<channels>
                
<channel ref="tcp" port="0" name="">
                    
<serverProviders>
                        
<provider ref="sspi" />
                        
<formatter ref="binary" typeFilterLevel="Full"/>
                    
</serverProviders>
                
</channel>
            
</channels>
        
</application>
    
</system.runtime.remoting>

   
<system.net>

      
<connectionManagement>

         
<add address= "*" maxconnection = "20"/>

      
</connectionManagement>

   
</system.net>
</configuration>