User Darrel Miller - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:55:17Z http://stackoverflow.com/feeds/user/6819 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856996/doing-a-http-put-from-a-browser/1857448#1857448 1 Answer by Darrel Miller for Doing a HTTP PUT from a browser Darrel Miller 2009-12-07T02:24:24Z 2009-12-07T02:24:24Z <p>I believe the preferred solution to this problem is to use the X-HTTP-Method-Override header. If you search on this term you should find plenty of examples of how to use it.</p> http://stackoverflow.com/questions/1469195/is-there-a-way-to-parse-a-t-sql-select-statement-with-the-oslo-m-runtime 0 Is there a way to parse a T-SQL select statement with the "Oslo" M runtime? Darrel Miller 2009-09-24T00:13:40Z 2009-12-05T23:00:02Z <p>Searching around the Microsoft.M assembly I found the SourceParser class and whole set of classes in the Microsoft.TSQL10 namespace that seem related to parsing SQL but I cannot find examples of how to use it.</p> <p>I know the you can generate T-SQL easily enough, but can you consume it, manipulate the data structure and re-output a modified version of the SQL select?</p> http://stackoverflow.com/questions/522367/why-does-a-sql-join-choose-a-sub-optimal-query-plan 13 Why does a SQL join choose a sub-optimal query plan? Darrel Miller 2009-02-06T21:59:10Z 2009-12-05T07:15:30Z <p>Ok so I realize that this is a pretty vague question, but bear with me.</p> <p>I have experienced this problem on numerous occasions with different and unrelated queries. The query below takes many minutes to execute:</p> <pre><code>SELECT &lt;Fields&gt; FROM &lt;Multiple Tables Joined&gt; LEFT JOIN (SELECT &lt;Fields&gt; FROM &lt;Multiple Tables Joined&gt; ) ON &lt;Condition&gt; </code></pre> <p>However, by just adding the join hint it query the executes in just seconds:</p> <pre><code>SELECT &lt;Fields&gt; FROM &lt;Multiple Tables Joined&gt; LEFT HASH JOIN (SELECT &lt;Fields&gt; FROM &lt;Multiple Tables Joined&gt; ) ON &lt;Condition&gt; </code></pre> <p>The strange thing is the type of JOIN specified in the hint is not really what improves the performance. It appears to be because the hint causes the optimizer to execute the sub query in isolation and then join. I see the same performance improvement if I create a table-valued function (not an inline one) for the sub-query. e.g.</p> <pre><code>SELECT &lt;Fields&gt; FROM &lt;Multiple Tables Joined&gt; LEFT JOIN dbo.MySubQueryFunction() ON &lt;Condition&gt; </code></pre> <p>Anybody have any ideas why the optimizer is so dumb in this case?</p> http://stackoverflow.com/questions/1850640/objective-reasons-for-using-python-or-ruby-for-a-new-rest-web-api/1850701#1850701 1 Answer by Darrel Miller for Objective reasons for using Python or Ruby for a new REST Web API Darrel Miller 2009-12-05T01:13:18Z 2009-12-05T01:13:18Z <p>I would say the important thing is that regardless of which you choose, make sure that your choice does not leak through your REST API. It should not matter to the client of your API which you chose.</p> http://stackoverflow.com/questions/1850293/wcf-rest-where-is-the-request-data/1850532#1850532 0 Answer by Darrel Miller for WCF + REST: Where is the request data? Darrel Miller 2009-12-05T00:18:31Z 2009-12-05T00:18:31Z <p>In the answer to <a href="http://stackoverflow.com/questions/1287802/access-request-body-in-a-wcf-restful-service">this</a> question I provide a horrible solution to the problem. I'm still waiting for someone to suggest a better way.</p> http://stackoverflow.com/questions/1842770/consume-rest-api-from-net/1843892#1843892 1 Answer by Darrel Miller for Consume RESt API from .NET Darrel Miller 2009-12-03T23:40:53Z 2009-12-03T23:40:53Z <p>Use the Microsoft.Http client library that is in <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24644" rel="nofollow">WCF REST Starter Kit Preview 2</a>.</p> <p>Here is how you could use it:</p> <pre><code> var client = new HttpClient(); client.DefaultHeaders.Authorization = new Credential("ArbitraryAuthHeader"); client.DefaultHeaders.Date = DateTime.Now; client.DefaultHeaders.Accept.Add("application/xml"); var response = client.Get("http://example.org"); var xmlString = response.Content.ReadAsString(); </code></pre> http://stackoverflow.com/questions/1607551/soap-or-rest-as-a-client/1610838#1610838 5 Answer by Darrel Miller for SOAP or REST as a Client Darrel Miller 2009-10-23T00:38:18Z 2009-12-03T07:21:51Z <p>Wow, 10 hours and no answer so far to this question. Usually these types of questions are jumped on in an instant.</p> <p>Anyway, here is bit of strange answer to your question. The choice should depend on a few things:</p> <ol> <li>How good is the documentation for the two APIs.</li> <li>How likely is the API to change.</li> <li>How much time do I have to produce the client</li> <li>How long is the client likely to be used for.</li> <li>Does the REST api documentation consist of a list of Urls with the XML/JSON that they return?</li> </ol> <p>Whichever API has the better documentation is likely to be the better API to use. This is not guaranteed, but it is a good indicator. It does not matter whether SOAP is better than REST or vice versa if the implementation is garbage you are going to suffer either way.</p> <p>If this is a brand new API, created by a startup, that is likely to evolve significantly over the next year then a REST api will likely be easier to manage. SOAP apis tend to be pretty brittle and require frequent client recompilations due to the generated client proxy code.</p> <p>Despite the 1001 reasons why I hate client generated proxy code, if you need to get something working really quick. Pointing your favorite IDE at chunk of WSDL will very quickly get you an object model to play with. It is definitely the fastest way to get something working.</p> <p>If the client is going to be around for a number of years then I believe it is worth investing the time into producing a good REST client. A REST based approach is much more resilient to the inevitable changes that will occur over time. There are also much more options when it comes to version REST clients than SOAP based ones.</p> <p>The last item is a bit of litmus test for whether the REST API is a real REST interface or not. If the documentation is a catalog of http endpoints then you can be pretty much assured that the designers don't know what REST is, so stay away from it.</p> http://stackoverflow.com/questions/1828495/wcf-syndication-service-not-found-in-ii6/1832900#1832900 0 Answer by Darrel Miller for WCF Syndication Service not found in II6 Darrel Miller 2009-12-02T13:27:06Z 2009-12-02T13:27:06Z <p>I believe this issue has been raised many times before. Search for IIS WCF 404, or checkout this <a href="http://stackoverflow.com/questions/341438/wcf-service-hosted-in-iis6-gets-404-in-production">question</a>.</p> http://stackoverflow.com/questions/1829875/is-it-ok-by-rest-to-return-content-after-post/1829913#1829913 5 Answer by Darrel Miller for Is it ok by REST to return content after POST? Darrel Miller 2009-12-02T00:23:18Z 2009-12-02T00:33:21Z <p>REST just says that you should conform to the uniform interface. In other words, it says you should do what POST is supposed to do as per the <a href="http://www.ietf.org/rfc/rfc2616.txt" rel="nofollow">HTTP spec</a>. Here is the quote from that spec that is relevant,</p> <blockquote> <p>If a resource has been created on the origin server, the response SHOULD be 201 (Created) and contain an entity which describes the status of the request and refers to the new resource, and a Location header (see section 14.30).</p> </blockquote> <p>As you can see from this, you have two places where you can indicate to the client where the newly created resource resides. The Location header should have an URL that points to the new resource and you can return an entity with the details also.</p> <p>I'm not sure what the difference between overriding acceptRepresentation() and overriding post() but <a href="http://stackoverflow.com/questions/1352202/restlet-implementing-post-with-json-receive-and-response">this</a> example shows how to return a response from a POST.</p> http://stackoverflow.com/questions/1825102/consuming-wcf-rest-service-in-multiple-ways-net-plain-xml/1825875#1825875 1 Answer by Darrel Miller for Consuming WCF REST service in multiple ways (.Net, plain XML) Darrel Miller 2009-12-01T12:23:21Z 2009-12-01T12:23:21Z <p>You cannot generate a client proxy for a webHttpBinding and basicHttpBinding uses SOAP. There is no way around this. The question you are referring to enables both bindings. You cannot cherry-pick the features you like from each binding.</p> <p>However, why would you want to create a client proxy? Using the Microsoft.Http library, calling your service is as simple as,</p> <pre><code>var client = new HttpClient(); var content = HttpContent.Create(myXmlDocument); client.Post("http://example.org/param1/param2",content) </code></pre> http://stackoverflow.com/questions/1775782/does-anyone-know-of-an-example-of-a-restful-client-that-follows-the-hateoas-princ/1777261#1777261 0 Answer by Darrel Miller for Does anyone know of an example of a RESTful client that follows the HATEOAS principle? Darrel Miller 2009-11-22T00:13:26Z 2009-11-28T16:47:30Z <p>So far I have built two clients that access REST services. Both use HATEOAS exclusively. I have had a huge amount of success being able to update server functionality without updating the client.</p> <p>I use xml:base to enable relative urls to reduce the noise in my xml documents. Other than loading images, and other static data I usually only follow links on user requests so the performance overhead of links is not significant for me.</p> <p>On the clients, the only common functionality that I have felt the need to create is wrappers around my media types and a class to manage links.</p> <p><hr></p> <p><strong>Update:</strong></p> <p>There seem to be two distinct ways to deal with REST interfaces from the client's perspective. The first is where the client knows what information it wants to get and knows the links it needs to traverse to get to that information. The second approach is useful when there is a human user of the client application controlling which links to follow and the client may not know in advance what media type will be returned from the server. For entertainment value, I call these two types of client, the data miner and the dispatcher, respectively.</p> <h3>The Data Miner</h3> <p>For example, imagine for a moment that the Twitter API was actually RESTful and I wanted write a client that would retreive most recent status message of the most recent follower of a particular twitter user.</p> <p>Assuming I was using the awesome new Microsoft.Http.HttpClient library, and I had written a few "ReadAs" extension methods to parse the XML coming from the twitter API, I imagine it would go something like this:</p> <pre><code>var twitterService = HttpClient.Get("http://api.twitter.com").Content.ReadAsTwitterService(); var userLink = twitterService.GetUserLink("DarrelMiller"); var userPage = HttpClient.Get(userLink).Content.ReadAsTwitterUserPage(); var followersLink = userPage.GetFollowersLink(); var followersPage = HttpClient.Get(followersLink).Content.ReadAsFollowersPage(); var followerUserName = followersPage.FirstFollower.UserName; var followerUserLink = twitterService.GetUserLink(followerUserName); var followerUserPage = HttpClient.Get(followerUserLink).Content.ReadAsTwitterUserPage(); var followerStatuses = HttpClient.Get(followerUserPage.GetStatusesLink()).Content.ReadAsTwitterUserPage(); var statusMessage = followerStatuses.LastMessage; </code></pre> <h3> The Dispatcher </h3> <p>To better illustrate this example imagine you were implementing a client that rendered genealogy information. The client needs to be capable of showing the tree, drilling down to information about a particular person and viewing related images. Consider the following code snippet:</p> <pre><code> void ProcessResponse(HttpResponseMessage response) { IResponseController controller; switch(response.Content.ContentType) { case "vnd.MyCompany.FamilyTree+xml": controller = new FamilyTreeController(response); controller.Execute(); break; case "vnd.MyCompany.PersonProfile+xml": controller = new PersonProfileController(response); controller.Execute(); break; case "image/jpeg": controller = new ImageController(response); controller.Execute(); break; } } </code></pre> <p>The client application can use a completely generic mechanism to follow links and pass the response to this dispatching method. From here the switch statement passes control to a specific controller class that knows how to interpret and render the information based on the media type. </p> <p>Obviously there are many more pieces to the client application, but these are the ones that correspond to HATEOAS. Feel free to ask me to clarify any points as I have skimmed over many details.</p> http://stackoverflow.com/questions/1777542/how-to-prevent-concurrency-in-web-service-api/1780962#1780962 0 Answer by Darrel Miller for How to prevent concurrency in web service API? Darrel Miller 2009-11-23T03:22:31Z 2009-11-23T03:22:31Z <p>Why not use hypermedia to constrain access?</p> <p>Use something like,</p> <pre><code>POST /A </code></pre> <p>to initate the first process. The when it is complete the results should provide a link to follow to initiate the second process,</p> <pre><code>&lt;ResultsOfProcessA&gt; &lt;Status&gt;Complete&lt;/Status&gt; &lt;ProcessB href="/B"/&gt; &lt;/ResultsOfProcessA&gt; </code></pre> <p>Follow the link to initate the second process,</p> <pre><code>POST /B </code></pre> <p>and repeat for part C.</p> <p>Arguably a badly behaving client could cache the link to step B and attempt to re-use it in some future request to circumvent the sequence. However, it would not be too difficult to assign some kind of token when doing step A and require that the token be passed to step B and C to prevent the client from constructing the URL manually.</p> <p>Reading your comments further, it seems that you have a situation where A could be run either before or after B. In this case I would suggest creating a resource D that represents the status of the entire set of processes (A,B and C). When a client retrieves D it is presented with the URIs that it is allowed to follow. Once a client has initiated the A process then the D resource should remove the B link for the duration of the processing. The opposite should occur when B is initiated before A. </p> <p>The other advantage of this technique is that it is obvious if A or B has been run for the day as the status can be displayed in D. Once A and B have been run then D can contain a link for C.</p> <p>The hypermedia is not a 100% foolproof solution because you could have two clients with the same copy of D and both might think that process A has not been run and both could attempt to run it simultaneously. This could be addressed by having some kind of "Last Modified" timestamp on D and you could update that timestamp whenever the status of D changes. This could allow the later request to be denied. Based on the description of your scenario it would seem that this is more of an edge case and the hypermedia would catch most attempts to run processes in parallel.</p> http://stackoverflow.com/questions/1773999/mimetypes-for-a-restful-api/1777350#1777350 1 Answer by Darrel Miller for Mimetypes for a RESTful API Darrel Miller 2009-11-22T00:42:54Z 2009-11-22T00:42:54Z <p>I use my own vnd.mycompany.mymediatype+xml media types for many of my representations. On the client I dispatch to the appropriate controller class based on the media type of the returned representation. This really allows the server to control the behavior of my client application in response to the user following a link.</p> <p>Personally, I believe that using application/xml and application/json are one of the worst choices you can make if you hoping to support REST clients. The only exception to this is when the client only uses downloaded code (like Javascript) to interpret the data.</p> http://stackoverflow.com/questions/1714029/howto-automate-documentation-of-a-rest-api-jersey-implementation/1715187#1715187 -1 Answer by Darrel Miller for Howto automate documentation of a REST API (Jersey Implementation) Darrel Miller 2009-11-11T13:33:11Z 2009-11-11T13:33:11Z <p>I hate to be the bearer of bad news, but if you feel the need to document the things you listed, then you probably did not create a REST interface. </p> <p>REST interfaces are documented by identifying a single root URL and then by describing the media type of the representation that is returned from that URL and all the media types that can be accessed via links in that representation.</p> <p>What media types are you using?</p> <p>Also, put a link to <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html" rel="nofollow">RFC2616</a> in your docs. That should explain to any consumer how to interact with your service. </p> http://stackoverflow.com/questions/1694673/comparing-data-with-restful-api/1695020#1695020 2 Answer by Darrel Miller for Comparing data with RESTful API Darrel Miller 2009-11-08T01:21:36Z 2009-11-08T01:21:36Z <p>There is nothing in HTTP that says that POST must update the server. People seem to forget the following line in <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.5" rel="nofollow">RFC2616</a> regarding one use of POST:</p> <blockquote> <ul> <li>Providing a block of data, such as the result of submitting a form, to a data-handling process;</li> </ul> </blockquote> <p>There is nothing wrong with taking your client side wishlist and POSTing to a resource whose sole purpose is to return a set of differences.</p> <pre><code>POST /Bookstore/WishlistComparisonEngine </code></pre> http://stackoverflow.com/questions/1670455/what-tools-are-available-to-auto-generate-asp-net-mvc-rest-services-from-domain-o/1678070#1678070 1 Answer by Darrel Miller for What tools are available to auto-generate ASP.NET MVC REST services from domain objects? Darrel Miller 2009-11-05T03:03:20Z 2009-11-05T03:03:20Z <p>Have you looked at Ado.Net Data Services (aka Astoria)? It does pretty much what you are looking for.</p> http://stackoverflow.com/questions/1662817/can-you-provide-information-or-links-that-discuss-using-resource-state-over-sessi/1664444#1664444 2 Answer by Darrel Miller for Can you provide information or links that discuss using resource state over session or DB state? Darrel Miller 2009-11-02T23:51:21Z 2009-11-02T23:51:21Z <p>One of the clearest explanations of the disadvantages of session state comes directly from Roy Fielding's <a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/rest%5Farch%5Fstyle.htm" rel="nofollow">dissertation</a> where he introduces REST. (Emphasis is mine)</p> <blockquote> <p>We next add a constraint to the client-server interaction: communication must be stateless in nature, as in the client-stateless-server (CSS) style of Section 3.4.3 (Figure 5-3), such that <strong>each request from client to server</strong> <strong>must contain all of the information</strong> <strong>necessary to understand the request</strong>, <strong>and cannot take advantage of any</strong> <strong>stored context on the server</strong>. </p> <p><strong>Session state is therefore kept entirely on the client.</strong></p> <p>This constraint induces the properties of <strong>visibility, reliability, and scalability.</strong></p> <p><strong>Visibility</strong> is improved because a monitoring system does not have to look beyond a single request datum in order to determine the full nature of the request.</p> <p><strong>Reliability</strong> is improved because it eases the task of recovering from partial failures [133]. </p> <p><strong>Scalability</strong> is improved because not having to store state between requests allows the server component to quickly free resources, and further simplifies implementation because the server doesn't have to manage resource usage across requests.</p> </blockquote> <p>Roy does go on to say the application of this constraint is a design trade-off and there are negative impacts of this choice. </p> <p>Once you choose not to use session state in your application architecture, then you are left with maintaining things like shopping carts in one of two ways. Either the cart is maintained completely by the client application, or it is stored as Resource state. What makes something a Resource is that it is identified by a URI and can be manipulated by the standard verbs of the interface. If you do store the cart as a Resource, then as Stefan says you can send a link to the resource to a colleague. With this approach, the shopping cart can be implemented as you do any other resource.</p> http://stackoverflow.com/questions/1653445/how-can-i-prevent-user-agents-from-presenting-a-download-window-for-unrecognized/1654315#1654315 0 Answer by Darrel Miller for How can I prevent user-agents from presenting a download window for unrecognized mime types? Darrel Miller 2009-10-31T12:58:14Z 2009-10-31T12:58:14Z <p>I actually took two approaches to this. One, I wrote my own mini-browser so that I could see any response and issue PUT, POST and DELETE requests. The other is to run Fiddler, whilst making the request with the browser. You can see all the details in the request and response with Fiddler.</p> http://stackoverflow.com/questions/1649793/why-do-people-want-to-deliver-both-json-and-xml-as-output-to-their-rest-interface 11 Why do people want to deliver both Json and XML as output to their REST interfaces? Darrel Miller 2009-10-30T13:23:11Z 2009-10-30T16:07:13Z <p>I understand why "REST framework" vendors want to provide the support for returning both Json based representations and XML based representations, <strong>but why do people want to return both from the same service</strong>?</p> <ul> <li><p>Is it because you will have client applications that are built on a platform that has <strong>no available Json parser</strong>? </p></li> <li><p>Is it because you are hoping for wider adoption of the interface because you can <strong>appeal to more people</strong>?</p></li> <li><p>Is it because you feel that it a <strong>standard convention</strong> that all RESTful interfaces follow?</p></li> </ul> <p>If you do deliver both:</p> <p>Do you <strong>avoid namespaces in the XML</strong> so that it can be compatible with the Json format? Or do you have just one namespace for all of your data elements?</p> <p>Do you have some kind of standardized mechanism for <strong>mapping attributes and elements</strong> into some kind of consistent Json format, or do you just avoid attributes in your XML? </p> <p>Do you create <strong>different endpoints for each representation</strong>, or do you use content negotiation to deliver the requested format? Do you have a default format?</p> <p>If you use <strong>caching</strong> on editable resources and use different URLs, how do you ensure that when one <strong>representation is invalidated</strong> that the other representations are also invalidation?</p> <p>Do you feel the benefit of supporting multiple formats is <strong>worth the effort</strong> required?</p> <h2>Summary of responses:</h2> <p>So the primary reason seems to be one of preference. Some developers prefer curly braces and some prefer angle brackets.</p> <p>Some people want to migrate from XML to Json and therefore supporting both is required for backward compatibility.</p> <p>Some want to use Json, but are concerned that some developers are scared of Json, so they support both so as not to offend anyone.</p> <p>It is easy to turn the feature on in framework XYZ so why not!</p> <p>Another interesting suggested reason, is JSON can be used to provide a quick a dirty data summary and XML can be used as a semantically rich complete representation.</p> http://stackoverflow.com/questions/1645744/how-to-design-a-restful-api-for-a-media-analysis-engine/1646009#1646009 3 Answer by Darrel Miller for How to design a REStful API for a media analysis engine Darrel Miller 2009-10-29T19:28:09Z 2009-10-30T11:14:27Z <p>You can fix the entry point url, </p> <pre><code>GET /facerecognition &lt;FaceRecognitionService&gt; &lt;Profiles href="/facerecognition/profiles"/&gt; &lt;AnalysisRequests href="/facerecognition/analysisrequests"/&gt; &lt;/FaceRecognitionService&gt; </code></pre> <p>Create a new profile by posting the XML profile to the URL in the href attribute of the Profiles element</p> <pre><code>POST /facerecognition/profiles 201 - Created Location: /facerecognition/profile/33 </code></pre> <p>Initiate the analysis by creating a new Analysis Request. I would avoid using the term session as it is too generic and has lots of negative associations in the REST world.</p> <pre><code>POST /facerecognition/analysisrequests?profileId=33 201 - Created Location: /facerecognition/analysisrequest/2103 </code></pre> <p>Check the status of the process</p> <pre><code>GET /facerecognition/analysisrequest/2103 &lt;AnalysisRequest&gt; &lt;Status&gt;Processing&lt;/Status&gt; &lt;Cancel Method="DELETE" href="/facerecognition/analysisrequest/2103" /&gt; &lt;/AnalysisRequest&gt; </code></pre> <p>when the processing has finished, the same GET could return </p> <pre><code>&lt;AnalysisRequest&gt; &lt;Status&gt;Completed&lt;/Status&gt; &lt;Results href="/facerecognition/analysisrequest/2103/results" /&gt; &lt;/AnalysisRequest&gt; </code></pre> <p>The specific URLs that I have chosen are relatively arbitrary, you can use whatever is the clearest to you.</p> http://stackoverflow.com/questions/1632530/how-to-validate-rest-request/1640800#1640800 2 Answer by Darrel Miller for How to validate REST request? Darrel Miller 2009-10-28T23:29:49Z 2009-10-28T23:29:49Z <p>To my knowledge, REST does not have anything to say on the contents of the POST body. </p> <p>Obviously, you have to validate the XML on the server anyway, so the best you can do is recommend that the client validates the XML against the DTD before sending it, to save on time and bandwidth. However, you really have no way to enforce it.</p> <p>I think your responsibility as a service writer is to accept the request whether or not it refers to the DTD, but that is just my opinion.</p> http://stackoverflow.com/questions/1640080/c-or-python-for-my-app/1640111#1640111 0 Answer by Darrel Miller for C# or Python for my app Darrel Miller 2009-10-28T21:05:39Z 2009-10-28T21:05:39Z <p>If you are doing any kind of HTTP work with C# make sure you take a look at the new HttpClient library that is in <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24644" rel="nofollow">WCF REST Starter Preview2</a>. Ignore the name of that download, the HttpClient part can be used independently of WCF.</p> <p>It is a WAY better client than just using HttpWebRequest.</p> http://stackoverflow.com/questions/1637122/what-is-the-maximum-size-of-document-to-return-from-a-rest-api/1637335#1637335 4 Answer by Darrel Miller for What is the maximum size of document to return from a REST API? Darrel Miller 2009-10-28T13:45:20Z 2009-10-28T13:45:20Z <p>This is really a constraint of HTTP and nothing to do with REST. Personally, I regularly download content that is hundreds of megabytes over HTTP and don't have any problems. </p> http://stackoverflow.com/questions/1635032/wcf-rest-adding-data-using-post-or-put-400-bad-request/1636934#1636934 0 Answer by Darrel Miller for WCF REST adding data using POST or PUT 400 Bad Request Darrel Miller 2009-10-28T12:24:56Z 2009-10-28T12:24:56Z <p>I suspect you may be either missing some namespaces in your XML or you are not formating the XML as the DataContractSerializer wants it. </p> <p>Try just using the DataContractSerializer to deserialize an instance of your Entity class and see exactly what the XML is supposed to look like.</p> http://stackoverflow.com/questions/1636097/json-representation-for-rest-file-or-post-form-data/1636907#1636907 0 Answer by Darrel Miller for json representation for REST. File or POST form data ? Darrel Miller 2009-10-28T12:19:34Z 2009-10-28T12:19:34Z <p>You should have no problem posting a JSON entity directly from Javascript. See <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">here</a> for examples on how to do it with jQuery.</p> <p>I see no advantage to using a Form to post the data.</p> http://stackoverflow.com/questions/1626799/approach-for-rest-request-with-long-execution-time/1631082#1631082 3 Answer by Darrel Miller for Approach for REST request with long execution time? Darrel Miller 2009-10-27T14:10:57Z 2009-10-27T14:10:57Z <p>This is one approach.</p> <p>Create a new request to perform ProcessXYZ</p> <pre><code>POST /ProcessXYZRequests 201-Created Location: /ProcessXYZRequest/987 </code></pre> <p>If you want to see the current status of the request:</p> <pre><code>GET /ProcessXYZRequest/987 &lt;ProcessXYZRequest Id="987"&gt; &lt;Status&gt;In progress&lt;/Status&gt; &lt;Cancel method="DELETE" href="/ProcessXYZRequest/987"/&gt; &lt;/ProcessXYZRequest&gt; </code></pre> <p>when the request is finished you would see something like</p> <pre><code>GET /ProcessXYZRequest/987 &lt;ProcessXYZRequest&gt; &lt;Status&gt;Completed&lt;/Status&gt; &lt;Results href="/ProcessXYZRequest/Results"/&gt; &lt;/ProcessXYZRequest&gt; </code></pre> <p>Using this approach you can easily imagine what the following requests would give</p> <pre><code>GET /ProcessXYZRequests/Pending GET /ProcessXYZRequests/Completed GET /ProcessXYZRequests/Failed GET /ProcessXYZRequests/Today </code></pre> http://stackoverflow.com/questions/1626013/how-to-lazy-load-in-a-restful-manner/1626156#1626156 2 Answer by Darrel Miller for How to "lazy load" in a RESTful manner? Darrel Miller 2009-10-26T17:30:52Z 2009-10-26T17:30:52Z <p>Don't forget, hypermedia is your friend.</p> <pre><code>GET /hotel/{id} HTTP/1.1 200 OK &lt;hotel Id="99"&gt; &lt;a&gt;aaa&lt;/a&gt; &lt;b&gt;aaa&lt;/b&gt; &lt;biggieLink href="/Hotel/99/Biggie"/&gt; &lt;/hotel&gt; </code></pre> <p>or you can even do</p> <pre><code>GET /hotel/{id} HTTP/1.1 200 OK &lt;hotel Id="99"&gt; &lt;a&gt;aaa&lt;/a&gt; &lt;b&gt;aaa&lt;/b&gt; &lt;biggieSynopsis href="/Hotel/99/Biggie"&gt; &lt;title&gt;Here is a a summary of biggie&lt;/title&gt; &lt;/biggieSynopsis &lt;/hotel&gt; </code></pre> http://stackoverflow.com/questions/1625021/how-to-return-generated-id-in-restful-post/1625652#1625652 4 Answer by Darrel Miller for How to return generated ID in RESTful POST? Darrel Miller 2009-10-26T16:06:58Z 2009-10-26T16:06:58Z <p>Return the status code 201 - Created, and put the URL in the Location header. You don't need to return a body at all.</p> http://stackoverflow.com/questions/1625426/use-dtd-to-describe-xml-returned-in-restful-service/1625467#1625467 2 Answer by Darrel Miller for Use DTD to describe XML returned in RESTful service? Darrel Miller 2009-10-26T15:25:32Z 2009-10-26T15:25:32Z <p>Considering the markup you have chosen appears to be custom to your requirements then I would expect to see a media-type such as </p> <pre><code>application/vnd.yourcompany.hotel+xml </code></pre> <p>in your content-type HTTP header. Based on this content-type, the client will know whether it has the knowledge to process this representation.</p> http://stackoverflow.com/questions/1622085/how-to-obtain-rest-resource-with-different-finder-methods/1622170#1622170 7 Answer by Darrel Miller for How to obtain REST resource with different finder "methods"? Darrel Miller 2009-10-25T21:40:01Z 2009-10-25T21:59:43Z <p>How about?</p> <pre><code>GET /Companies?ticker=MSFT GET /Companies?country=USA GET /Companies?country=USA&amp;industry=software </code></pre> <p>The important thing is to identify the resource. The resource is "a list of Companies". Its media type could be an Atom list, or just an HTML document using UL LI tags. The query parameters affect the contents of the list, but conceptually, it is still "a list of companies".</p> <p>You could create a distinct resource such as </p> <pre><code>GET /Companies/USA </code></pre> <p>but do you really need to. Are you going to POST to /Companies/USA? Are you going to delete /Companies/USA? If your application does not require the ability to perform additional operations on these specific sets of companies then why bother modeling them as distinct resources?</p> <p>As a side note to this discussion, I like to distinguish more clearly when I am accessing a resource which is a single entity versus a list. i.e.</p> <pre><code>GET /Companies/USA GET /Company/MSFT </code></pre> <p>I realize this is not the way some of the popular web frameworks work, but I have found it a useful distinction.</p> http://stackoverflow.com/questions/436998/multiply-2-numbers-and-then-sum-with-xslt/437643#437643 Comment by Darrel Miller on Multiply 2 numbers and then sum with XSLT Darrel Miller 2009-12-09T02:41:16Z 2009-12-09T02:41:16Z Thanks. Solution #2 was exactly what I needed to create an aggregate multiplication function. http://stackoverflow.com/questions/1842770/consume-rest-api-from-net/1843892#1843892 Comment by Darrel Miller on Consume RESt API from .NET Darrel Miller 2009-12-08T23:00:30Z 2009-12-08T23:00:30Z Hmmm, good news and bad news. Apparently it is supported in .Net 4 <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.date(VS.100).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1842770/consume-rest-api-from-net/1843892#1843892 Comment by Darrel Miller on Consume RESt API from .NET Darrel Miller 2009-12-08T22:56:06Z 2009-12-08T22:56:06Z My apologies. I dug into the source code for HttpClient and you are correct that setting the Date header is not supported. According to a comment in the code, the author does not know how to do it. I wrongly assumed that because there was a set accessor on the method that it was supported. Apparently the library authors intended to support it. http://stackoverflow.com/questions/1842770/consume-rest-api-from-net/1843892#1843892 Comment by Darrel Miller on Consume RESt API from .NET Darrel Miller 2009-12-08T00:13:35Z 2009-12-08T00:13:35Z Why not? Do you get an error? http://stackoverflow.com/questions/1850293/wcf-rest-where-is-the-request-data/1850793#1850793 Comment by Darrel Miller on WCF + REST: Where is the request data? Darrel Miller 2009-12-07T03:05:51Z 2009-12-07T03:05:51Z Thanks for replying. I now understand why you are taking this approach. It is interesting that in order to understand why WCF works the way it does you have to dig into the implementation. It sort of defeats the purpose of trying to abstract away the complexity! http://stackoverflow.com/questions/1853250/real-time-twitter-status Comment by Darrel Miller on Real Time Twitter Status Darrel Miller 2009-12-05T21:08:19Z 2009-12-05T21:08:19Z Just to be pedantic, the Twitter API isn't even close to being a REST api. There is almost no hypermedia. The messages are not self-descriptive. It is an XML over HTTP but that does not make it REST. http://stackoverflow.com/questions/1850293/wcf-rest-where-is-the-request-data/1850793#1850793 Comment by Darrel Miller on WCF + REST: Where is the request data? Darrel Miller 2009-12-05T21:03:49Z 2009-12-05T21:03:49Z Holy cow! That's even worse than my solution :-) http://stackoverflow.com/questions/1842770/consume-rest-api-from-net/1842908#1842908 Comment by Darrel Miller on Consume RESt API from .NET Darrel Miller 2009-12-04T14:56:24Z 2009-12-04T14:56:24Z The problem with the example that you are giving is that you can only do the linq query against ADO.Net Data Service endpoints. You cannot do that against other REST endpoints. The OP will not be able to do this against his Java APIs. http://stackoverflow.com/questions/1829875/is-it-ok-by-rest-to-return-content-after-post/1832046#1832046 Comment by Darrel Miller on Is it ok by REST to return content after POST? Darrel Miller 2009-12-02T16:15:27Z 2009-12-02T16:15:27Z Make sense to me. I've never used the Content-Location header before. http://stackoverflow.com/questions/1829875/is-it-ok-by-rest-to-return-content-after-post/1832046#1832046 Comment by Darrel Miller on Is it ok by REST to return content after POST? Darrel Miller 2009-12-02T12:21:41Z 2009-12-02T12:21:41Z I think Content-Location is for a different purpose. The HTTP spec says Content-Location is not defined for POST and PUT. The Location header is used with a 201-Create. Returning a Location does not do automatically do a redirect, you need a 3XX response code for that. http://stackoverflow.com/questions/1825102/consuming-wcf-rest-service-in-multiple-ways-net-plain-xml/1825875#1825875 Comment by Darrel Miller on Consuming WCF REST service in multiple ways (.Net, plain XML) Darrel Miller 2009-12-02T12:11:12Z 2009-12-02T12:11:12Z If you use WCF Data Services (aka Astoria) in .Net 4 and VS2010 you will be able to &quot;Add Service Reference&quot; to it. I don't agree with the practice, but people want to do it. http://stackoverflow.com/questions/1825102/consuming-wcf-rest-service-in-multiple-ways-net-plain-xml/1825875#1825875 Comment by Darrel Miller on Consuming WCF REST service in multiple ways (.Net, plain XML) Darrel Miller 2009-12-01T19:22:41Z 2009-12-01T19:22:41Z oops, that should have read &quot;WCF REST Starter Kit Preview 2&quot; http://stackoverflow.com/questions/1825102/consuming-wcf-rest-service-in-multiple-ways-net-plain-xml/1825875#1825875 Comment by Darrel Miller on Consuming WCF REST service in multiple ways (.Net, plain XML) Darrel Miller 2009-12-01T19:21:58Z 2009-12-01T19:21:58Z In the WCF REST Start Kit there is a function called &quot;Paste XML as Type&quot; that allows you to generate classes based on returned XML that is in the clipboard. http://stackoverflow.com/questions/1775782/does-anyone-know-of-an-example-of-a-restful-client-that-follows-the-hateoas-princ/1777261#1777261 Comment by Darrel Miller on Does anyone know of an example of a RESTful client that follows the HATEOAS principle? Darrel Miller 2009-11-22T02:23:51Z 2009-11-22T02:23:51Z I'm not actually using xlink, but I have considered it on numerous occasions. I'll see what I can do to create a good code example of what I currently do. http://stackoverflow.com/questions/1773999/mimetypes-for-a-restful-api/1774153#1774153 Comment by Darrel Miller on Mimetypes for a RESTful API Darrel Miller 2009-11-22T02:21:34Z 2009-11-22T02:21:34Z As Rich mentions, the mime-type is your contract. The entire semantic value of your application is contained in the mime-type. If you only deliver application/json the client can get very little value from your data without introducing out of band coupling, exactly what REST is trying to prevent.