-
-
I just got the news my BizTalk Performance Optimization session was approved for Tech·Ed:
Topic Information
Primary Track
Application Server & Infrastructure
Session Type
Lunchtime Session
Session Title
BizTalk Server Performance: Configuring BizTalk Server for performance
Description
Optimizing and verifying your BizTalk Server installation is not an easy thing to do. The documentation is good but very extensive. This presentation aims to guide you through the most important operations you need to do in order to boost the performance of BizTalk. The session includes a live demo where these settings are applied and how it significantly improves the performance.
Major Products or Technologies Covered
Microsoft BizTalk Server 2010, Microsoft SQL Server 2008 R2
Hope to see you there. Let me know you’re coming.
-
-
I got great feedback from many users, and have made some updates to the bLogical BizTalk adapter:.
Disabling the connection pool (only used for send ports)
Some SSH servers can not handle the connection pool very well. This can also be a problem if there is a limit set to number of connections a certain user can have. So I’ve been asked for the possibility to disable the connection pool for send ports, and this can now be done by setting the SSH Connection Limit to "0" in the admin console or BTSNTSvc.exe.config.
Logging and tracing
A much more verbose tracing as been added. If you care to save the trace info to file, you can use the TraceListener (System.Diagnostics):
- Enable Tracing in the port configuration.
- Open the BTSNTSvc.exe.config (or BTSNTSvc64.exe.config) file and add the following in the Config section:
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<add name="BTSListener"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="bLogical.Shared.Adapters.Sftp.log" />
<remove name="Default" />
</listeners>
</trace>
</system.diagnostics>
Public key authentication
There was a problem using identity file authentication as the password was sent as an empty string. This works for some but not all servers. The new version always set the password to null, which should work for all servers.
Macros
%UniversalDateTime% added to the list of supported macros
Misc
- temp folder and remote permissions no longer required properties.
- Empty files are no longer picked up or processed.
Special thanks to John Vestal at CSC and Antti.
Download the adapter from CodePlex