{"id":29654,"date":"2022-11-25T18:27:51","date_gmt":"2022-11-25T12:57:51","guid":{"rendered":"https:\/\/blazeclan.com\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/"},"modified":"2023-03-10T14:44:10","modified_gmt":"2023-03-10T09:14:10","slug":"xmpp-for-dummies-part-4-diving-deep-into-stanzas","status":"publish","type":"post","link":"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/","title":{"rendered":"XMPP for Dummies- Part 4- Diving Deep into Stanzas"},"content":{"rendered":"<h2><strong><span>Types of Stanzas<\/span><\/strong><\/h2>\n<p>Prolongation of the&nbsp;previous Blog Post are the different stanzas described in detail:<\/p>\n<h4><strong><span>1.Presence Stanza ( &lt;presence\/&gt; )<\/span><\/strong><\/h4>\n<p>The presence stanza, as described by the name, shows entities presence. In simple words, this stanza shows whether the person we want to chat with is online or offline. As per the RFC ( xmpp.org, rfc3920), it is described as an \u201celement that can be seen as a basic broadcast or &#8220;publish-subscribe&#8221; mechanism, whereby multiple entities receive information about an entity to which they have subscribed \u201d.<\/p>\n<p>&#8220;Head Scratcher&#8221;: What is a subscription??<\/p>\n<p>In order to receive, presence information (whether the user is online or not ) about other users, a user must have the presence subscription of the other users. So, if user1 wants to receive presence information about user2 and user3, then user1 must have a presence subscription for user2 and user3. Subscriptions are established using &lt;presence&gt; stanzas.<\/p>\n<p>As an example if user1 wants to subscribe to user2, user1 will send the following presence stanza:<\/p>\n<p><em>&lt;presence from=\u2019user1@example.com\u2019<\/em><\/p>\n<p><em>to=\u2019user2@example.com\u2019<\/em><\/p>\n<p><em>type=\u2019subscribe\u2019\/&gt;<\/em><\/p>\n<p><em>And user2 will accept it using,<\/em><\/p>\n<p><em>&lt;presence from=\u2019user2@example.com\u2019<\/em><\/p>\n<p><em>to=\u2019user1@example.com\u2019<\/em><\/p>\n<p><em>type=\u2019subscribed\u2019\/&gt;<\/em><\/p>\n<p>Moving &nbsp;onto the explanation of how the &lt;presence&gt; stanza works:<\/p>\n<p>Lets assume there are 3 users with the following JIDs, userone@example.com , usertwo@example.com, userthree@example.com<\/p>\n<p>First let\u2019s see what a presence stanza looks like!! The simplest form of a presence stanza looks like this- &lt;presence\/&gt;<\/p>\n<p>If a client sends this stanza to the server, the server publishes the users availability to all the subscribers of that client ( \u201cpublish-subscribe\u201d mechanism). So if userone@example.com, sends a &lt;presence\/&gt; stanza to the server, all the users who are subscribed to userone@example.com will see userone&nbsp;as online.<\/p>\n<p>Similarly, if userone@example.com sends a &lt;presence type=\u2019unavailable\u2019\/&gt; stanza to the server, the rest of the subscribed users will find&nbsp; userone@example.com as offline. This explains how our IM clients show us the user\u2019s availability.&nbsp;<\/p>\n<p>Also there are times where messages in the chat clients, like \u201cbusy\u201d,\u201daway\u201d,\u201ddnd\u201d &amp; many more including&nbsp; the very famous \u201cstatus\u201d in WhatsApp are seen!! \ud83d\ude00 \ud83d\ude00 . Let\u2019s see how we can establish that using these presence stanzas.<\/p>\n<p>The presence stanza, consists of two extra child elements (optional), namely, <em>&lt;status&gt;,&lt;show&gt;<\/em>.<\/p>\n<ul>\n<li>The &lt;status&gt; child can contain any human-readable string, like the status that we put up on WhatsApp!!<\/li>\n<\/ul>\n<p>e.g. <em>&lt;status&gt; XMPP rocks!! &lt;\/status&gt;<\/em><\/p>\n<ul>\n<li>&nbsp;The &lt;show&gt; child is mainly used to describe the availability of the user. It only contains away , chat , dnd , and xa values<\/li>\n<\/ul>\n<p><em>&lt;show&gt; away &lt;\/show&gt;<\/em><\/p>\n<p>So the whole presence stanza when put together, &nbsp;would look something like<\/p>\n<p><em>&lt;presence&gt;<\/em><\/p>\n<p><em>&lt;show&gt;away&lt;\/show&gt;<\/em><\/p>\n<p><em>&lt;status&gt;XMPP rocks!! &lt;\/status<\/em><\/p>\n<p><em>&lt;\/presence&gt;<\/em><\/p>\n<h4><strong><span>2. Message Stanza (&lt;message\/&gt;)<\/span><\/strong><\/h4>\n<p>This stanza is used to send the data\/chat between the users. It&nbsp;looks something<\/p>\n<p><em>&lt;message from=\u2019abc@example.com\u2019<\/em><\/p>\n<p><em> to=\u2019xyz@example.com\u2019<\/em><\/p>\n<p><em>type=\u2019chat\u2019&gt;<\/em><\/p>\n<p><em> &lt;body&gt;hey,i am learning about XMPP&lt;\/body&gt;<\/em><\/p>\n<p><em>&lt;\/message&gt;<\/em><\/p>\n<p>Petite explanation, the child element &lt;body&gt; consists the actual chat we type and send, the \u201cto\u201d and the \u201ctype\u201d attribute which has already been discussed !!<\/p>\n<h4><strong><span>3.IQ stanza(&lt;iq\/&gt;)&nbsp;<\/span><\/strong><\/h4>\n<p>The IQ stanza is mainly used for the purpose of querying about some kind of information. For example: whenever you login to your IM client, ou always see a list of &nbsp;users with whom you can chat, which shows the availability status of the user on either left\/right side of your screen in most cases ( this list is called the \u201croster\u201d ).<\/p>\n<p>Now the question arises -how does the client come to know of your roster list?? For this kind of info, it needs to first query the server which is accomplished using this IQ stanza.<\/p>\n<p>As an example,<\/p>\n<p><em>&lt;iq from=\u2019abc@example.com\u2019<\/em><\/p>\n<p><em>type=\u2019get\u2019<\/em><\/p>\n<p><em>id=\u2019xyz123\u2019&gt;<\/em><\/p>\n<p><em>&lt;query xmlns=\u2019jabber:iq:roster\u2019\/&gt;<\/em><\/p>\n<p>&lt;\/iq&gt;<\/p>\n<p>When this stanza is received by the server, the server will respond with \u201cabc@example.com&#8217;s\u201d roster list.<\/p>\n<p><em>&lt;iq to=\u2019abc@example.com\u2019<\/em><\/p>\n<p><em>type=\u2019result\u2019<\/em><\/p>\n<p><em>id=\u2019xyz123\u2019&gt;<\/em><\/p>\n<p><em>&lt;query xmlns=\u2019jabber:iq:roster\u2019&gt;<\/em><\/p>\n<p>&lt;item jid=&#8217;efg@example.com&#8217; name=\u2019EFG\u2019\/&gt;<\/p>\n<p>&lt;item jid=&#8217;hij&#8217;@ example.com&#8217; name=\u2019HIJ\u2019\/&gt;<\/p>\n<p><em>&lt;\/query&gt;<\/em><\/p>\n<p><em>&lt;\/iq&gt;<\/em><\/p>\n<p><strong>Note: When using the IQ stanza, the \u201cid\u201d and the \u201ctype\u201d attributes are mandatory.<\/strong><\/p>\n<p>\u201ctype\u201d attribute values:<\/p>\n<ul>\n<li>get &#8212; Is a request for information or requirements.<\/li>\n<li>set &#8212; Provides required data, sets new values, or replaces existing values.<\/li>\n<li>result &#8212; Is a response to a successful get or set request.<\/li>\n<li>error &#8212; An error has occurred regarding processing or delivery of a previously-sent get or set<\/li>\n<\/ul>\n<p>Coming to the end about stanzas, We now know the basics of stanzas, and are now ready to build our own chat client. Continuation of the blog will describe-<\/p>\n<ul>\n<li>Setting up of XMPP Server (Ejabbered)<\/li>\n<li>Building the Chat Client<\/li>\n<\/ul>\n<p>Related Links for the Blog Post:<\/p>\n<p>XMPP for Dummies- A Beginners Guide to create your own Chat Application<\/p>\n<p>XMPP for Dummies- Part 2-&nbsp;A 4 Step Life Cycle to Create Your Own Chatter!<\/p>\n<p>XMPP for Dummies- Part 3- Stanzas in Detail<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Types of Stanzas Prolongation of the&nbsp;previous Blog Post are the different stanzas described in detail: 1.Presence Stanza ( &lt;presence\/&gt; ) The presence stanza, as described by the name, shows entities presence. In simple words, this stanza shows whether the person we want to chat with is online or offline. As per the RFC ( xmpp.org, [&hellip;]<\/p>\n","protected":false},"author":192,"featured_media":17276,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[914],"tags":[],"class_list":["post-29654","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>XMPP for Dummies- Part 4- Diving Deep into Stanzas - Blazeclan<\/title>\n<meta name=\"description\" content=\"Types of Stanzas - Prolongation of the previous Blog Post are the different stanzas described in detail:\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"XMPP for Dummies- Part 4- Diving Deep into Stanzas - Blazeclan\" \/>\n<meta property=\"og:description\" content=\"Types of Stanzas - Prolongation of the previous Blog Post are the different stanzas described in detail:\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/\" \/>\n<meta property=\"og:site_name\" content=\"Blazeclan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/blazeclan.hq\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-25T12:57:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-10T09:14:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Team Blazeclan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:site\" content=\"@blazeclan_hq\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team Blazeclan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/\"},\"author\":{\"name\":\"Team Blazeclan\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8\"},\"headline\":\"XMPP for Dummies- Part 4- Diving Deep into Stanzas\",\"datePublished\":\"2022-11-25T12:57:51+00:00\",\"dateModified\":\"2023-03-10T09:14:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/\"},\"wordCount\":923,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#organization\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png\",\"articleSection\":[\"Cloud\"],\"inLanguage\":\"en-IN\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/\",\"url\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/\",\"name\":\"XMPP for Dummies- Part 4- Diving Deep into Stanzas - Blazeclan\",\"isPartOf\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png\",\"datePublished\":\"2022-11-25T12:57:51+00:00\",\"dateModified\":\"2023-03-10T09:14:10+00:00\",\"description\":\"Types of Stanzas - Prolongation of the previous Blog Post are the different stanzas described in detail:\",\"breadcrumb\":{\"@id\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#breadcrumb\"},\"inLanguage\":\"en-IN\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-IN\",\"@id\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png\",\"width\":1650,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blazeclan.com\/india\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"XMPP for Dummies- Part 4- Diving Deep into Stanzas\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blazeclan.com\/india\/#website\",\"url\":\"https:\/\/blazeclan.com\/india\/\",\"name\":\"Blazeclan\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blazeclan.com\/india\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-IN\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blazeclan.com\/india\/#organization\",\"name\":\"Blazeclan\",\"url\":\"https:\/\/blazeclan.com\/india\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-IN\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"contentUrl\":\"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg\",\"caption\":\"Blazeclan\"},\"image\":{\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/blazeclan.hq\/\",\"https:\/\/x.com\/blazeclan_hq\",\"https:\/\/www.instagram.com\/blazeclantechnologies\/\",\"https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/\",\"https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8\",\"name\":\"Team Blazeclan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-IN\",\"@id\":\"https:\/\/blazeclan.com\/india\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g\",\"caption\":\"Team Blazeclan\"},\"sameAs\":[\"http:\/\/localhost\/ps-local-wp\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"XMPP for Dummies- Part 4- Diving Deep into Stanzas - Blazeclan","description":"Types of Stanzas - Prolongation of the previous Blog Post are the different stanzas described in detail:","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:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/","og_locale":"en_US","og_type":"article","og_title":"XMPP for Dummies- Part 4- Diving Deep into Stanzas - Blazeclan","og_description":"Types of Stanzas - Prolongation of the previous Blog Post are the different stanzas described in detail:","og_url":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/","og_site_name":"Blazeclan","article_publisher":"https:\/\/www.facebook.com\/blazeclan.hq\/","article_published_time":"2022-11-25T12:57:51+00:00","article_modified_time":"2023-03-10T09:14:10+00:00","og_image":[{"width":1650,"height":680,"url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png","type":"image\/png"}],"author":"Team Blazeclan","twitter_card":"summary_large_image","twitter_creator":"@blazeclan_hq","twitter_site":"@blazeclan_hq","twitter_misc":{"Written by":"Team Blazeclan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#article","isPartOf":{"@id":"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/"},"author":{"name":"Team Blazeclan","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8"},"headline":"XMPP for Dummies- Part 4- Diving Deep into Stanzas","datePublished":"2022-11-25T12:57:51+00:00","dateModified":"2023-03-10T09:14:10+00:00","mainEntityOfPage":{"@id":"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/"},"wordCount":923,"commentCount":0,"publisher":{"@id":"https:\/\/blazeclan.com\/india\/#organization"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png","articleSection":["Cloud"],"inLanguage":"en-IN","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blazeclan.com\/india\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/","url":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/","name":"XMPP for Dummies- Part 4- Diving Deep into Stanzas - Blazeclan","isPartOf":{"@id":"https:\/\/blazeclan.com\/india\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage"},"image":{"@id":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage"},"thumbnailUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png","datePublished":"2022-11-25T12:57:51+00:00","dateModified":"2023-03-10T09:14:10+00:00","description":"Types of Stanzas - Prolongation of the previous Blog Post are the different stanzas described in detail:","breadcrumb":{"@id":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#breadcrumb"},"inLanguage":"en-IN","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/"]}]},{"@type":"ImageObject","inLanguage":"en-IN","@id":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#primaryimage","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2014\/09\/xmpp-part4-2.png","width":1650,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/blazeclan.com\/blog\/xmpp-for-dummies-part-4-diving-deep-into-stanzas\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blazeclan.com\/india\/"},{"@type":"ListItem","position":2,"name":"XMPP for Dummies- Part 4- Diving Deep into Stanzas"}]},{"@type":"WebSite","@id":"https:\/\/blazeclan.com\/india\/#website","url":"https:\/\/blazeclan.com\/india\/","name":"Blazeclan","description":"","publisher":{"@id":"https:\/\/blazeclan.com\/india\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blazeclan.com\/india\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-IN"},{"@type":"Organization","@id":"https:\/\/blazeclan.com\/india\/#organization","name":"Blazeclan","url":"https:\/\/blazeclan.com\/india\/","logo":{"@type":"ImageObject","inLanguage":"en-IN","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/","url":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","contentUrl":"https:\/\/blazeclan.com\/wp-content\/uploads\/2024\/10\/ITCI-Blazeclan_logo.svg","caption":"Blazeclan"},"image":{"@id":"https:\/\/blazeclan.com\/india\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/blazeclan.hq\/","https:\/\/x.com\/blazeclan_hq","https:\/\/www.instagram.com\/blazeclantechnologies\/","https:\/\/www.linkedin.com\/company\/blazeclan-technologies\/","https:\/\/www.youtube.com\/channel\/UCCKF4Lcbtus-pUoZr7Lxrow"]},{"@type":"Person","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/person\/779910eccddff4a1ea6663b6bfb271e8","name":"Team Blazeclan","image":{"@type":"ImageObject","inLanguage":"en-IN","@id":"https:\/\/blazeclan.com\/india\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a43c1fa01bb3c7e839254c9084bf11ed422d7e633231f9e935096045af416ba2?s=96&d=mm&r=g","caption":"Team Blazeclan"},"sameAs":["http:\/\/localhost\/ps-local-wp"]}]}},"_links":{"self":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/posts\/29654","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/users\/192"}],"replies":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/comments?post=29654"}],"version-history":[{"count":0,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/posts\/29654\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/media\/17276"}],"wp:attachment":[{"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/media?parent=29654"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/categories?post=29654"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blazeclan.com\/india\/wp-json\/wp\/v2\/tags?post=29654"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}