<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service name="DevLeap.Linq.WCF.OrderService"
behaviorConfiguration="OrderServiceBehavior">
<endpoint
binding="wsHttpBinding"
contract="DevLeap.Linq.WCF.IOrderService" />
<endpoint
address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
<host>
<baseAddresses>
<baseAddress
	value="http://localhost:8000/OrderService" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="OrderServiceBehavior">
	<serviceMetadata allowHttpGet="true" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
