<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Generating XML Serialization Assemblies</title>
	<atom:link href="http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/feed/" rel="self" type="application/rss+xml" />
	<link>http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/</link>
	<description>Stuff Hammered Out by Eric Smith</description>
	<lastBuildDate>Thu, 02 Feb 2012 23:29:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: TechnoDex</title>
		<link>http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/comment-page-1/#comment-16766</link>
		<dc:creator>TechnoDex</dc:creator>
		<pubDate>Wed, 06 Jan 2010 19:56:51 +0000</pubDate>
		<guid isPermaLink="false">http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/#comment-16766</guid>
		<description>I&#039;ve had a problem with upgrading projects from previous version where the csproj file didn&#039;t get the 
Auto
tag added in but when looking at the Build tab of the project it showed up as Auto.  If you set it to On and build then change it back to Auto and build the XmlSerializer.dll should get created</description>
		<content:encoded><![CDATA[<p>I&#8217;ve had a problem with upgrading projects from previous version where the csproj file didn&#8217;t get the<br />
Auto<br />
tag added in but when looking at the Build tab of the project it showed up as Auto.  If you set it to On and build then change it back to Auto and build the XmlSerializer.dll should get created</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/comment-page-1/#comment-6105</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Tue, 06 Jan 2009 05:07:43 +0000</pubDate>
		<guid isPermaLink="false">http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/#comment-6105</guid>
		<description>Hmm... I haven&#039;t encountered a problem with the dynamic generation of serialization assemblies before -- that&#039;s always seemed to work. Generating the serialization assembly in advance gives a performance benefit since it doesn&#039;t have to be generated at run-time.

Here are a few suggestions that I can think of:

• Try generating the serialization assembly in advance either with sgen.exe or the SGen MSBuild task and see if that works.
• Use fuslogvw.exe to see if there is some unexpected dependency.
• Try describing your problem in the MSDN forums -- there are lots of people more knowledgable than me.

Good luck.</description>
		<content:encoded><![CDATA[<p>Hmm&#8230; I haven&#8217;t encountered a problem with the dynamic generation of serialization assemblies before &#8212; that&#8217;s always seemed to work. Generating the serialization assembly in advance gives a performance benefit since it doesn&#8217;t have to be generated at run-time.</p>
<p>Here are a few suggestions that I can think of:</p>
<p>• Try generating the serialization assembly in advance either with sgen.exe or the SGen MSBuild task and see if that works.<br />
• Use fuslogvw.exe to see if there is some unexpected dependency.<br />
• Try describing your problem in the MSDN forums &#8212; there are lots of people more knowledgable than me.</p>
<p>Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph</title>
		<link>http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/comment-page-1/#comment-6069</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Mon, 05 Jan 2009 09:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/#comment-6069</guid>
		<description>Thanks Eric.
My problem is,
Launch the server application in the server machine and than launch the web client application in the client machine (Vista).  And than open a particular object in the client machine, during that time the dll of the object creates a XML serialization dynamically and stores it in the temporary folder of the client machine.

The following error occurs:

Error:
Could not find a part of the path: (which is highlighted)
C:\Users\account\AppData\Local\Microsoft\Windows\Temporary Internet Files\Virtualized\C\Users\account\AppData\Local\Temp\Low\6br1dtzk.dll&#039;

If I Create the missing path than the following error occurs:

Error:
Could not find file:
&#039;C: \Users\account\AppData\Local\Microsoft\Windows\
Temporary Internet Files\Virtualized\C\Users\account\
AppData\Local\Temp\Low\6br1dtzk.dll&#039;</description>
		<content:encoded><![CDATA[<p>Thanks Eric.<br />
My problem is,<br />
Launch the server application in the server machine and than launch the web client application in the client machine (Vista).  And than open a particular object in the client machine, during that time the dll of the object creates a XML serialization dynamically and stores it in the temporary folder of the client machine.</p>
<p>The following error occurs:</p>
<p>Error:<br />
Could not find a part of the path: (which is highlighted)<br />
C:\Users\account\AppData\Local\Microsoft\Windows\Temporary Internet Files\Virtualized\C\Users\account\AppData\Local\Temp\Low\6br1dtzk.dll&#8217;</p>
<p>If I Create the missing path than the following error occurs:</p>
<p>Error:<br />
Could not find file:<br />
&#8216;C: \Users\account\AppData\Local\Microsoft\Windows\<br />
Temporary Internet Files\Virtualized\C\Users\account\<br />
AppData\Local\Temp\Low\6br1dtzk.dll&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/comment-page-1/#comment-5973</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 31 Dec 2008 18:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/#comment-5973</guid>
		<description>Joseph, can you be more specific about the problem you&#039;re having? In the case of a web service, it seems like using the drop-down in the project build tab would be the right approach.</description>
		<content:encoded><![CDATA[<p>Joseph, can you be more specific about the problem you&#8217;re having? In the case of a web service, it seems like using the drop-down in the project build tab would be the right approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph</title>
		<link>http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/comment-page-1/#comment-5966</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Wed, 31 Dec 2008 12:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/#comment-5966</guid>
		<description>Even me I am having the same problem but mine is a web service.  Kindly give me a solution</description>
		<content:encoded><![CDATA[<p>Even me I am having the same problem but mine is a web service.  Kindly give me a solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/comment-page-1/#comment-1043</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 14 Feb 2008 22:57:46 +0000</pubDate>
		<guid isPermaLink="false">http://esmithy.net/2007/06/13/generating-xml-serialization-assemblies/#comment-1043</guid>
		<description>R. Aaron Zupancic points out that you can use the SGen MSBuild task to generate the serialization assembly as well:

http://blog.devstone.com/aaron/archive/2008/02/07/2778.aspx</description>
		<content:encoded><![CDATA[<p>R. Aaron Zupancic points out that you can use the SGen MSBuild task to generate the serialization assembly as well:</p>
<p><a href="http://blog.devstone.com/aaron/archive/2008/02/07/2778.aspx" rel="nofollow">http://blog.devstone.com/aaron/archive/2008/02/07/2778.aspx</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

