Click here to Skip to main content
15,886,110 members
Articles / Ajax
Tip/Trick

Adding a ajax/json endpoint to an existing WCF service

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
14 Apr 2010CPOL 12.3K   3  
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)


Written By
Software Developer (Senior) Salient Solutions
United States United States
My name is Sky Sanders and I am an end-to-end, front-to-back software solutions architect with more than 20 years experience in IT infrastructure and software development, the last 10 years being focused primarily on the Microsoft .NET platform.

My motto is 'I solve problems.' and I am currently available for hire.

I can be contacted at sky.sanders@gmail.com

Comments and Discussions

 
-- There are no messages in this forum --