Click here to Skip to main content
15,894,539 members
Articles / Programming Languages / C#

Design the WCF Service without Implementing Interface

Rate me:
Please Sign up or sign in to vote.
4.00/5 (5 votes)
31 Mar 2012CPOL1 min read 32.5K   418   10  
Design the WCF service without implementing interface
<?xml version="1.0"?>
<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name ="WCFServiceWithOutUsingInterface"  >
        <endpoint contract ="Service1" binding="wsHttpBinding"></endpoint> 
      </service>
      </services> 
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
      </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
  
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
United States United States
Working on Microsoft Technologies and Cloud computing.

Comments and Discussions