mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 21:01:39 +03:00
00f97e41d6
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/01/14/windows-push-notification-server-side-helper-library.aspx http://create.msdn.com/en-us/education/catalog/article/pnhelp-wp7
59 lines
2.0 KiB
XML
59 lines
2.0 KiB
XML
<?xml version="1.0"?>
|
|
<configuration>
|
|
<system.serviceModel>
|
|
|
|
<services>
|
|
<service behaviorConfiguration="PushServiceBehavior" name="WindowsPhone.Recipes.Push.Server.Services.PushService">
|
|
<endpoint address="" binding="basicHttpBinding" bindingConfiguration=""
|
|
contract="WindowsPhone.Recipes.Push.Server.Services.IPushService">
|
|
<identity>
|
|
<dns value="localhost" />
|
|
</identity>
|
|
</endpoint>
|
|
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
|
|
<host>
|
|
<baseAddresses>
|
|
<add baseAddress="http://localhost:8000/PushService/" />
|
|
</baseAddresses>
|
|
</host>
|
|
</service>
|
|
<service behaviorConfiguration="ImageServiceBehavior" name="WindowsPhone.Recipes.Push.Server.Services.ImageService">
|
|
<endpoint address="" behaviorConfiguration="EndpointImageServiceBehavior"
|
|
binding="webHttpBinding" contract="WindowsPhone.Recipes.Push.Server.Services.IImageService" />
|
|
<host>
|
|
<baseAddresses>
|
|
<add baseAddress="http://localhost:8000/ImageService/" />
|
|
</baseAddresses>
|
|
</host>
|
|
</service>
|
|
</services>
|
|
|
|
<behaviors>
|
|
<endpointBehaviors>
|
|
<behavior name="EndpointImageServiceBehavior">
|
|
<webHttp />
|
|
</behavior>
|
|
</endpointBehaviors>
|
|
|
|
<serviceBehaviors>
|
|
<behavior name="ImageServiceBehavior">
|
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
|
<serviceMetadata httpGetEnabled="true" />
|
|
</behavior>
|
|
|
|
<behavior name="PushServiceBehavior">
|
|
<serviceMetadata/>
|
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
|
</behavior>
|
|
</serviceBehaviors>
|
|
|
|
</behaviors>
|
|
|
|
</system.serviceModel>
|
|
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
|
</startup>
|
|
|
|
</configuration>
|