Condividi tramite


<system.serviceModel.activation>

Questa sezione di configurazione rappresenta le impostazioni di configurazione per lo strumento SMSvcHost.exe. Gli elementi di configurazione che possono essere configurati nel file SMSvcHost.exe.config. In particolare, include tutte le impostazioni che devono essere configurate a livello di computer.

File di configurazione di esempio

Di seguito è mostrato un file di configurazione di esempio (SMSvcHost.exe.config), utilizzato dal processo del listener SMSvcHost.exe.

<configuration>
   <runtime>
      <gcConcurrent enabled="false" />
   </runtime>
   <system.serviceModel.activation>
       <net.tcp listenBacklog="10"
          maxConnectionsPendingDispatch="100"
          maxPendingAccepts="2"
          receiveTimeout="00:00:10"
          teredoEnabled="false">
          <allowAccounts>
             <!-- LocalSystem account -->
             <add securityIdentifier="S-1-5-18"/>
             <!-- LocalService account -->
             <add securityIdentifier="S-1-5-19"/>
             <!-- Network Service account -->
            <add securityIdentifier="S-1-5-20"/> 
             <!-- Administrators account -->
            <add securityIdentifier="S-1-5-32-544" /> 
             <!-- IIS_IUSRS account (Vista only) -->
             <add securityIdentifier="S-1-5-32-568"/>
           </allowAccounts>
       </net.tcp>
       <net.pipe maxConnectionsPendingDispatch="100"
          maxPendingAccepts="2"
          receiveTimeout="00:00:10">
          <allowAccounts>
             <!-- LocalSystem account -->
             <add securityIdentifier="S-1-5-18"/>
             <!-- LocalService account -->
             <add securityIdentifier="S-1-5-19"/>
             <!-- Network Service account -->
            <add securityIdentifier="S-1-5-20"/> 
             <!-- Administrators account -->
            <add securityIdentifier="S-1-5-32-544" /> 
             <!-- IIS_IUSRS account (Vista only) -->
             <add securityIdentifier="S-1-5-32-568"/>
           </allowAccounts>
       </net.pipe>
       <diagnostics performanceCountersEnabled="true" />
   </system.serviceModel.activation>
</configuration>

Vedere anche

Riferimenti

System.ServiceModel.Activation.Configuration