<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic [Resolved]: Exception RPC_E_SERVERFAULT(0x80010105) in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383543#M10158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Richard,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your valuable suggestions.Finally i got the solution to resolve this issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As discuss,invoked method on main thread using &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;this.Invoke((MethodInvoker)delegate { MethodName(); });&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Before invoking method,Thread state was MTA and After invoke : COM STA and code starts working.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prashant.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 May 2013 07:49:05 GMT</pubDate>
    <dc:creator>prashantk</dc:creator>
    <dc:date>2013-05-29T07:49:05Z</dc:date>
    <item>
      <title>Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through TCP</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383532#M10147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to add ArcGIS Map Service into ArcDesktop.I have implemented the code on ESRI command and is working fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Same code is not working on below scenarios,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Receiving data through TCP duplex communication channel(Policy server) and on message receive event,execute the add layer code.. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Receiving data from clipbard.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On both cases i am removing manual button click event to add data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Processing of data starts on event raised from TCP or Clipbord in Arcmap environment(C# Arcobject).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;System is throwing com exception in below step.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 map.AddLayer(layer); 

Error ...
ESRI.ArcGIS.Carto 
Message = "The server threw an exception. (Exception from HRESULT: &lt;STRONG&gt;0x80010105&lt;/STRONG&gt; (RPC_E_SERVERFAULT))"
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be appreciated,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prashant&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:24:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383532#M10147</guid>
      <dc:creator>prashantk</dc:creator>
      <dc:date>2021-12-12T16:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383533#M10148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is your code executing on a worker thread?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If so then you might try executing it on the main thread.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 May 2013 20:03:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383533#M10148</guid>
      <dc:creator>RichardWatson</dc:creator>
      <dc:date>2013-05-19T20:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383534#M10149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Richard,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes,my code is running under "Working thread with MTA ApartmentState".I tried using background worker,Timer,New thread but no success. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you please explain how to run worker thread into main thread in ArcMap environment.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prashant&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 11:14:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383534#M10149</guid>
      <dc:creator>prashantk</dc:creator>
      <dc:date>2013-05-22T11:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383535#M10150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ArcObjects are pure COM STA, i.e. if you access them from a thread then that thread must be STA.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If that doesn't work for you then try to force calls to the main thread.&amp;nbsp; Google on ".net invoke on ui thread" to see how to do that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 11:42:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383535#M10150</guid>
      <dc:creator>RichardWatson</dc:creator>
      <dc:date>2013-05-22T11:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383536#M10151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Richard,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to run the code on STA thread but still getting same error while adding layer (map.addlayer(ILayer)) method.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have started new thread with STA apartment state and i before adding to layer checked thread property using &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Thread _cThread =&amp;nbsp; Thread.CurrentThread;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thread is running under ApartmentState.STA but still getting same error.I am using below code to start new thread.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; Thread _newThread = new Thread(ThreadStart);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _newThread.SetApartmentState(ApartmentState.STA);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _newThread.Start();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _newThread.Join();
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:39:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383536#M10151</guid>
      <dc:creator>prashantk</dc:creator>
      <dc:date>2021-12-11T17:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383537#M10152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you can't get this to work on a worker thread then marshal the call from the worker thread to the main thread and do it there.&amp;nbsp; It is hard to provide better advice because I can't see your code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't know how to do this then Google on something like "c# invoke method on main thread".&amp;nbsp; This topic has been widely discussed so you will find that you have many options.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 10:48:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383537#M10152</guid>
      <dc:creator>RichardWatson</dc:creator>
      <dc:date>2013-05-23T10:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383538#M10153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Richard,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your quick reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have created one static class with event and thread,Using this class i am invoking event the main thread.Thread is running on STA apartment state.But still getting same error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please find the attached sample code to reproduce the error(Invoking on UI thread not added).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In ClipBoardHandler.cs ,AddWebServiceLayer() method is throwing exception on&amp;nbsp; pMap.AddLayer(srvLayer) step.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prashant&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2013 04:52:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383538#M10153</guid>
      <dc:creator>prashantk</dc:creator>
      <dc:date>2013-05-24T04:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383539#M10154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't really understand what you are doing here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is the function ClipBoardHandler::ReadClipboardData called on the main thread?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't know then set a breakpoint and see.&amp;nbsp; You can also get the thread identifier in code and log it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why are you even creating another thread in this function?&amp;nbsp; This confuses me because you create it and then wait on it.&amp;nbsp; What value did the thread add?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You are accessing IApplication from a worker thread which I believe is the source of your problem.&amp;nbsp; The fact that the worker thread is COM MTA does not help.&amp;nbsp; DO NOT PASS ArcObject across threads!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2013 12:01:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383539#M10154</guid>
      <dc:creator>RichardWatson</dc:creator>
      <dc:date>2013-05-24T12:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383540#M10155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't really understand what you are doing here.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ans: Attached sample code is to reproduce the error.Trying to replicate real scenario with the simple code&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is the function ClipBoardHandler::ReadClipboardData called on the main thread?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ans: Yes.To reproduce error,i have started thread MTA thread (MTA)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't know then set a breakpoint and see. You can also get the thread identifier in code and log it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why are you even creating another thread in this function? This confuses me because you create it and then wait on it. What value did the thread add?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ans: I am using Messaging service to communicate between web application and ArcMap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After starting communication between Web and Desktop application,I received data in desktop application listener.Default listener method is running under MTA thread and the application starts throwing error. So i have created another thread function&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You are accessing IApplication from a worker thread which I believe is the source of your problem. The fact that the worker thread is COM MTA does not help. DO NOT PASS ArcObject across threads!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ans: In actual code i am not passing ArcObject across threads.I tried to access worker thread on main thread but no success,Still facing same problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prashant&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 May 2013 05:15:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383540#M10155</guid>
      <dc:creator>prashantk</dc:creator>
      <dc:date>2013-05-27T05:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383541#M10156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you can post a simple example which reproduces the problem, only uses STA threads to access ArcObjects, and does not access ArcObjects across threads (i.e. only accesses them on the thread that they were created on) then please do so.&amp;nbsp; No promises, but I'll look at it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry, but I am out of suggestions.&amp;nbsp; Sometimes it is difficult to help others via forum messages and email.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 May 2013 10:17:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383541#M10156</guid>
      <dc:creator>RichardWatson</dc:creator>
      <dc:date>2013-05-27T10:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Exception RPC_E_SERVERFAULT(0x80010105) : While adding ArcGIS Map Service through</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383542#M10157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Richard for your quick reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I will let you know asap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prashant.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 May 2013 10:40:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383542#M10157</guid>
      <dc:creator>prashantk</dc:creator>
      <dc:date>2013-05-27T10:40:33Z</dc:date>
    </item>
    <item>
      <title>[Resolved]: Exception RPC_E_SERVERFAULT(0x80010105)</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383543#M10158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Richard,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your valuable suggestions.Finally i got the solution to resolve this issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As discuss,invoked method on main thread using &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;this.Invoke((MethodInvoker)delegate { MethodName(); });&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Before invoking method,Thread state was MTA and After invoke : COM STA and code starts working.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prashant.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 May 2013 07:49:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/exception-rpc-e-serverfault-0x80010105-while/m-p/383543#M10158</guid>
      <dc:creator>prashantk</dc:creator>
      <dc:date>2013-05-29T07:49:05Z</dc:date>
    </item>
  </channel>
</rss>

