Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Ajax

Adding a ajax/json endpoint to an existing WCF service

0.00/5 (No votes)
14 Apr 2010CPOL 1  
Mixing and matching security to get something like this locked down and providing the desired exposure might be challenging but I didn't offer to solve that in the title, did I?                    <behavior...

Mixing and matching security to get something like this locked down and providing the desired exposure might be challenging but I didn't offer to solve that in the title, did I?


 




 <system.serviceModel>


    <behaviors>


      <endpointBehaviors>


        <behavior name="webScriptBehavior">


          <enableWebScript />


        </behavior>


      </endpointBehaviors>


      <serviceBehaviors>


        <behavior name="Salient.ScriptModel.Services.DualServiceBehavior">


          <serviceMetadata httpGetEnabled="true" />


          <serviceDebug includeExceptionDetailInFaults="false" />


        </behavior>


      </serviceBehaviors>


    </behaviors>


 


    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />


    <services>




      <service behaviorConfiguration="Salient.ScriptModel.Services.DualServiceBehavior" name="Salient.ScriptModel.Services.DualService">



        <endpoint address="" binding="wsHttpBinding" contract="Salient.ScriptModel.Services.IDualService"/>



        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />



        <endpoint address="json" behaviorConfiguration="webScriptBehavior" binding="webHttpBinding" contract="Salient.ScriptModel.Services.IDualService"/>



      </service>



    </services>


  </system.serviceModel>



 



Technorati tags: , ,

License

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