Configuring Endpoints

AppFabric includes extensions to IIS Manager and Windows PowerShell cmdlets that let you configure an application endpoint that is defined in a configuration file. Whether you use the IIS Manager UI or cmdlets, you are basically retrieving or changing the values of endpoint configuration parameters in the configuration file associated at the specified or selected scope in the IIS hierarchy (server, site, application, or service). The following sample shows configuration elements and attributes associated with the endpoint configuration parameters.

  <system.serviceModel>
    <services>
      <service name="MyWCFService.Service" behaviorConfiguration="">
          <endpoint name="MyWCFEndpoint" address="https://localhost/MyWCFService/" binding="basicHttpBinding" contract ="MyWCFService.IService" />
      </service>
    </services>
<system.serviceModel>

In This Section