{"id":55,"date":"2012-01-23T19:14:47","date_gmt":"2012-01-23T19:14:47","guid":{"rendered":"http:\/\/www.developercookies.net\/?p=55"},"modified":"2020-12-26T09:30:34","modified_gmt":"2020-12-26T09:30:34","slug":"full-duplex-wcf-connection","status":"publish","type":"post","link":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/","title":{"rendered":"Full Duplex WCF Verbindung"},"content":{"rendered":"<p>Implementing a Web Service with Windows Communication Foundation is really easy. You need only a few clicks for having fun and enjoying a cup of coffee after successfuel implementation.<\/p>\n<p>But what is, when you have the requirement for implementing a stable and fully duplex communication including the server may send indepently messages to any specific&nbsp;connected client at any time? The client and server should also detect broken connections and reconnect automatically. Thats a little more complex and you can not implement by one click. Too bad for enjoying your coffee in a few minutes.<\/p>\n<p>For illustration purposes I have created a sample project. The client may request at any time a &#8220;Hello World&#8221; from server. Every 30 seconds, the server sends a &#8220;Hello World&#8221; to every connected client. In this sample application you see the mechanism how you can implement a callback contract and a duplex communication.<!--more--><\/p>\n<p>The screenshot above shows the hosted server and three clients, which are connected to the server. They are hosted in a WPF-application and MVVM based on PRISM libraries:<\/p>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone size-full wp-image-56\" title=\"screenshot_wcf_helloworld\" src=\"http:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/screenshot_wcf_helloworld.jpg\" alt=\"\" width=\"601\" height=\"764\" srcset=\"https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/screenshot_wcf_helloworld.jpg 601w, https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/screenshot_wcf_helloworld-235x300.jpg 235w\" sizes=\"(max-width: 601px) 100vw, 601px\" \/><\/p>\n<p>The implementation has the following interfaces:<\/p>\n<pre class=\"brush:csharp\">using System;\r\nusing System.ServiceModel;\r\n\r\nnamespace Comm.Wcf.Interfaces\r\n{\r\n    \/\/\/ &lt;summary&gt;\r\n    \/\/\/   WCF interface for Data\r\n    \/\/\/ &lt;\/summary&gt;\r\n    [ServiceContract(\r\n        CallbackContract = typeof (IDataCallback),\r\n        SessionMode = SessionMode.Required)]\r\n    public interface IData\r\n    {\r\n        #region Methods\r\n\r\n        \/\/\/ &lt;summary&gt;\r\n        \/\/\/   Request alive round trip\r\n        \/\/\/ &lt;\/summary&gt;\r\n        \/\/\/ &lt;param name=\"id\"&gt; Unique identification number &lt;\/param&gt;\r\n        [OperationContract(IsOneWay = true)]\r\n        void RequestAliveRoundTrip(Guid id);\r\n\r\n        \/\/\/ &lt;summary&gt;\r\n        \/\/\/   Requests a \"hello world\" from server.\r\n        \/\/\/ &lt;\/summary&gt;\r\n        \/\/\/ &lt;param name=\"id\"&gt; Unique identification number &lt;\/param&gt;\r\n        [OperationContract(IsOneWay = true)]\r\n        void RequestHelloWorld(Guid id);\r\n\r\n        \/\/\/ &lt;summary&gt;\r\n        \/\/\/   Subscribe client\r\n        \/\/\/ &lt;\/summary&gt;\r\n        \/\/\/ &lt;param name=\"id\"&gt; Unique identification number &lt;\/param&gt;\r\n        [OperationContract(IsOneWay = true)]\r\n        void Subscribe(Guid id);\r\n\r\n        \/\/\/ &lt;summary&gt;\r\n        \/\/\/   Unsubscribe client\r\n        \/\/\/ &lt;\/summary&gt;\r\n        \/\/\/ &lt;param name=\"id\"&gt; Unique identification number &lt;\/param&gt;\r\n        [OperationContract(IsOneWay = true)]\r\n        void Unsubscribe(Guid id);\r\n\r\n        #endregion\r\n    }\r\n}<\/pre>\n<pre class=\"brush:csharp\">using System.ServiceModel;\r\n\r\nnamespace Comm.Wcf.Interfaces\r\n{\r\n    \/\/\/ &lt;summary&gt;\r\n    \/\/\/   WCF Interface for Data callback\r\n    \/\/\/ &lt;\/summary&gt;\r\n    public interface IDataCallback\r\n    {\r\n        #region Methods\r\n\r\n        \/\/\/ &lt;summary&gt;\r\n        \/\/\/   Alive round trip answer. This will be send for an each alive round trip request from the client side.\r\n        \/\/\/ &lt;\/summary&gt;\r\n        [OperationContract(IsOneWay = true)]\r\n        void SetAliveRoundTrip();\r\n\r\n        \/\/\/ &lt;summary&gt;\r\n        \/\/\/   Update \"hello world\"\r\n        \/\/\/ &lt;\/summary&gt;\r\n        \/\/\/ &lt;param name=\"helloWorld\"&gt; Hello world content with server time &lt;\/param&gt;\r\n        [OperationContract(IsOneWay = true)]\r\n        void UpdateHelloWorld(string helloWorld);\r\n\r\n        #endregion\r\n    }\r\n}<\/pre>\n<p>You can see for a fully duplex and asynchronous communication you will need to mark all operations as &#8220;OneWay&#8221;. If you have big files I recommend to transmit a separate service by a stream contract, because a stream needs &#8220;TwoWay&#8221;. If the transmission is complete you may mark the transmission by a seperate call.<\/p>\n<p>If you are a beginner in WCF you will see a lot of code lines which may a little bit confusing at first and are for a simple &#8220;Hello World&#8221; an overkill. But when you want to implement a stable application this project may be a good start for implementing your requirements.<\/p>\n<p>So, I gave you a short overview. Now you should be ready to <a href=\"http:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/WcfCallbackSample.zip\">download<\/a> the sample project. And enjoy your coffee&#8230;!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Implementing a Web Service with Windows Communication Foundation is really easy. You need only a few clicks for having fun and enjoying a cup of coffee after successfuel implementation. But what is, when you have the requirement for implementing a stable and fully duplex communication including the server may send indepently messages to any specific&nbsp;connected [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":505,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ngg_post_thumbnail":0,"footnotes":""},"categories":[10,3,7],"tags":[17,16,37,18,19,30,15],"class_list":["post-55","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c","category-wcf","category-wpf","tag-callback","tag-duplex","tag-featured","tag-mvvm","tag-prism","tag-wcf","tag-windows-communication-foundation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Full Duplex WCF connection - Developer Cookies Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Full Duplex WCF connection - Developer Cookies Blog\" \/>\n<meta property=\"og:description\" content=\"Implementing a Web Service with Windows Communication Foundation is really easy. You need only a few clicks for having fun and enjoying a cup of coffee after successfuel implementation. But what is, when you have the requirement for implementing a stable and fully duplex communication including the server may send indepently messages to any specific&nbsp;connected [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/\" \/>\n<meta property=\"og:site_name\" content=\"Developer Cookies Blog\" \/>\n<meta property=\"article:published_time\" content=\"2012-01-23T19:14:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-26T09:30:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/fiber-4814456_1920.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Peter\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Peter\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/\"},\"author\":{\"name\":\"Peter\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\"},\"headline\":\"Full Duplex WCF connection\",\"datePublished\":\"2012-01-23T19:14:47+00:00\",\"dateModified\":\"2020-12-26T09:30:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/\"},\"wordCount\":313,\"publisher\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\"},\"image\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2012\\\/01\\\/fiber-4814456_1920.jpg\",\"keywords\":[\"Callback\",\"Duplex\",\"Featured\",\"MVVM\",\"PRISM\",\"WCF\",\"Windows Communication Foundation\"],\"articleSection\":[\"C#\",\"WCF\",\"WPF\"],\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/\",\"url\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/\",\"name\":\"Full Duplex WCF connection - Developer Cookies Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2012\\\/01\\\/fiber-4814456_1920.jpg\",\"datePublished\":\"2012-01-23T19:14:47+00:00\",\"dateModified\":\"2020-12-26T09:30:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2012\\\/01\\\/fiber-4814456_1920.jpg\",\"contentUrl\":\"https:\\\/\\\/www.developercookies.net\\\/wp-content\\\/uploads\\\/2012\\\/01\\\/fiber-4814456_1920.jpg\",\"width\":1920,\"height\":1280},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/de\\\/full-duplex-wcf-connection\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.developercookies.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Full Duplex WCF connection\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#website\",\"url\":\"https:\\\/\\\/www.developercookies.net\\\/\",\"name\":\"Developer Cookies Blog\",\"description\":\"Recipes and tutorials for developers\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.developercookies.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.developercookies.net\\\/#\\\/schema\\\/person\\\/3ebc9e2aff87c249f1085b36ffd91613\",\"name\":\"Peter\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\",\"caption\":\"Peter\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Full Duplex WCF connection - Developer Cookies Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/","og_locale":"de_DE","og_type":"article","og_title":"Full Duplex WCF connection - Developer Cookies Blog","og_description":"Implementing a Web Service with Windows Communication Foundation is really easy. You need only a few clicks for having fun and enjoying a cup of coffee after successfuel implementation. But what is, when you have the requirement for implementing a stable and fully duplex communication including the server may send indepently messages to any specific&nbsp;connected [&hellip;]","og_url":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/","og_site_name":"Developer Cookies Blog","article_published_time":"2012-01-23T19:14:47+00:00","article_modified_time":"2020-12-26T09:30:34+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/fiber-4814456_1920.jpg","type":"image\/jpeg"}],"author":"Peter","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Peter","Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/#article","isPartOf":{"@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/"},"author":{"name":"Peter","@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613"},"headline":"Full Duplex WCF connection","datePublished":"2012-01-23T19:14:47+00:00","dateModified":"2020-12-26T09:30:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/"},"wordCount":313,"publisher":{"@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613"},"image":{"@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/#primaryimage"},"thumbnailUrl":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/fiber-4814456_1920.jpg","keywords":["Callback","Duplex","Featured","MVVM","PRISM","WCF","Windows Communication Foundation"],"articleSection":["C#","WCF","WPF"],"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/","url":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/","name":"Full Duplex WCF connection - Developer Cookies Blog","isPartOf":{"@id":"https:\/\/www.developercookies.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/#primaryimage"},"image":{"@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/#primaryimage"},"thumbnailUrl":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/fiber-4814456_1920.jpg","datePublished":"2012-01-23T19:14:47+00:00","dateModified":"2020-12-26T09:30:34+00:00","breadcrumb":{"@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/#primaryimage","url":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/fiber-4814456_1920.jpg","contentUrl":"https:\/\/www.developercookies.net\/wp-content\/uploads\/2012\/01\/fiber-4814456_1920.jpg","width":1920,"height":1280},{"@type":"BreadcrumbList","@id":"https:\/\/www.developercookies.net\/de\/full-duplex-wcf-connection\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.developercookies.net\/"},{"@type":"ListItem","position":2,"name":"Full Duplex WCF connection"}]},{"@type":"WebSite","@id":"https:\/\/www.developercookies.net\/#website","url":"https:\/\/www.developercookies.net\/","name":"Developer Cookies Blog","description":"Recipes and tutorials for developers","publisher":{"@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.developercookies.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":["Person","Organization"],"@id":"https:\/\/www.developercookies.net\/#\/schema\/person\/3ebc9e2aff87c249f1085b36ffd91613","name":"Peter","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g","caption":"Peter"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/8eec59bcecb6c1083084fcd3d11551d8c4451902fb594f87782fbda27fe8bd08?s=96&d=mm&r=g"}}]}},"_links":{"self":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts\/55","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/comments?post=55"}],"version-history":[{"count":11,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts\/55\/revisions"}],"predecessor-version":[{"id":506,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/posts\/55\/revisions\/506"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/media\/505"}],"wp:attachment":[{"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/media?parent=55"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/categories?post=55"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.developercookies.net\/de\/wp-json\/wp\/v2\/tags?post=55"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}