<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>[Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/88440/zigbee-problem-with-zcl-callback-handler-in-zigbee-and-thread-4-2-0</link><description>Hi guys, 
 So lately, I decided to update the sdk from 4.1.0 to 4.2.0 and there are some problem that I can not solve myself. So I use the macro ZB_ZCL_REGISTER_DEVICE_CB to register a device call back in 4.1.0 and now keeping it in 4.2.0. 
 But I have</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 21 Jul 2022 10:21:00 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/88440/zigbee-problem-with-zcl-callback-handler-in-zigbee-and-thread-4-2-0" /><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/378041?ContentTypeID=1</link><pubDate>Thu, 21 Jul 2022 10:21:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:731395b3-28ee-4ed0-939a-e9116b85cd14</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;Try the following code snippet&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;zb_uint8_t ep_handler(zb_bufid_t bufid)
{
    zb_zcl_parsed_hdr_t *cmd_info = ZB_BUF_GET_PARAM(bufid, zb_zcl_parsed_hdr_t);
 
    if (cmd_info-&amp;gt;cluster_id == ZB_ZCL_CLUSTER_ID_ON_OFF)
    {
        switch (cmd_info-&amp;gt;cmd_id)
        {
            case ZB_ZCL_CMD_ON_OFF_OFF_ID:
                NRF_LOG_INFO(&amp;quot;OFF cmd received&amp;quot;);
                break;
            case ZB_ZCL_CMD_ON_OFF_ON_ID:
                NRF_LOG_INFO(&amp;quot;ON cmd received&amp;quot;);
                break;
            case ZB_ZCL_CMD_ON_OFF_TOGGLE_ID:
                NRF_LOG_INFO(&amp;quot;TOGGLE cmd received&amp;quot;);
                break;
            default:
                NRF_LOG_ERROR(&amp;quot;UNKNOWN cmd received&amp;quot;);
                break;
        }
    }
 
    return ZB_FALSE;
}
 
...
 
ZB_AF_SET_ENDPOINT_HANDLER(HA_DIMMABLE_LIGHT_ENDPOINT, ep_handler);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;One note of warning: To make sure that the received command is correct you should also check:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;profile ID&lt;/li&gt;
&lt;li&gt;command direction&lt;/li&gt;
&lt;li&gt;if the command is manufacturer specific&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Let me know if this works or not!&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/377748?ContentTypeID=1</link><pubDate>Wed, 20 Jul 2022 02:45:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:52b6b148-a421-4a0a-9e3f-76de7eafb98d</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;So I did tried to use endpoint handler, I can get the on/off cmd but can not parse the message by zb_zcl_parsed_hdr_t * p_cmd_info = ZB_BUF_GET_PARAM(bufid, zb_zcl_parsed_hdr_t);&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When I tried to log the cmd, it just an increase number every time. Do you have any idea how this happen.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Tu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/377747?ContentTypeID=1</link><pubDate>Wed, 20 Jul 2022 02:36:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:441b6eed-4ccb-49ba-ae5a-1fac152fdc24</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;Hi AHuag,&lt;/p&gt;
&lt;p&gt;Thank you for your dedication, I will take a look at the &lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;components/zigbee/cli/zigbee_cli_cmd_attr_report.c&lt;/em&gt;&lt;span&gt;&lt;/span&gt;&amp;nbsp; and &lt;span&gt;&lt;/span&gt;&lt;em&gt;components/zigbee/cli/zigbee_cli_cmd_attr.c to see if I can change the zcl callback to endpoint handler&lt;/em&gt;&lt;span&gt;&lt;/span&gt;. But as far as I know if I use more than 1 endpoint for my application, I will have to set up a 4 handlers for it. Is it correct?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Tu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/377645?ContentTypeID=1</link><pubDate>Tue, 19 Jul 2022 13:14:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe954d34-6a34-49ba-bc33-80b29081e7b1</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi again,&lt;/p&gt;
[quote user="Tu Hoang"]I just found out that I can change the way the zcl callback is call for by modifying the corresponding file in Zboss so now the callback will be call whenever the command is arrive.[/quote]
&lt;p&gt;My colleague brought up a good point with regards to this. In case you are using the endpoint handler by changing the corresponding file Iwould like to point you towards the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;cli_agent_ep_handler_report()&lt;/b&gt;&amp;nbsp;in the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;components/zigbee/cli/zigbee_cli_cmd_attr_report.c&lt;/em&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;or&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;cli_agent_ep_handler_attr()&lt;/b&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;in&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;em&gt;components/zigbee/cli/zigbee_cli_cmd_attr.c&lt;/em&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;for example of how to use endpoint handler (registered by&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;ZB_AF_SET_ENDPOINT_HANDLER()&lt;/b&gt;). Changing &amp;quot;the corresponding file&amp;quot; is not great approach, to prevent unexpected behavior use endpoint handler.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/377487?ContentTypeID=1</link><pubDate>Tue, 19 Jul 2022 04:10:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e8bd5083-a8b6-4744-8c47-bf5f2c12be50</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I just found out that I can change the way the zcl callback is call for by modifying the corresponding file in Zboss so now the callback will be call whenever the command is arrive.&lt;/p&gt;
&lt;p&gt;Thank you very much for your help.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Tu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/377229?ContentTypeID=1</link><pubDate>Fri, 15 Jul 2022 14:17:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c00b9fa6-a605-4793-ab65-6189379293ea</guid><dc:creator>AHaug</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;Edvin is currently on vacation so I will relay this information from the ZigBee team related to this ticket&lt;/p&gt;
&lt;p&gt;That could be a quick fix, but maybe the following answer could clarify the issue for you&lt;/p&gt;
&lt;p&gt;Implementation of Home Automation Profile Specification logic was removed. This logic added dependency between On/Off and Level clusters, so changes in Level cluster were affecting the On/Off one. Now there is no such dependency. In case you were&amp;nbsp;referring to the callbacks that affects more more than single attribute - the &amp;quot;missing&amp;quot; callback could be a one for OnOff attribute, which value used to be changed after Level cluster commands were received.&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t directly link to changes in nRF5 SDK but similar changes are present in the NCS and can be seen here:&lt;br /&gt;&lt;a href="https://github.com/nrfconnect/sdk-nrf/commit/92c56d08ab01d6fb0368a57902e2e79e7461095d#diff-92c759bdfd46575513ee897f7fd0f2541e61fedb39b5d2b4412ee09347f908a5" rel="nofollow noopener noreferrer" target="_blank"&gt;https://github.com/nrfconnect/sdk-nrf/commit/92c56d08ab01d6fb0368a57902e2e79e7461095d#diff-92c759bdfd46575513ee897f7fd0f2541e61fedb39b5d2b4412ee09347f908a5&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/374817?ContentTypeID=1</link><pubDate>Thu, 30 Jun 2022 04:27:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3a6141af-f87c-406c-9277-7200e361a5f5</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;Hi Edvin,&lt;/p&gt;
&lt;p&gt;So I have just realize that I can just always set the value of on/off cluster to some random value other than 0 and 1 so every time I send something to the endpoint, the signal is received.&lt;/p&gt;
&lt;p&gt;For that I think is a quick fix for this problem.&lt;/p&gt;
&lt;p&gt;If there is something better to do please inform me,&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;HNT&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/374255?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2022 03:32:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ad90f8dc-9b34-40e5-bf99-0633b4527e0b</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;Hi Edvin,&lt;/p&gt;
&lt;p&gt;It is a long story, I have a server to turn on and off the light bulb with an interface in web. Every time I click at the button, the GUI will toggle the button and tell the coordinator to send on/off according to the before-clicking state of the bulb. Sometimes, when the coordinator can not reach the end devices, the state of the button and the state of the end device will not sync (the interface will the coordinator to send on/off when the device is already on/off respectively so no callbacks) and it cause the devices can not be control remotely.&amp;nbsp; So because this problem do not exist in the old sdk(4.1.0), the communication mechanism of the server and the devices are fixed and changing them to much will take a lot of time and thus cause a huge amount of problem to our company.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That is the reason why I want your help to have some methods to cope with the changes in the SDK and the problem I have just explained.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am looking forward to hearing from you.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;HNT&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/373960?ContentTypeID=1</link><pubDate>Thu, 23 Jun 2022 13:29:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:84af8690-22e3-4f1d-a0ac-5ef8520f9627</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;According to our Zigbee team, the zboss stack will not tell the application layer about these events if no changes is done in the end point. From an application point of view, I guess this is fine.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t really understand the issue here. Are you trying to set up some custom protocol on top of an on_off cluster? Is that why you need the &amp;quot;duplicate&amp;quot; events?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/372071?ContentTypeID=1</link><pubDate>Mon, 13 Jun 2022 09:40:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:526fcc9c-6eea-4af6-87ee-8a1e124c5c60</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;Thank you for your answer and sorry for the late reply,&lt;/p&gt;
&lt;p&gt;So this behavior can be easily seen by using CLI dongle and a NRF_dev board running example from the two light bulb example. You can just add some log in the zcl handler and using the cli dongle to send on/off command. You can tried to send 2-3 off command to see that only the first off command will trigger the callback&lt;/p&gt;
&lt;p&gt;So if nothing you can do to change the SDK, is there any other way I can use to fix this behavior like changing to another command or something.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Tu&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/371173?ContentTypeID=1</link><pubDate>Tue, 07 Jun 2022 13:29:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ef1eee0-ae1b-44cc-8c45-b2fd60e202bf</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Is this seen in e.g. the light bulb examples in v4.1.0 and 4.2.0? It is still a bit vague to me. If not, can you zip and send some examples that I can use to replicate this on a few DKs?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Disclaimer:&lt;/p&gt;
&lt;p&gt;If the behavior did actually change, I guess there isn&amp;#39;t much we can do, since the nRF5 SDK for Thread and Zigbee is in maintenance mode (meaning there will not be any updates unless there are crucial security bugs that need patching). All future development is on the nRF Connect SDK (NCS).&lt;/p&gt;
[quote user="Tu Hoang"]But the problem is that after a reset, the value on/off in the cluster attribute is return to 0.[/quote]
&lt;p&gt;So this was not the case in 4.1.0? If it was not, then I assume that this must have been stored in flash by the zboss stack (but I don&amp;#39;t think it is).&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/370975?ContentTypeID=1</link><pubDate>Mon, 06 Jun 2022 02:37:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:55c0e125-b644-4208-8353-3a75bb6a551e</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;Hi Edvin,&lt;/p&gt;
&lt;p&gt;Sorry for the late response and making the last reply unclear&lt;/p&gt;
&lt;p&gt;I do not use binding and configure report but use API such as to create a report message and send.&lt;/p&gt;
&lt;p&gt;So in my system I have a set of buttons; each goes with one endpoint and have an on/off cluster. If I press a button I want it to send an on/off to the coordinator and the coordinator will work as a gateway to send out the data through Ethernet to the server. I also have an app to control the button through the internet by using the data in the server. Because I form my own package report without configure (using marcro like ZB_ZCL_START_PACKET, ZB_ZCL_CONSTRUCT_GENERAL_COMMAND_REQ_FRAME_CONTROL, ZB_ZCL_CONSTRUCT_COMMAND_HEADER, ZB_ZCL_PACKET_PUT_DATA8 and ZB_SEND_SHORT_CMD) I usually just send the message without making changes in cluster attribute. This will make the data on the server and the attribute value in devices go un-sync. So there will be cases when the attribute is off/on and the command send to the device is also off/on. The call back was declared with ZB_ZCL_REGISTER_DEVICE_CB as usual. In 4.1.0, the callback register by that macro is always called whenever there are a on/off command. But from what I see, in 4.2.0, The callback will only called when the value in on/off command change the attribute in device cluster. If the value in that endpoint is off and I send an off command to it , it will not change anything thus the callback is not triggered. The same case goes with on. So what I did is to add ZB_ZCL_SET_ATTRIBUTE to everytime I press the buttons.&lt;/p&gt;
&lt;p&gt;But the problem is that after a reset, the value on/off in the cluster attribute is return to 0. What I ask is that is there any way I can persist the value on every reset without initiate a new regions in Fds.&amp;nbsp; Also, Is there any way I can get the callback to call every time.&lt;/p&gt;
&lt;p&gt;Thank you and looking forward for your answer,&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Tu&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/370331?ContentTypeID=1</link><pubDate>Wed, 01 Jun 2022 06:28:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d2e372a7-d78b-42c0-89bb-9288b8b4345b</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Tu,&lt;/p&gt;
&lt;p&gt;It is not clear to me what you used to do and what you have to do now. Can you explain in detail how you used to change the value, which doesn&amp;#39;t work anymore. What API did you use?&lt;/p&gt;
[quote user="Tu Hoang"]In the last SDK version 4.1.0 I do not need to set the value in the cluster but looks like in 4.2.0 your developers have made some changes so now the on/off command is only callback when the value to change is different from the value in the command[/quote]
&lt;p&gt;How did you do it before?&lt;/p&gt;
[quote user="Tu Hoang"]But I have one more problem, after reset does the value that I use ZB_ZCL_SET_ATTRIBUTE will persist since when I reset the device the issue happen again.[/quote]
&lt;p&gt;Can you explain what you mean by this? This is not clear to me.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/370313?ContentTypeID=1</link><pubDate>Wed, 01 Jun 2022 02:12:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:98e3cff8-04ad-4ae2-bb3a-04ff33043c7a</guid><dc:creator>Tu Hoang</dc:creator><description>&lt;p&gt;Hi Edvin,&lt;/p&gt;
&lt;p&gt;Well I have just figured it out that I need to use this marco ZB_ZCL_SET_ATTRIBUTE to set the cluster on/off value correspondingly whenever I change the state with the button so that when the on/off command is receive it will call the zcl callback function.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the last SDK version 4.1.0 I do not need to set the value in the cluster but looks like in 4.2.0 your developers have made some changes so now the on/off command is only callback when the value to change is different from the value in the command. Now everything works as normal.&lt;/p&gt;
&lt;p&gt;But I have one more problem, after reset does the value that I use ZB_ZCL_SET_ATTRIBUTE will persist since when I reset the device the issue happen again.&lt;/p&gt;
&lt;p&gt;I am look forward to hearing from you.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Tu&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: [Zigbee] Problem with Zcl callback handler in zigbee and thread 4.2.0</title><link>https://devzone.nordicsemi.com/thread/370258?ContentTypeID=1</link><pubDate>Tue, 31 May 2022 13:57:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4fa82e9b-1a79-40d3-9a6d-277f30ffbfc3</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello Tu,&lt;/p&gt;
&lt;p&gt;This is not something that I have seen reported before. Do you have some application that I can use to replicate this behavior? Or did you just use one of the already existing examples?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>