Mots clés : web-serviceswcfweb-services
91
<services> <service name="MyService.MyService" behaviorConfiguration="metadataBehavior"> <endpoint address="http://localhost/MyService.svc" binding="customBinding" bindingConfiguration="jsonpBinding" behaviorConfiguration="MyService.MyService" contract="MyService.IMyService"/> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> </service> </services>
<behaviors> <serviceBehaviors> <behavior name="metadataBehavior"> <serviceMetadata httpGetEnabled="true" /> </behavior> </serviceBehaviors> </behaviors> <services> <service name="MyService.MyService" behaviorConfiguration="metadataBehavior"> <endpoint address="" <!-- don't put anything here - Cassini will determine address --> binding="basicHttpBinding" contract="MyService.IMyService"/> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/> </service> </services>
88
Serializable() Public Class YourType