﻿<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.web>
    <compilation debug="true" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="$safeprojectname$.Feed1">
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8733/Design_Time_Addresses/$safeprojectname$/" />
          </baseAddresses>
        </host>
        <endpoint contract="$safeprojectname$.IFeed1" address="Feed1" binding="webHttpBinding" behaviorConfiguration="$safeprojectname$.Feed1Behavior"/>
      </service>
    </services>
    <behaviors>
      <endpointBehaviors>
        <behavior name="$safeprojectname$.Feed1Behavior">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>
