<rss version="2.0">
<channel>
<title>YouTrack Issues</title>
<link>http://youtrack.codebetter.com/_rss/issues?p=EHTTP</link>
<description></description>
<item>
<title>EHTTP-44: StaticBody throws exception when the value associated with a key starts with $</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-44</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://www.gravatar.com/avatar/65030f148a97a8c19de608917f505d02.jpg?s=60&amp;d=monsterid" width="56" height="59" alt="Will (Green)" title="Will (Green)"/>
Will (Green)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jun 5, 2013 10:49:25 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jun 5, 2013 10:49:25 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">I suspect it has to do with the RegExBasedDataReaderProvider<br/><br/>Sample JSON snippet:<br/><br/><pre class="prettyprint">
services: [
  {
    code: &quot;HT-LPN-E&quot;,
    description: &quot;High-Tech Evaluation&quot;,
    provider_cost: &quot;$300.00&quot;,
    quantity: 1,
    payer_cost: &quot;$400.00&quot;,
    payer_cost_cents: 40000,
    provider_cost_cents: 30000
  }
]
</pre><br/><br/>And here&#39;s the C# class to represent this:<br/><br/><pre class="prettyprint">
    public class Service
    {
        public string Code { get; set; }
        public string Description { get; set; }
        public string ProviderCost { get; set; }
        public int Quantity { get; set; }
        public string PayerCost { get; set; }
        public int PayerCostCents { get; set; }
        public int ProviderCostCents { get; set; }
    }
</pre><br/><br/>The provider_cost and payer_cost fields cause the exception. If I remove the properties from the .NET class, the exception is not thrown.<br/><br/>Also, I had to provide my own custom EncoderDecoderConfiguration in order to get it to properly parse the snake_case keys:<br/><br/><pre class="prettyprint">
    public class EncoderDecoderConfiguration : IEncoderDecoderConfiguration
    {
        public IEncoder GetEncoder()
        {
            var jsonWriter = new JsonWriter(new DataWriterSettings(CombinedResolverStrategy()),
                                            new[] { &quot;application/.*json&quot;, &quot;text/.*json&quot; });

            var urlEncoderWriter = new UrlEncoderWriter(new DataWriterSettings(CombinedResolverStrategy()),
                                                        new[] { &quot;application/x-www-form-urlencoded&quot; });

            var writers = new List&lt;IDataWriter&gt; { jsonWriter, urlEncoderWriter };

            var dataWriterProvider = new RegExBasedDataWriterProvider(writers);

            return new DefaultEncoder(dataWriterProvider);
        }

        public IDecoder GetDecoder()
        {
            var jsonReader = new JsonReader(new DataReaderSettings(CombinedResolverStrategy(), new Iso8601DateFilter()), new[] { &quot;application/.*json&quot;, &quot;text/.*json&quot; });

            var readers = new List&lt;IDataReader&gt; { jsonReader };

            var dataReaderProvider = new RegExBasedDataReaderProvider(readers);

            return new DefaultDecoder(dataReaderProvider);
        }

        static CombinedResolverStrategy CombinedResolverStrategy()
        {
            var resolver = new CombinedResolverStrategy(
                new JsonResolverStrategy(),
                new SnakeCaseResolverStrategy()
                ); 
            return resolver;
        }
    }

    public class SnakeCaseResolverStrategy : PocoResolverStrategy
    {
        public override IEnumerable&lt;DataName&gt; GetName(MemberInfo member)
        {
            var localName = member.Name.Underscore();
            return new [] {new DataName(localName), };
        }
    }

</pre></div>

]]></description>
<pubDate>Thu, 06 Jun 2013 03:49:25 UT</pubDate>
</item>
<item>
<title>EHTTP-43: asdf</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-43</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Tobias Soltermann (Tobias.Soltermann)" title="Tobias Soltermann (Tobias.Soltermann)"/>
Tobias Soltermann (Tobias.Soltermann)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jan 23, 2013 3:17:30 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 23, 2013 3:17:30 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Wed, 23 Jan 2013 21:17:30 UT</pubDate>
</item>
<item>
<title>EHTTP-42: Expose HttpWebRequest.AllowAutoRedirect somehow so it can be set to false</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-42</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Aaron Dail (Aaron.Dail)" title="Aaron Dail (Aaron.Dail)"/>
Aaron Dail (Aaron.Dail)
</td>
</tr>
<tr>
<th>Created</th>
<td>Dec 12, 2012 11:30:04 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Dec 12, 2012 11:30:04 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text"><h3>TL;DR</h3>Can you add a way to set HttpWebRequest.AllowAutoRedirect to false using EasyHttp and the HttpClient?<br/><br/><h3>Longer Summary</h3>I was automating loging in to a website that required cookies and I ran across a problem related to the fact that .NET HttpWebRequest hides responses to 302s from you by default, and AFAICT there is no easy way to change this low-level behavior when using EasyHttp.<br/><br/><h3>Details</h3>The issue is that I have a page I have to POST to and get cookies from (/Account/LogOn), but this page sends back a 302 along with Set-Header cookies that I need.  By default the HttpWebRequest class will handle the 302 for you, and immediately issue another request to the redirect-location.<br/><br/>The response you get back then, is the one received from the GET to the redirect-location, which doesn&#39;t have the cookies from the original POST (in my case, to /Account/LogOn).<br/><br/>Some code may help explain:<br/><pre class="prettyprint">
var c = new EasyHttp.Http.HttpClient(&quot;http://localhost:11270&quot;);
var r = c.Get(&quot;/&quot;);
r = c.Post(&quot;/Account/LogOn&quot;, ...);
// r is not the response for a POST to /Account/LogOn (which was a 302)
// r is instead the response for the GET to whatever the redirect-location was.
// thus, r does not contain the cookies sent back w/ the 302
</pre><br/><br/>Doing the following successfully works around the issue but its not nice:<br/><pre class="prettyprint">
var c = new EasyHttp.Http.HttpClient(&quot;http://localhost:11270&quot;);
var r = c.Get(&quot;/&quot;);
c.Request.Uri = &quot;http://localhost:11270/Account/LogOn&quot;;
c.Request.Method = EasyHttp.Http.HttpMethod.POST;            
c.Request.ContentType = &quot;application/x-www-form-urlencoded&quot;;
c.Request.Data = new { ... }
c.Request.ContentEncoding = EasyHttp.Http.HttpContentEncoding.Utf8;

var basicRequest = c.Request.PrepareRequest();
basicRequest.AllowAutoRedirect = false;

c.Response.GetResponse(basicRequest, &quot;&quot;, false);
r = c.Response;
// Now save the cookies, and follow the redirect manually (as expected)
</pre><br/><br/>Thanks!</div>

]]></description>
<pubDate>Thu, 13 Dec 2012 05:30:04 UT</pubDate>
</item>
<item>
<title>EHTTP-41: It would be great to have, a full stream in the output, handling stream and passing it on is good with memory.</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-41</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Rohit Arora (Rohit.Arora)" title="Rohit Arora (Rohit.Arora)"/>
Rohit Arora (Rohit.Arora)
</td>
</tr>
<tr>
<th>Created</th>
<td>Aug 31, 2012 4:46:52 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 15, 2012 6:00:01 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 15, 2012 3:53:35 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Task</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>1.6.12.0</td>
</tr>
</table>
<div class="wiki text">It would be a nice if EasyHttp returns a stream out from the response, as it will make the memory management in case of handling big chunk of data</div>

]]></description>
<pubDate>Mon, 15 Oct 2012 11:00:01 UT</pubDate>
</item>
<item>
<title>EHTTP-39: JsonFx.Serialization.DeserializationException /Date(1289062214137)/ is not a valid value for DateTime</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-39</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Chris Marisic (Chris.Marisic)" title="Chris Marisic (Chris.Marisic)"/>
Chris Marisic (Chris.Marisic)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jun 13, 2012 10:02:17 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 15, 2012 6:00:01 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 15, 2012 3:53:54 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>1.6.12.0</td>
</tr>
</table>
<div class="wiki text">When working with dates that are serialized using the built in MVC2/MVC3 return Json(model) easyhttp fails.</div>

]]></description>
<pubDate>Mon, 15 Oct 2012 11:00:01 UT</pubDate>
</item>
<item>
<title>EHTTP-35: Support for simple Post</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-35</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Jonas Van der Aa (Jonas.Van.der.Aa)" title="Jonas Van der Aa (Jonas.Van.der.Aa)"/>
Jonas Van der Aa (Jonas.Van.der.Aa)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 29, 2011 2:03:37 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 15, 2012 6:00:01 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 15, 2012 3:54:10 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>1.6.12.0</td>
</tr>
</table>
<div class="wiki text">I would like to be able to post something by simply passing the url and a string that represents the body.<br/><br/><pre class="prettyprint">string bodyContent = &quot;queryParameterFormattedData&quot;;
var client = new HttpClient();
var response = client.Post(url,bodyContent);</pre></div>

]]></description>
<pubDate>Mon, 15 Oct 2012 11:00:01 UT</pubDate>
</item>
<item>
<title>EHTTP-24: Problem when deserializing XML as DynamicBody</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-24</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="José Romaniello (jfromaniello)" title="José Romaniello (jfromaniello)"/>
José Romaniello (jfromaniello)
</td>
</tr>
<tr>
<th>Created</th>
<td>Mar 17, 2011 7:32:30 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 15, 2012 6:00:01 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 15, 2012 3:54:53 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>1.6.12.0</td>
</tr>
</table>
<div class="wiki text">Given the following xml<br/><br/>ContentType: application/xml<br/>Content:<br/>&lt;?xml version=&quot;1.0&quot;?&gt;<br/>&lt;AvailableProductsResponse xmlns:xsi=&quot;<a href="http://www.w3.org/2001/XMLSchema-instance">http://www.w3.org/2001/XMLSchema-instance</a>&quot; xmlns:xsd=&quot;<a href="http://www.w3.org/2001/XMLSchema">http://www.w3.org/2001/XMLSchema</a>&quot;&gt;<br/>  &lt;Products&gt;<br/>    &lt;Product&gt;<br/>      &lt;Name&gt;Pizza 1&lt;/Name&gt;<br/>      &lt;Price&gt;10.40&lt;/Price&gt;<br/>    &lt;/Product&gt;<br/>  &lt;/Products&gt;<br/>  &lt;Other&gt;<br/>    &lt;Uri&gt;Foo/?&lt;/Uri&gt;<br/>  &lt;/Other&gt;<br/>&lt;/AvailableProductsResponse&gt;<br/><br/>When I deserialize:<br/><br/>var result = restClient.Get(&quot;url...&quot;);<br/>dynamic body = result.DynamicBody(); //&lt;&ndash; i get an exception here<br/><br/><br/>The exception is&gt;<br/><br/>Error converting JsonFx.Markup.UnparsedBlock to EasyHttp.Codecs.DynamicType</div>

]]></description>
<pubDate>Mon, 15 Oct 2012 11:00:01 UT</pubDate>
</item>
<item>
<title>EHTTP-40: Strong sign the library so it can be used in strong signed projects</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-40</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://www.gravatar.com/avatar/9bc8b3ff385cd14f2b12138c97729df2.jpg?s=60&amp;d=monsterid" width="56" height="59" alt="Patrick van der Velde (pvandervelde)" title="Patrick van der Velde (pvandervelde)"/>
Patrick van der Velde (pvandervelde)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jun 26, 2012 5:51:41 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jun 26, 2012 5:51:41 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">It would be nice if there was a strong signed version of the library so that we can pull it from Nuget.org and use it in a strong signed project.</div>

]]></description>
<pubDate>Tue, 26 Jun 2012 10:51:41 UT</pubDate>
</item>
<item>
<title>EHTTP-37: Introduce IOHandler</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-37</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Dec 1, 2011 3:29:58 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Mar 18, 2012 11:15:42 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Major</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Allow abstraction of COM to use IOHandler</div>

]]></description>
<pubDate>Mon, 19 Mar 2012 04:15:42 UT</pubDate>
</item>
<item>
<title>EHTTP-36: SerializationException when attempting Post</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-36</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Jonas Van der Aa (Jonas.Van.der.Aa)" title="Jonas Van der Aa (Jonas.Van.der.Aa)"/>
Jonas Van der Aa (Jonas.Van.der.Aa)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 30, 2011 6:50:00 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Dec 1, 2011 3:22:52 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Dec 1, 2011 3:22:48 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Won&#39;t fix</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">I get a SerializationException when I run the following code:<br/><br/><pre class="prettyprint">
 HttpClient client = new HttpClient();
 var response = client.Post(new Uri(Settings.BaseUrl, tokenEndpoint).ToString(),
                new DynamicParameterWrapper(queryParameters),HttpContentTypes.TextPlain);
</pre><br/><br/>I also tried MultipartFormData as content type.<br/>Disclaimer: I wrote this code as a workaround for issue <a href="http://youtrack.codebetter.com/issue/EHTTP-35" class="issue-resolved" title="Support for simple Post">EHTTP-35</a>.<br/><br/>JsonFx.Serialization.SerializationException was unhandled by user code<br/>  Message=The encoding requested does not have a corresponding encoder<br/>  Source=EasyHttp<br/>StackTrace:<br/><div><pre class="wiki-exception">       at EasyHttp.Codecs.DefaultEncoder.Encode(Object input, String contentType)
       at EasyHttp.Http.HttpRequest.SetupData()
       at EasyHttp.Http.HttpRequest.SetupBody()
       at EasyHttp.Http.HttpRequest.PrepareRequest()
       at EasyHttp.Http.HttpClient.ProcessRequest()
       at EasyHttp.Http.HttpClient.Post(String uri, Object data, String contentType)
       at VikingAPI.OAuth.Workflow.GetRequestToken(String tokenEndpoint) in C:\tmp\vikingapi\src\VikingAPI\VikingAPI\OAuth\Workflow.cs:line 46
       at VikingAPITests.WorkflowTest.WorkflowGetRequestToken() in C:\tmp\vikingapi\src\VikingAPI\VikingAPITests\WorkflowTest.cs:line 30
</pre></div>  InnerException: </div>

]]></description>
<pubDate>Thu, 01 Dec 2011 09:22:52 UT</pubDate>
</item>
<item>
<title>EHTTP-34: Support for Dynamic in Multipart FormData</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-34</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 6, 2011 8:05:59 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 6, 2011 8:05:59 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">The nuget install worked well.<br/><br/>I&#39;m actually running this inside a SpecFlow Step at the moment - but will also be putting some calls on Wp7 too (I&#39;m writing some client network tests inside the test framework <a href="http://bit.ly/q9xajr">http://bit.ly/q9xajr</a>)<br/><br/>The code I first wrote was:<br/><br/>            dynamic request = new ExpandoObject(); // Or any dynamic type<br/>            request.command = &quot;SignIn&quot;;<br/>            request.email = &quot;mobiletest1@fred.com&quot;;<br/>            request.password = &quot;passwprd&quot;;<br/>            dynamic result = http.Post(&quot;<a href="https://www.address.com/api.php">https://www.address.com/api.php</a>&quot;, request, HttpContentTypes.ApplicationJson);<br/>            // use result.DynamicBody<br/><br/>But that insisted on JSONifying the upload - but I needed multipartform data as that&#39;s what the server expects.<br/><br/>So I changed to:<br/> <br/>            var request = new Dictionary&lt;string, object&gt;();<br/>            request[&quot;command&quot;] = &quot;SignIn&quot;;<br/>            request[&quot;email&quot;] = &quot;mobiletest1@fred.com&quot;;<br/>            request[&quot;password&quot;] = &quot;pwned&quot;;<br/><br/>            var http = new HttpClient();<br/>            http.Request.ContentType = HttpContentTypes.ApplicationJson;<br/>            dynamic result = http.Post(&quot;<a href="https://www.test.com/api.php">https://www.test.com/api.php</a>&quot;, request, null);<br/>            // use result.DynamicBody<br/><br/>And that did what I want :)<br/><br/>It works well :)<br/><br/>But as a feature request, I&#39;d prefer to use dynamic for Multipart forms :)<br/><br/>Thanks for the project</div>

]]></description>
<pubDate>Sun, 06 Nov 2011 14:05:59 UT</pubDate>
</item>
<item>
<title>EHTTP-23: Silverlight Support</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-23</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Mar 5, 2011 4:32:50 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 6, 2011 8:05:12 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 6, 2011 8:05:12 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>1.3.10.0</td>
</tr>
</table>


]]></description>
<pubDate>Sun, 06 Nov 2011 14:05:12 UT</pubDate>
</item>
<item>
<title>EHTTP-33: NuGet packages, seems like the version number does some odd stuff.</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-33</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Mikael Syska (Mikael.Syska)" title="Mikael Syska (Mikael.Syska)"/>
Mikael Syska (Mikael.Syska)
</td>
</tr>
<tr>
<th>Created</th>
<td>Oct 29, 2011 4:11:42 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 6, 2011 8:04:55 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 6, 2011 8:04:55 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>1.3.10.0</td>
</tr>
</table>
<div class="wiki text">Makes sense ... <br/><br/>1.1.4290.18822 is higher than 1.1.50.0<br/><br/>If one thinks about stuff betwwen the &quot;dots&quot; as whole numbers.<br/><br/><br/>PM&gt; Install-Package EasyHttp -Version 1.1.50.0<br/>Attempting to resolve dependency &#39;JsonFx (≥ 2.0.1106.2610)&#39;.<br/>Successfully installed &#39;EasyHttp 1.1.50.0&#39;.<br/>Install failed. Rolling back...<br/>Install-Package : Already referencing a newer version of &#39;EasyHttp&#39;.<br/>At line:1 char:16<br/>+ Install-Package &lt;&lt;&lt;&lt;  EasyHttp -Version 1.1.50.0<br/>    + CategoryInfo          : NotSpecified: (:) [Install-Package], InvalidOperationException<br/>    + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand<br/><br/><br/><br/>PM&gt; Get-Package<br/><br/>Id                             Version              Description                                                                                                               <br/>--                             <hr/>              <hr/>EasyHttp                       1.1.4290.18822       An Http Client for .NET with support for Dynamic Types/Json/Xml                                                                          <br/>JsonFx                         2.0.1106.2610        JsonFx serialization framework </div>

]]></description>
<pubDate>Sun, 06 Nov 2011 14:04:55 UT</pubDate>
</item>
<item>
<title>EHTTP-31: Overload for StaticBody</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-31</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Mikael Syska (Mikael.Syska)" title="Mikael Syska (Mikael.Syska)"/>
Mikael Syska (Mikael.Syska)
</td>
</tr>
<tr>
<th>Created</th>
<td>Oct 18, 2011 9:26:47 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 28, 2011 1:21:33 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 28, 2011 1:21:33 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Hi Hadi,<br/><br/>I have a request.<br/><br/>I&#39;m using the <a href="http://toodledo.com">http://toodledo.com</a> API ... and its sending back json and xml. However they dont use the right ContentType so when trying to Desserialize it I get an exception. <br/><br/>Error converting System.String to Syska.ToDo.Console.Program+Body<br/><br/>And its right, as I can see that the ContentType is &quot;text/html; charset=UTF-8&quot;.<br/><br/>So I get downloaded the source and created an overload like:<br/>public T StaticBody&lt;T&gt;(string contentType)<br/>        {<br/><div><pre class="wiki-exception">            return _decoder.DecodeToStatic&lt;T&gt;(RawText, contentType)</pre></div>;<br/>        }<br/><br/>Which fixes my issue for now.<br/><br/>Could this be implemented in official release, since there might be more sites that dont send the right ContentType back even though it Json in my situation.<br/><br/>mvh<br/>Mikael Syska</div>

]]></description>
<pubDate>Fri, 28 Oct 2011 06:21:33 UT</pubDate>
</item>
<item>
<title>EHTTP-32: Support for IEnumerable&lt;T&gt; in StaticBody</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-32</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Oct 26, 2011 2:47:46 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 27, 2011 11:30:39 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 27, 2011 11:30:39 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Obsolete</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Fri, 28 Oct 2011 04:30:39 UT</pubDate>
</item>
<item>
<title>EHTTP-26: NullreferenceException when using AddExtraHeader </title>
<link>http://youtrack.codebetter.com/issue/EHTTP-26</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Freddy Hansen (hansenfreddy)" title="Freddy Hansen (hansenfreddy)"/>
Freddy Hansen (hansenfreddy)
</td>
</tr>
<tr>
<th>Created</th>
<td>Mar 29, 2011 7:32:43 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 19, 2011 1:55:39 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 19, 2011 1:55:39 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Trying to add an &quot;Authorization&quot; header before doing a get, but it seems like the headers collection is not initialized at that point. <br/><br/>Also - what is the purpose of rawheaders in the request object? Is it ever populated/used?</div>

]]></description>
<pubDate>Wed, 19 Oct 2011 18:55:39 UT</pubDate>
</item>
<item>
<title>EHTTP-21: Refactor HttpRequest and abstract a new encoding layer</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-21</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jan 22, 2011 1:12:06 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 19, 2011 1:55:01 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 19, 2011 1:55:01 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Task</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Avoid the if... and use strategy for encoding based on input data </div>

]]></description>
<pubDate>Wed, 19 Oct 2011 18:55:01 UT</pubDate>
</item>
<item>
<title>EHTTP-18: Support for Proxy</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-18</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jan 17, 2011 3:18:25 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 19, 2011 1:54:45 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Oct 19, 2011 1:54:41 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Duplicate</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Wed, 19 Oct 2011 18:54:45 UT</pubDate>
</item>
<item>
<title>EHTTP-30: Proxy Support</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-30</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Sep 9, 2011 4:14:40 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Oct 19, 2011 1:54:45 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Wed, 19 Oct 2011 18:54:45 UT</pubDate>
</item>
<item>
<title>EHTTP-29: testdsdfdsg</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-29</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Apr 28, 2011 6:05:03 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Sep 6, 2011 4:21:32 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Sep 6, 2011 4:21:32 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Won&#39;t fix</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">gfdgfdgklfdjglkfd</div>

]]></description>
<pubDate>Tue, 06 Sep 2011 09:21:32 UT</pubDate>
</item>
<item>
<title>EHTTP-27: This is a test</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-27</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Apr 27, 2011 4:04:17 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Sep 6, 2011 4:21:32 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Sep 6, 2011 4:21:32 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Won&#39;t fix</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text"><pre class="prettyprint">
public void Class {
}
</pre></div>

]]></description>
<pubDate>Tue, 06 Sep 2011 09:21:32 UT</pubDate>
</item>
<item>
<title>EHTTP-25: Add support for overloaded POST/PUT with JSON (or XML?) string </title>
<link>http://youtrack.codebetter.com/issue/EHTTP-25</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Mar 26, 2011 5:45:33 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Apr 30, 2011 2:34:10 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Apr 30, 2011 2:34:10 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Task</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 30 Apr 2011 19:34:10 UT</pubDate>
</item>
<item>
<title>EHTTP-28: Test issue</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-28</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Apr 28, 2011 3:36:15 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Apr 28, 2011 3:43:17 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Apr 28, 2011 3:43:17 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text"><pre class="prettyprint">
public class {
}
</pre><br/><br/>jhlgkfhjgflkhjgfhfg  hfgh fg</div>

]]></description>
<pubDate>Thu, 28 Apr 2011 08:43:17 UT</pubDate>
</item>
<item>
<title>EHTTP-3: Make NuGet Package available</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-3</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 5, 2010 5:43:01 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Mar 5, 2011 4:32:33 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Mar 5, 2011 4:32:33 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 05 Mar 2011 22:32:33 UT</pubDate>
</item>
<item>
<title>EHTTP-22: Provide supprot for Auth in firrst request</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-22</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Feb 23, 2011 12:07:53 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Feb 23, 2011 12:07:59 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Submitted</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Provide ability to send auth request without waiting for challenge from server.</div>

]]></description>
<pubDate>Wed, 23 Feb 2011 06:07:59 UT</pubDate>
</item>
<item>
<title>EHTTP-20: Support for Multipart Post</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-20</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jan 22, 2011 1:11:10 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:11:10 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:11:10 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 22 Jan 2011 07:11:10 UT</pubDate>
</item>
<item>
<title>EHTTP-19: Support for PUT of binary files</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-19</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Jan 22, 2011 1:10:56 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:10:56 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:10:56 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 22 Jan 2011 07:10:56 UT</pubDate>
</item>
<item>
<title>EHTTP-1: Test Init</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-1</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 5, 2010 5:42:40 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:10:36 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:10:36 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Make sure tests are all self-contained so people can run them,</div>

]]></description>
<pubDate>Sat, 22 Jan 2011 07:10:36 UT</pubDate>
</item>
<item>
<title>EHTTP-9: Issue with nulls</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-9</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 6, 2010 3:31:30 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:10:28 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:10:28 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Possiblity of saying nulls should be serialized as emtpy string...either with settings (conventions) or attributes</div>

]]></description>
<pubDate>Sat, 22 Jan 2011 07:10:28 UT</pubDate>
</item>
<item>
<title>EHTTP-11: Support for Files</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-11</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 14, 2010 1:03:02 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:10:21 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:10:21 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 22 Jan 2011 07:10:21 UT</pubDate>
</item>
<item>
<title>EHTTP-12: Xml Decoding</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-12</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 18, 2010 3:41:28 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:10:17 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:10:17 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Check to see if XML Decoding works. </div>

]]></description>
<pubDate>Sat, 22 Jan 2011 07:10:17 UT</pubDate>
</item>
<item>
<title>EHTTP-13: Deserialization exception on JSON arrays</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-13</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Alejandro (amezcua)" title="Alejandro (amezcua)"/>
Alejandro (amezcua)
</td>
</tr>
<tr>
<th>Created</th>
<td>Dec 9, 2010 9:44:34 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:10:08 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:10:08 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Deserialization breaks when the response is only a JSON array and not a JSON object. Try with CouchDB _all_dbs (ex. <a href="http://127.0.0.1:5984/_all_dbs">http://127.0.0.1:5984/_all_dbs</a>)</div>

]]></description>
<pubDate>Sat, 22 Jan 2011 07:10:08 UT</pubDate>
</item>
<item>
<title>EHTTP-14: Null reference when not resolving host</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-14</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Dec 16, 2010 4:26:24 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:10:04 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:10:04 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Critical</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 22 Jan 2011 07:10:04 UT</pubDate>
</item>
<item>
<title>EHTTP-15: Support for Stream</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-15</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Dec 19, 2010 2:50:54 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:09:59 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:09:59 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Add support for streaming (save to file for instance)</div>

]]></description>
<pubDate>Sat, 22 Jan 2011 07:09:59 UT</pubDate>
</item>
<item>
<title>EHTTP-16: Allow possibility of registering own content-types with existing codecs</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-16</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Dec 19, 2010 2:51:14 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:09:53 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:09:53 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 22 Jan 2011 07:09:53 UT</pubDate>
</item>
<item>
<title>EHTTP-17: Pass Registry as part of ConfigurationStep </title>
<link>http://youtrack.codebetter.com/issue/EHTTP-17</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_persistent/Pic2011.png?file=72-27&amp;v=0&amp;w=60&amp;h=60&amp;c=true" width="56" height="59" alt="Hadi Hariri (Admin) (root)" title="Hadi Hariri (Admin) (root)"/>
Hadi Hariri (Admin) (root)
</td>
</tr>
<tr>
<th>Created</th>
<td>Dec 19, 2010 3:01:49 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Jan 22, 2011 1:09:44 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Jan 22, 2011 1:09:44 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Feature</td>
</tr>
<tr>
<th>State</th>
<td>Won&#39;t fix</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 22 Jan 2011 07:09:44 UT</pubDate>
</item>
<item>
<title>EHTTP-10: Add Missing Headers</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-10</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 9, 2010 11:29:46 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 14, 2010 1:02:40 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 14, 2010 1:02:40 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Add missing headers to Request/Response</div>

]]></description>
<pubDate>Sun, 14 Nov 2010 19:02:40 UT</pubDate>
</item>
<item>
<title>EHTTP-8: Serialization Attribute</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-8</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 6, 2010 3:30:14 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 9, 2010 11:30:30 AM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 9, 2010 11:30:30 AM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Won&#39;t fix</td>
</tr>
<tr>
<th>Assignee</th>
<td>Unassigned</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Possibility of adding an attribute to a type passed in indicating whether it should be serialized and the verb.<br/><br/>For instance:<br/><br/>public class Customer <br/>{<br/>   public string Name { get; set;}<br/>   public string Email { get; set;}<br/>   [Serialize(PUT,GET)]<br/>   public string Phone { get; set;}<br/>}</div>

]]></description>
<pubDate>Tue, 09 Nov 2010 17:30:30 UT</pubDate>
</item>
<item>
<title>EHTTP-6: Should be able to easily change the CouchDB IP address in tests.</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-6</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Alejandro (amezcua)" title="Alejandro (amezcua)"/>
Alejandro (amezcua)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 5, 2010 12:34:31 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 5, 2010 9:01:40 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 5, 2010 1:24:29 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Tests assume CouchDB is listening on 127.0.0.1 which might not be the case. The IP is scattered in the tests and should be easily changed for all.</div>

]]></description>
<pubDate>Sat, 06 Nov 2010 02:01:40 UT</pubDate>
</item>
<item>
<title>EHTTP-5: Remove dependecy on specific couchdb version for tests</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-5</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 5, 2010 5:51:44 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 5, 2010 9:01:40 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 5, 2010 1:25:21 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 06 Nov 2010 02:01:40 UT</pubDate>
</item>
<item>
<title>EHTTP-4: Issues reported with latest mspec runner</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-4</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 5, 2010 5:43:18 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 5, 2010 9:01:40 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 5, 2010 2:27:25 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Won&#39;t fix</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 06 Nov 2010 02:01:40 UT</pubDate>
</item>
<item>
<title>EHTTP-2: Update readme to point to issue tracker here</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-2</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 5, 2010 5:42:50 AM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 5, 2010 9:01:40 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 5, 2010 1:27:11 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>


]]></description>
<pubDate>Sat, 06 Nov 2010 02:01:40 UT</pubDate>
</item>
<item>
<title>EHTTP-7: Provide support for static body types</title>
<link>http://youtrack.codebetter.com/issue/EHTTP-7</link>
<description><![CDATA[
<table>
<tr>
<th>Reporter</th>
<td>
<img src="http://youtrack.codebetter.com/_classpath/smartui/img/youPicture-h-18417e26.gif" width="56" height="59" alt="Hadi Hariri (hhariri)" title="Hadi Hariri (hhariri)"/>
Hadi Hariri (hhariri)
</td>
</tr>
<tr>
<th>Created</th>
<td>Nov 5, 2010 8:58:03 PM</td>
</tr>
<tr>
<th>Updated</th>
<td>Nov 5, 2010 9:01:15 PM</td>
</tr>
<tr>
<th>Resolved</th>
<td>Nov 5, 2010 8:58:47 PM</td>
</tr>
<tr>
<th>Priority</th>
<td>Normal</td>
</tr>
<tr>
<th>Type</th>
<td>Bug</td>
</tr>
<tr>
<th>State</th>
<td>Fixed</td>
</tr>
<tr>
<th>Assignee</th>
<td>Hadi Hariri (hhariri)</td>
</tr>
<tr>
<th>Subsystem</th>
<td>No subsystem</td>
</tr>
<tr>
<th>Fix versions</th>
<td>No Fix versions</td>
</tr>
<tr>
<th>Affected versions</th>
<td>No Affected versions</td>
</tr>
<tr>
<th>Fixed in build</th>
<td>Next Build</td>
</tr>
</table>
<div class="wiki text">Move RawText to HttpResponse and provide DynamicBody and StaticBody</div>

]]></description>
<pubDate>Sat, 06 Nov 2010 02:01:15 UT</pubDate>
</item>
</channel>
</rss>
