mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 01:01:58 +03:00
push notification helper library
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
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user