SOAP 어댑터 구성 및 튜닝 매개 변수
루트 BizTalk Server 설치 디렉터리에 있는 BTSNTSvc.exe.config 파일에 항목을 만들어 SOAP 어댑터가 특정 대상 서버에 대해 여는 동시 연결 수를 구성할 수 있습니다.
참고
이 속성은 HTTP 및 SOAP 어댑터가 동일한 대상 HTTP 서버로 메시지를 보내는 경우 두 어댑터 모두에 적용됩니다. “maxconnnection” 속성의 기본값은 2이며 모든 URI의 “maxconnection” 속성에 설정할 수 있는 최대값은 20입니다.
다음은 최대 연결 수 속성에 대한 구성 파일의 예제입니다.
<configuration>
<system.net>
<connectionManagement>
<add address = "http://www.contoso.com" maxconnection = "20" />
<add address = "http://www.northwind.com" maxconnection = "2" />
</connectionManagement>
</system.net>
</configuration>