<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7856824046237493492</id><updated>2012-02-16T20:33:35.051+05:30</updated><category term='Fedora'/><category term='and cannot be requested'/><category term='Windows'/><category term='The file  has not been pre-compiled'/><category term='Visual Web Developer 2005 Express Edition is waiting for an internal operation to complete. If you regularly encounter this delay during normal usage'/><category term='Linux'/><category term='Compilation error  CS0433: The type  exists in both'/><category term='Comparison'/><category term='BC30451 type not declared'/><title type='text'>My Code Experience</title><subtitle type='html'>By Rajin Kumar</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mysoftcode.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mysoftcode.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>വായാടി മലയാളി</name><uri>http://www.blogger.com/profile/05471259455022145807</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7856824046237493492.post-9202436928420407286</id><published>2009-10-15T13:15:00.002+05:30</published><updated>2009-12-09T23:28:09.820+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Compilation error  CS0433: The type  exists in both'/><title type='text'>Compilation error  CS0433: The type  exists in both</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Compilation error  CS0433: The type  exists in both&lt;/span&gt;&lt;br /&gt;Error Message :-&lt;br /&gt;The type TypeName1 exists in both TypeName2 and TypeName3&lt;br /&gt;Problem :- When we try to compile our ASP.NET site, sometimes it throws the error message something like&lt;br /&gt;&lt;blockquote&gt;c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\myapp\6990&lt;br /&gt;f87a\730687aa\App_Web_em-vsrux.6.cs(1698): error CS0433: The type 'ASP.leftMenu'&lt;br /&gt;exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET&lt;br /&gt;Files\myapp\6990f87a\730687aa\App_Web_rr7zh4b1.dll' and 'c:\WINDOWS\Microsoft.N&lt;br /&gt;ET\Framework\v2.0.50727\Temporary ASP.NET Files\myapp\6990f87a\730687aa\App_Web_16rxjped.dll'&lt;/blockquote&gt;&lt;br /&gt;I searched it for solutions but most of the site reefers it as a known bug no apparent solution. &lt;br /&gt;&lt;ul&gt;&lt;li&gt;Microsoft solution :-Two different assemblies referenced in your application contain the same namespace and type, which produces ambiguity.To resolve this error, use the alias feature of the /reference (Import Metadata) (C# Compiler Options) compiler option or do not reference one of your assemblies.This is mostly likely due to a known bug in the ASP.NET compiler involving directory level circular references&lt;/li&gt;&lt;li&gt;Another solution is some sites adding batch="false" and debug="false" attributes to the &lt;compilation&gt; element in web.config.But there are warnings it may create the following problems&lt;/compilation&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ol&gt;&lt;li&gt;&lt;compilation&gt;1) The compilation of ASP.NET pages takes longer (since some batch optimizations are disabled)&lt;/compilation&gt;&lt;/li&gt;&lt;li&gt;&lt;compilation&gt;2) Code can execute slower (since some additional debug paths are enabled)&lt;/compilation&gt;&lt;/li&gt;&lt;li&gt;&lt;compilation&gt;3) Much more memory is used within the application at runtime&lt;/compilation&gt;&lt;/li&gt;&lt;li&gt;&lt;compilation&gt;4) Scripts and images downloaded from the WebResources.axd handler are not cached&lt;/compilation&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;compilation&gt;III.    Another solution I found is changing something in the control code which referred in the error message, save and compile again. It solved the problem at times.&lt;/compilation&gt;&lt;/li&gt;&lt;li&gt;&lt;compilation&gt;IV.    One solution is there goto "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files" and remove the folder named your project name(but you have to stop aspnet_wp process before deleting everything in the folder. It worked fine occasionally&lt;/compilation&gt;&lt;/li&gt;&lt;/ul&gt;&lt;compilation&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Permanent solution to Compiler Error CS0433&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I verified the error message. The type 'ASP.leftMenu'  is a User Control(.ascx) used for menu creation for every page. In our site the same menu control created in different directories for different purposes.&lt;br /&gt;&lt;br /&gt;On top of any menu control there is one line&lt;br /&gt;"&lt;%@ Control Language="C#" ClassName="leftMenu" %&gt;&lt;br /&gt;The class name "leftMenu" is repeated in every control files. I replaced class name with unique names. It solved the problem forever.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Normally this problem occurs when more than one dll contains the same exact class reference. I can explain some condition. I have one class file in my project and later I want to modify the same file. In normal practice I rename the file to something name_old.cs and modify the orginal name.cs. But the two files will have the same exact namespace as well as class definition. We may not notice the problem. But when we try to compile or run the project, it will display error all the places where we referred the class.&lt;br /&gt;&lt;br /&gt;You can eliminate this error by checking the same reference in more than one file.&lt;/compilation&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7856824046237493492-9202436928420407286?l=mysoftcode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mysoftcode.blogspot.com/feeds/9202436928420407286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7856824046237493492&amp;postID=9202436928420407286' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/9202436928420407286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/9202436928420407286'/><link rel='alternate' type='text/html' href='http://mysoftcode.blogspot.com/2009/10/compilation-error-cs0433-type-exists-in.html' title='Compilation error  CS0433: The type  exists in both'/><author><name>വായാടി മലയാളി</name><uri>http://www.blogger.com/profile/05471259455022145807</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7856824046237493492.post-7546384348543164610</id><published>2008-08-27T09:36:00.002+05:30</published><updated>2008-09-16T15:07:48.010+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Web Developer 2005 Express Edition is waiting for an internal operation to complete. If you regularly encounter this delay during normal usage'/><title type='text'>Visual Web Developer 2005 Express Edition is waiting for an internal operation to complete. If you regularly encounter this delay during normal usage</title><content type='html'>Some peoples may encounter this problem during the usage of Visual Web Developer. According to some expert opinions it waits for some Remote Procedure Call to Complete. But nobody could say which one. In my experience I noticed, it related with Internet Information Services. To VWD to get back to normal running do the following steps.&lt;br /&gt;Open the Task manager. Close the inetinfo.exe process. Then wait a moment the VWD will start responding. To rectify the problem completely, try uninstall the IIS and reinstall. If the problem not solved when you stop the inetinfo.exe process try uninstall and reinstall IE 7.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7856824046237493492-7546384348543164610?l=mysoftcode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mysoftcode.blogspot.com/feeds/7546384348543164610/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7856824046237493492&amp;postID=7546384348543164610' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/7546384348543164610'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/7546384348543164610'/><link rel='alternate' type='text/html' href='http://mysoftcode.blogspot.com/2008/08/visual-web-developer-2005-express.html' title='Visual Web Developer 2005 Express Edition is waiting for an internal operation to complete. If you regularly encounter this delay during normal usage'/><author><name>വായാടി മലയാളി</name><uri>http://www.blogger.com/profile/05471259455022145807</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7856824046237493492.post-7219213188545622688</id><published>2008-08-22T22:49:00.008+05:30</published><updated>2011-05-15T10:53:31.359+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='The file  has not been pre-compiled'/><category scheme='http://www.blogger.com/atom/ns#' term='and cannot be requested'/><title type='text'>The file  has not been pre-compiled, and cannot be requested</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Problem&lt;/span&gt;&lt;br /&gt;I had a very serious problem a few years back. We created a new project based on net 2.0 on C#. It worked perfectly on my local development system without any problem. We deployed it on production server. After the deployment, when we tried to access some of the pages it thrown the error.  Some of other pages loaded without any problem.&lt;i&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;The file 'default.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;aspx&lt;/span&gt;' has not been &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;pre&lt;/span&gt;-compiled, and cannot be requested.&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;The site itself was compiled before deployment.  We tried the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;pre&lt;/span&gt;-compiled files in our local system( we tested only with non complied files).   Then we could access almost every pages including the pages which created problem in deployment server.   So we decided it is the problem with the deployment server. We contacted the hosting company, they finally concluded nothing wrong with the hosting.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span style="font-weight: bold;"&gt;Into Solution&lt;/span&gt;&lt;br /&gt;Actually our project was  converted from classic asp to asp.net.  Some of the com components used in the old site still included in the new project for time saving. But that was the problem. We refer to some com &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;dll&lt;/span&gt; files in the project. Those &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;dll&lt;/span&gt; files were in the system folders of our local development system. So it worked perfectly in our local system. But when we compiled and deployed in the remote system, the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;dll&lt;/span&gt; files missed. That created the problems, but the error message was bit confusing.  Only the pages we used the com components thrown errors and pages without reference loaded without any problem&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution for "The file  has not been &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;pre&lt;/span&gt;-compiled, and cannot be requested"&lt;/span&gt;&lt;br /&gt;It is not easy to install the missing "com" components in the deployment server. So we just copied the .&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;dll&lt;/span&gt; files into the "bin" folder of the deployment server. Now it is working without fail.&lt;br /&gt;Conclusion :-&lt;br /&gt;A lots of error message from .net creating confusion everywhere. In the above case actually the problem was missing "com" components which was referred through web.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;config&lt;/span&gt; file. But raised an error message connected with compilation .&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;i&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7856824046237493492-7219213188545622688?l=mysoftcode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mysoftcode.blogspot.com/feeds/7219213188545622688/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7856824046237493492&amp;postID=7219213188545622688' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/7219213188545622688'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/7219213188545622688'/><link rel='alternate' type='text/html' href='http://mysoftcode.blogspot.com/2008/08/file-has-not-been-pre-compiled-and.html' title='The file  has not been pre-compiled, and cannot be requested'/><author><name>വായാടി മലയാളി</name><uri>http://www.blogger.com/profile/05471259455022145807</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7856824046237493492.post-3400543976226390537</id><published>2008-08-19T22:50:00.005+05:30</published><updated>2008-09-16T15:08:59.640+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='BC30451 type not declared'/><title type='text'>Call a method in an aspx page it runs perfectly fine on development machine  when deploy it on the production server it throws  an error  BC30451</title><content type='html'>I would like to  share some of my experience with code. First post is here.&lt;br /&gt;&lt;h2&gt;&lt;span class="Apple-style-span" style="font-size: medium;"&gt; call a method in an aspx page it runs perfectly fine on development machine  when i deploy it on the production server it throws  an error  BC30451 type not declared&lt;/span&gt;&lt;/h2&gt;&lt;br /&gt;&lt;br /&gt;Last week I had a strange experience.   I am using Visual Web Developer for creating web applications. I was working for one of our clients. I added some  new functionalities to  web application  and put those  methods in a class file of App_Code folder. Methods were declared as public and create new instance of that classes in aspx pages.  So I could access those methods from my aspx pages. It worked perfectly  form my local development machine. But when I tried to deploy it on the production server it throws some error "BC30451 type not declared" at the point where I created the instances of the classes.&lt;br /&gt;I tried every possible methods to figure out the exact cause of the problem. First i put the class inside a namespace because it was not like that. But it made any change in the error&lt;br /&gt;&lt;br /&gt;Finally I got the solution.&lt;br /&gt;My web application on the production server resides inside a subfolder of "httpdocs" and the default App_data folder and everything in the root of "httpdocs". I had created the App_Code folder inside that subfolder and copied the class files there.&lt;br /&gt;To rectify that problem I simply create App_code folder in the root of "httpdocs" and copied class files to there. Now it is working without fail.&lt;br /&gt;&lt;br /&gt;I think the IIS looking class files for the root of the folder which created as an application.  In this case "httpdocs" was the created application folder so IIS will always look there for class files, if it is not there will thrown as error message.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7856824046237493492-3400543976226390537?l=mysoftcode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mysoftcode.blogspot.com/feeds/3400543976226390537/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7856824046237493492&amp;postID=3400543976226390537' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/3400543976226390537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/3400543976226390537'/><link rel='alternate' type='text/html' href='http://mysoftcode.blogspot.com/2008/08/call-method-in-aspx-page-it-runs.html' title='Call a method in an aspx page it runs perfectly fine on development machine  when deploy it on the production server it throws  an error  BC30451'/><author><name>വായാടി മലയാളി</name><uri>http://www.blogger.com/profile/05471259455022145807</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7856824046237493492.post-433879230129153093</id><published>2008-05-14T12:25:00.000+05:30</published><updated>2008-05-14T12:37:22.899+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Comparison'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><title type='text'>Fedora vs Windows</title><content type='html'>&lt;p&gt;&lt;p&gt;&lt;b&gt;This is not a comparison, I am not intentional to support any company, but all are from my experience.&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Last Month I installed fedora Core &amp;#8211; 5 at my pc running Win-XP, so it is now dual boot mode. I could operate both OS. I have been working with windows platform for the last 10 years or so. So I am pretty much familiar with windows. The reason behind my Fedora install was to just study about new OS and explore something new and innovative in it. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;I would like to have music in my system when I work around. The first problem I faced with Fedora in this matter. I have a collection of music mainly in MP3 format. But when I tried to play my MP3 files with Fedora, I understood, it not just works there, you have to have some extra software enhancements there. The system itself has Totum installed, I went through some web sites, and they showed some steps for how to play MP3 in fedora. But after a month&amp;#8217;s trial, I just put aside. So I can&amp;#8217;t play my DVD&amp;#8217;s there as they not support or promote DVD.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;The second problem was when I tried to have a web server in it. Httpd was there, but could not start that and also found no error report, why it is not starting when I tried to start it. After days research, I found, the reason shows at the startup screen, but you have to be too much vigilant to grab the message in a fraction of second. It was the problem in the config file. But still it can&amp;#8217;t display a single page as it always thrown forbidden error message. But I know Apache is the best web browser with Linux based platforms. But as people know, how much easy to start an IIS on windows and can easily figure out problems with the error messages. Sure there is number ways for an experienced hand in Fedora. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;Another problem when I try to install my network card with Fedore, it automatically detected and configured with my XP, but not in Fedora. So I went through a number of discussion forums and web sites. Everybody have too much to say, but nothing understandable for a nascent like me. Them said re-compile your core and just put some text there and some test here , bla bla bla. I even downloaded the Linux based driver for that card, but I didn&amp;#8217;t get how to install in the system. The network card still there uninstalled.&lt;/p&gt;&lt;br /&gt;   &lt;br /&gt;From my experience I reached some conclusions &lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;I have a book purchased from some book shop, now one of my friends want read this book, can I give to him, sure you can(even the copyright act in some countries may not allow to lend books or movies). But is it possible to make the copies of that book and give it your friends with or without any charges?&lt;/li&gt;  &lt;li&gt;There is a house and it have a number of doors which all locked from inside with a number of locks, but nobody other than the company made the lock knows the exact specifications , vulnerabilities of the lock and how strong it is. There is one another house which also have a number of doors which all locked from inside with a number of locks, but so many people know the exact specifications , vulnerabilities of the lock and how strong it is and even one person want to know all those, it is still available there.  The question is which house has the chance to get more successful attacks, answer is obvious  - Second house, but in reality The First type of house get more successful attacks. Do you know, what is the reason?, because every 8 out 10 houses are in the first category and all them using the&lt;br /&gt;same company lock. So peoples get more chances for trial and error for the first type of houses. And the second types of houses survive because of the rare availability and targeting is not coast efficient.  But some people may think second type of houses are more secure and first is not.&lt;/li&gt;&lt;li&gt;If you can buy &lt;br /&gt;something free of coast, and there are a number of volunteer - unpaid technicians for your after services. It is ok the volunteer technician is always there to help you, but in cases the technician delayed your service call, or giving bad service or even denied service. You can&amp;#8217;t complain as long as you are not paying for what &lt;br /&gt;you are getting.&lt;/li&gt;&lt;/ol&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7856824046237493492-433879230129153093?l=mysoftcode.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mysoftcode.blogspot.com/feeds/433879230129153093/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7856824046237493492&amp;postID=433879230129153093' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/433879230129153093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7856824046237493492/posts/default/433879230129153093'/><link rel='alternate' type='text/html' href='http://mysoftcode.blogspot.com/2008/05/fedora-vs-windows.html' title='Fedora vs Windows'/><author><name>വായാടി മലയാളി</name><uri>http://www.blogger.com/profile/05471259455022145807</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
