<?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: Hosting Conditional APTCA Assemblies – #9</title>
	<atom:link href="http://davedewinter.com/2009/05/27/hosting-conditional-aptca-assemblies/feed/" rel="self" type="application/rss+xml" />
	<link>http://davedewinter.com/2009/05/27/hosting-conditional-aptca-assemblies/</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 22 Sep 2011 22:12:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: David DeWinter</title>
		<link>http://davedewinter.com/2009/05/27/hosting-conditional-aptca-assemblies/#comment-170</link>
		<dc:creator>David DeWinter</dc:creator>
		<pubDate>Mon, 23 Aug 2010 19:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.rev-net.com/ddewinter/2009/05/27/hosting-conditional-aptca-assemblies/#comment-170</guid>
		<description>j3nonk, this is the response I received from a member of the ASP.NET team:

For Url encoding they will have to switch to System.Uri.

Sidenote:  for HTML encoding/decoding try System.Net.WebUtility.  WebUtility contains the HTML encoding/decoding routines from ASP.NET.</description>
		<content:encoded><![CDATA[<p>j3nonk, this is the response I received from a member of the ASP.NET team:</p>
<p>For Url encoding they will have to switch to System.Uri.</p>
<p>Sidenote:  for HTML encoding/decoding try System.Net.WebUtility.  WebUtility contains the HTML encoding/decoding routines from ASP.NET.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j3nonk</title>
		<link>http://davedewinter.com/2009/05/27/hosting-conditional-aptca-assemblies/#comment-169</link>
		<dc:creator>j3nonk</dc:creator>
		<pubDate>Mon, 23 Aug 2010 02:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.rev-net.com/ddewinter/2009/05/27/hosting-conditional-aptca-assemblies/#comment-169</guid>
		<description>Hi David,

Thanks for the response. I use methods inside HttpUtility class. Actually I could just replace the methods that I use such as UrlEncode, UrlDecode etc. (not too difficult but a lot of work :D)
I just wonder why Microsoft change the behaviour. Perhaps want to seperate between the web and non web application? because I saw that if the Target is .NET Framework 4 Client Profile, I can&#039;t find the System.web.dll if you try to add reference to the project. Is there a security issue if a non web application use System.Web.dll? I don&#039;t know :P

Thanks,
j3nonk.</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>Thanks for the response. I use methods inside HttpUtility class. Actually I could just replace the methods that I use such as UrlEncode, UrlDecode etc. (not too difficult but a lot of work <img src='http://davedewinter.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> )<br />
I just wonder why Microsoft change the behaviour. Perhaps want to seperate between the web and non web application? because I saw that if the Target is .NET Framework 4 Client Profile, I can&#8217;t find the System.web.dll if you try to add reference to the project. Is there a security issue if a non web application use System.Web.dll? I don&#8217;t know <img src='http://davedewinter.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Thanks,<br />
j3nonk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David DeWinter</title>
		<link>http://davedewinter.com/2009/05/27/hosting-conditional-aptca-assemblies/#comment-168</link>
		<dc:creator>David DeWinter</dc:creator>
		<pubDate>Sun, 22 Aug 2010 23:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.rev-net.com/ddewinter/2009/05/27/hosting-conditional-aptca-assemblies/#comment-168</guid>
		<description>Hi j3nonk, if you don&#039;t control the host then there&#039;s nothing you can do to be able to use System.Web today. What classes from System.Web do you use in an XBAP application though?</description>
		<content:encoded><![CDATA[<p>Hi j3nonk, if you don&#8217;t control the host then there&#8217;s nothing you can do to be able to use System.Web today. What classes from System.Web do you use in an XBAP application though?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j3nonk</title>
		<link>http://davedewinter.com/2009/05/27/hosting-conditional-aptca-assemblies/#comment-167</link>
		<dc:creator>j3nonk</dc:creator>
		<pubDate>Thu, 19 Aug 2010 07:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.rev-net.com/ddewinter/2009/05/27/hosting-conditional-aptca-assemblies/#comment-167</guid>
		<description>Hi David,

Nice article.. ;)
I have the same problem, that is using objects inside System.Web.dll but the host is an XBAP Application (Partial Trust).
Do you have a workaround how to solve this? without having to remove objects of System.Web assembly in my codes?
Probably, somehow we can register the System.Web assembly into Current Domain (AppDomain.CurrentDomain.SetupInformation.PartialTrustVisibleAssemblies)?
Or do you have other idea?

Thanks,
j3nonk.</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>Nice article.. <img src='http://davedewinter.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
I have the same problem, that is using objects inside System.Web.dll but the host is an XBAP Application (Partial Trust).<br />
Do you have a workaround how to solve this? without having to remove objects of System.Web assembly in my codes?<br />
Probably, somehow we can register the System.Web assembly into Current Domain (AppDomain.CurrentDomain.SetupInformation.PartialTrustVisibleAssemblies)?<br />
Or do you have other idea?</p>
<p>Thanks,<br />
j3nonk.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

