<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>{ Code: Impossible } &#187; asp.</title>
	<atom:link href="http://codeimpossible.com/tag/asp/feed/" rel="self" type="application/rss+xml" />
	<link>http://codeimpossible.com</link>
	<description>this = HowI.Roll();</description>
	<lastBuildDate>Thu, 02 Sep 2010 04:00:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tracking .Net Service Requests in Fiddler</title>
		<link>http://codeimpossible.com/2009/08/17/tracking-net-service-requests-in-fiddler/</link>
		<comments>http://codeimpossible.com/2009/08/17/tracking-net-service-requests-in-fiddler/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 18:52:59 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[asp.]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[webservices]]></category>

		<guid isPermaLink="false">http://codeimpossible.com/?p=620</guid>
		<description><![CDATA[Earlier today I had to debug a function in our code that was calling an external webservice at a clients&#8217; site. The webservice returns a list of items and the code on our end is supposed to place them in ascending order based on each items Order property.
The client pointed that the our order wasn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier today I had to debug a function in our code that was calling an external webservice at a clients&#8217; site. The webservice returns a list of items and the code on our end is supposed to place them in ascending order based on each items Order property.</p>
<p>The client pointed that the our order wasn&#8217;t matching up with what they were seeing internally so I spoke with their developer who suggested that we make sure that the request wasn&#8217;t being cached on my machine.</p>
<p>I opened up Fiddler locally and was surprised to see that the none of the request/response data for the connection to the webservice was showing up. </p>
<p>Fiddler, for those that don&#8217;t know is a really excellent Http tracing application that allows you to see what kind of http traffic is going in and out over your network connection. You can <a href="http://www.fiddler2.com/fiddler2/">download fiddler here</a>.</p>
<p>Thankfully, Fiddler runs a simple proxy service which you can point your service requests to in .net using:</p>
<pre class="prettyprint"><code>
if (System.Environment.MachineName.ToLower().Equals("MyMachineName"))
{
    service.Proxy = new System.Net.WebProxy("http://localhost:8888");
}
</code></pre>
<p>After adding that code we were off and debugging our .Net service requests in Fiddler!</p>
]]></content:encoded>
			<wfw:commentRss>http://codeimpossible.com/2009/08/17/tracking-net-service-requests-in-fiddler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
