User Rich Apodaca - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T15:32:42Zhttp://stackoverflow.com/feeds/user/54426http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1860306/net-how-to-efficiently-check-for-uniqueness-in-a-liststring-of-50-000-items/1860700#18607000Answer by Rich Apodaca for .NET: How to efficiently check for uniqueness in a List<string> of 50,000 items?Rich Apodaca2009-12-07T15:28:39Z2009-12-07T15:28:39Z<p>Possibly off-topic, but if you want to scale very large unique sets of strings (millions+) in a language-independent way, you might check out <a href="http://en.wikipedia.org/wiki/Bloom%5Ffilter" rel="nofollow">Bloom Filters</a>.</p>
http://stackoverflow.com/questions/1814337/jspec-rangeerror-maximum-call-stack-size-exceeded0JSpec - RangeError: Maximum call stack size exceeded.Rich Apodaca2009-11-29T01:15:40Z2009-11-29T01:23:39Z
<p>With my two attempts at getting a message posted to the <a href="http://groups.google.com/group/jspec" rel="nofollow">JSpec Google Group</a> having apparently failed, I'm posting here instead.</p>
<p>I'm having trouble with <a href="http://visionmedia.github.com/jspec/" rel="nofollow">JSpec</a> apparently going into an infinite recursive loop with a certain kind of test (below). Any ideas? It there something wrong with my code or is it JSpec? I'm Running JSpec 2.11.2 via Ruby Gem.</p>
<p>The errors are 'RangeError: Maximum call stack size exceeded.' (Safari) and 'InternalError: too much recursion' (FF/Mac). I can add an Item to a Room using the Firebug console, with no errors.</p>
<p>To reproduce the problem, create a template jspec project using 'jspec init test'. Then edit the following files like so:</p>
<p><strong>yourlib.core.js</strong></p>
<pre><code>var Game = {};
Game.item = function () {
var result = {
name : 'Undefined',
room : null
}
return result;
};
Game.room = function () {
var result = {
items : [],
addItem : function (name) {
var item = Game.item();
item.name = name;
item.room = this;
this.items.push(item);
return item;
}
};
return result;
};
</code></pre>
<p><strong>spec.core.js</strong></p>
<pre><code>describe 'Room'
before_each
room = Game.room()
end
describe 'addItem()'
before_each
potion = room.addItem('Potion')
key = room.addItem('Key')
end
//this is fine
it 'should return two different items'
key.should_not.be potion
end
//InternalError: too much recursion
it 'should not give recursion error'
key.should.be potion
end
end
end
</code></pre>
http://stackoverflow.com/questions/1773999/mimetypes-for-a-restful-api/1774342#17743421Answer by Rich Apodaca for Mimetypes for a RESTful APIRich Apodaca2009-11-21T02:45:48Z2009-11-21T02:45:48Z<blockquote>
<p>Or should I just serve up "application/json" like most APIs seem to do?</p>
</blockquote>
<p>I don't think so.</p>
<p>A media type is the only point of coupling between your RESTful web application and the clients that use it. The documentation of your media types is the documentation of your API. Your media types are the contract between your clients and your application. Eliminate the specific media type and you eliminate an important element that makes REST workable.</p>
<blockquote>
<p>Sun has registered these mimetypes with the IANA.</p>
</blockquote>
<p>Couldn't find <a href="http://www.iana.org/assignments/media-types/application/" rel="nofollow">any mention of that here</a>. AFAIK, there is no requirement to actually register your custom media type with the IANA. The convention seems to be to use the inverted domain notation of application/vnd.com.example.app.foo+json, which prevents namespace conflicts. If and when your media type becomes stable and public, it might be a good idea, but there's no requirement. Could be wrong on this, though.</p>
http://stackoverflow.com/questions/1582783/heroku-display-git-revision-hash-and-timestamp-in-views1Heroku: Display Git Revision Hash and Timestamp in Views?Rich Apodaca2009-10-17T17:47:58Z2009-11-16T03:19:34Z
<p>Let's say I have a Rails application deployed on <a href="http://heroku.com" rel="nofollow">Heroku</a>. How can I display these pieces of information in my views?</p>
<ul>
<li>The Git hash for the last revision</li>
<li>The Timestamp for the last revision</li>
</ul>
http://stackoverflow.com/questions/459822/from-c-source-to-java-bytecode1From C Source to Java Bytecode?Rich Apodaca2009-01-20T01:10:51Z2009-11-12T16:59:01Z
<p>I'm looking for a way to compile C source code into high-performance Java bytecode. I've successfully used <a href="http://wiki.brianweb.net/NestedVM/NestedVM" rel="nofollow">NestedVM</a>, but the performance hit is not acceptable for a project I'm working on. I've also seen various open source projects aimed at this problem and a couple of commercial products.
<a href="http://stackoverflow.com/questions/46758/tools-for-converting-non-java-into-java-source">This SO question</a> deals with general problem of converting non-Java into Java source, but I only want to go from C to Java bytecode.</p>
<p>What's the best way to compile C source code into high-performance, pure Java bytecode?</p>
http://stackoverflow.com/questions/459822/from-c-source-to-java-bytecode/1723666#17236660Answer by Rich Apodaca for From C Source to Java Bytecode?Rich Apodaca2009-11-12T16:49:35Z2009-11-12T16:59:01Z<p>Thanks to <a href="http://stackoverflow.com/questions/459822/from-c-source-to-java-bytecode/1720807#1720807">feroz</a>, I was reminded of <a href="http://tech.novosoft-us.com/product%5Fc2j.jsp" rel="nofollow">C2J</a>, which looks like it's GPL-licensed (at least for the beta period - which started in... 2001?). Not sure if it uses a NestedVM-type approach or something else. Might be worth checking out again.</p>
http://stackoverflow.com/questions/1694673/comparing-data-with-restful-api/1695214#16952141Answer by Rich Apodaca for Comparing data with RESTful APIRich Apodaca2009-11-08T03:02:23Z2009-11-08T03:07:24Z<p>If I strip out the domain-specific details from your question, here's what I get:</p>
<p>In your RESTful client-server application, the client stores a local copy of a large resource. Periodically, the client needs to check with the server to determine whether its copy of the resource is up-to-date.</p>
<p><a href="http://stackoverflow.com/questions/1694673/comparing-data-with-restful-api/1694789#1694789">marshally's suggestion</a> is to use HTTP caching, which IMO is a good approach provided it can be done within your app's constraints (e.g., authentication system).</p>
<p>The downside is that if the resource is stale in any way, you'll be downloading the entire list, which sounds like it's not feasible in your situation.</p>
<p>Instead, how about re-evaluating the need to keep a local copy of the Wishlist in the first place:</p>
<ul>
<li>How is your client currently using the local Wishlist?</li>
<li>If you had to, how would you replace the local copy with data fetched from the server?</li>
<li>What have you done to minimize your client's data requirements when building its Wishlist view(s) and executing business logic?</li>
</ul>
http://stackoverflow.com/questions/1625935/heroku-serving-large-dynamically-generated-assets-without-a-local-filesystem3Heroku: Serving Large Dynamically-Generated Assets Without a Local FilesystemRich Apodaca2009-10-26T16:57:34Z2009-10-26T19:09:16Z
<p>I have a question about hosting large dynamically-generated assets and <a href="http://heroku.com" rel="nofollow">Heroku</a>.</p>
<p>My app will offer bulk download of a subset of its underlying data, which will consist of a large file (>100 MB) generated once every 24 hours. If I were running on a server, I'd just write the file into the public directory.</p>
<p>But as I understand it, this is not possible with Heroku. The /tmp directory can be written to, but the guaranteed lifetime of files there <a href="http://docs.heroku.com/constraints#read-only-filesystem" rel="nofollow">seems to be defined</a> in terms of one request-response cycle, not a background job.</p>
<p>I'd like to use S3 to host the download file. The <a href="http://amazon.rubyforge.org/" rel="nofollow">S3 gem</a> does support streaming uploads, but only for files that already exist on the local filesystem. It looks like the content size needs to be known up-front, which won't be possible in my case.</p>
<p>So this looks like a catch-22. I'm trying to avoid creating a gigantic string in memory when uploading to S3, but S3 only supports streaming uploads for files that already exist on the local filesystem.</p>
<p>Given a Rails app in which I can't write to the local filesystem, how do I serve a large file that's generated daily without creating a large string in memory?</p>
http://stackoverflow.com/questions/1582150/yahoo-openid-website-compatibility/1623257#16232570Answer by Rich Apodaca for Yahoo openid website compatibility...Rich Apodaca2009-10-26T05:40:51Z2009-10-26T05:40:51Z<p><a href="http://wilkinsonlab.ca/home/node/31" rel="nofollow">This page</a> has a nice writeup, and has a link to a sample XRDS document that is unfortunately broken.</p>
<p>But I did find the sample document here (scroll to bottom and translate for your framework):</p>
<p><a href="http://blog.facilelogin.com/2008/07/let-rest-discover-your-openid-relying.html" rel="nofollow">Let the rest discover your OpenID relying party</a></p>
http://stackoverflow.com/questions/1619152/how-to-create-rest-urls-without-verbs/1619422#16194223Answer by Rich Apodaca for How to create REST URL's without verbs?Rich Apodaca2009-10-24T22:54:18Z2009-10-24T22:54:18Z<p>Whenever it looks like you need a new verb, think about turning that verb into a noun instead. For example, turn 'activate' into 'activation', and 'validate' into 'validation'.</p>
<p>But just from what you've written I'd say your application has much bigger problems.</p>
<p>Any time a resource called 'parameter' is proposed, it should send up red flags in every project team member's mind. 'parameter' can literally apply to any resource; it's not specific enough.</p>
<p>What exactly does a 'parameter' represent? Probably a number of different things, each of which should have a separate resource dedicated to it.</p>
<p>Another way to get at this - when you discuss your application with end users (those who presumably know little about programming) what are the words they themselves use repeatedly?</p>
<p>Those are the words you should be designing your application around.</p>
<p>If you haven't yet had this conversion with prospective users - stop everything right now and don't write another line of code until you do! Only then will your team have an idea of what needs to be built.</p>
<p>I know nothing about financial software, but if I had to guess, I'd say some of the resources might go by names such as "Report", "Payment", "Transfer", and "Currency".</p>
<p>There are a number of good books on this part of the software design process. Two I can recommend are <a href="http://books.google.com/books?id=7dlaMs0SECsC&dq=domain+driven+design&printsec=frontcover&source=bn&hl=en&ei=RITjSqCbNIeqtgPQ7NCwBA&sa=X&oi=book%5Fresult&ct=result&resnum=4&ved=0CBwQ6AEwAw#v=onepage&q=&f=false" rel="nofollow">Domain Driven Design</a> and <a href="http://books.google.com/books?id=4V8pZmpwmBYC&dq=analysis+patterns&printsec=frontcover&source=bn&hl=en&ei=a4TjSuXLHI-OswOZ6LiwBA&sa=X&oi=book%5Fresult&ct=result&resnum=4&ved=0CBUQ6AEwAw#v=onepage&q=&f=false" rel="nofollow">Analysis Patterns</a>.</p>
http://stackoverflow.com/questions/1546874/getting-real-with-rest/1548121#15481212Answer by Rich Apodaca for Getting real with RESTRich Apodaca2009-10-10T14:37:01Z2009-10-10T14:37:01Z<p>Remember - REST is nothing more than a set of architectural constraints for distributed computing, independent of any underlying transport protocol. When evaluating the RESTfullness of a client-server interaction, you're really checking to see if one or more of these contraints are broken.</p>
<blockquote>
<p>is REST also an interface "for the browser" or just for scripts ?</p>
</blockquote>
<p>When you browse Wikipedia with Firefox, you're controlling a REST client. The lack of support for PUT and DELETE doesn't detract from the RESTfullnes of the interaction because the meaning of HTTP verbs is outside the scope of REST. A more questionable point might be the way that sites and browsers support sessions. When each request must be understood in the context of a session, you could say that the constraint of statelessness of requests is broken.</p>
<blockquote>
<p>should we see the HTTP world exclusively through the eyes of a REST representation? are things like GET /foo/?page=bar&action=delete still a valid point of view, or horrible mistakes of the past never to be done again ?</p>
</blockquote>
<p>AFAIK, this doesn't in itself break a REST constraint, unless the same URI/verb combination does two different things. In that case, you'd be breaking the uniform interface constraint. I'd say this approach is bad from the perspective of deviating from the intent of the HTTP protocol, but not from the perspective of REST.</p>
<blockquote>
<p>should the web access and the REST interface be intermingled or separate? For example, suppose you have a AddressBook application. You can browse the address book with GET /people/, and with GET /people/1523 you obtain that single person information on the browser, maybe in a nice printable HTML. If you want to modify his card, you would do (RESTfully) PUT /people/1523, or instead have like PUT /api/v1.0/people/1523 ?</p>
</blockquote>
<p>I don't see a problem with a RESTful API working differently for browsers and for other REST clients. The most important thing is to provide consistent behavior across a class of clients. API versioning is beyond the scope of REST.</p>
<blockquote>
<p>could anyone please convince Roy Fielding to get human and provide a "5 years old child" example for a decent (in his opinion) REST API, instead of complaining about what is not RESTful (in his opinion), so that all the world can follow through?</p>
</blockquote>
<p>This was exactly how I felt after reading that post and coming up against the near total lack of real-world examples.</p>
<p>Darrel Miller's suggestion for the cup of coffee article is a good one. If you want to get even simpler, just go back to your initial example - the browser. Every kid I've seen using a Web browser quickly understands how it works. You start on some page. You find something you like. You follow the link. You get to another page. You find something you like there. You follow that link and get to another page. And so on.</p>
<p>It's funny how hard it's proven to reduce this simple idea to practice for non-browser clients. For inspiration, you might check out the <a href="http://kenai.com/projects/suncloudapis/pages/Home" rel="nofollow">Sun Cloud API</a>.</p>
http://stackoverflow.com/questions/1529322/is-it-a-good-thing-for-a-custom-rest-protocol-to-be-binary-based-instead-of-text/1529688#15296881Answer by Rich Apodaca for Is it a good thing for a custom rest protocol to be binary based instead of text based like Http?Rich Apodaca2009-10-07T05:38:23Z2009-10-07T05:38:23Z<blockquote>
<p>Have you ever seen a good reason to create a custom binary rest protocol instead of using the basic http rest implementation?</p>
</blockquote>
<p>I'm not sure I understand your terms. A REST representation can be completely binary, and still transported over pure HTTP. There's no need to invent a new protocol just to transmit binary data. Just reduce your requirements to a well-documented media type (which you're free to invent).</p>
<p>Regarding binary resource representations, <a href="http://roy.gbiv.com/untangled/2008/paper-tigers-and-hidden-dragons" rel="nofollow">Fielding himself</a> argues that binary is not only acceptable, but may be required in some situations.</p>
<p>Regardless of whether you go straight binary, Base64 mixed with text, or text-only, <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">don't forget the hypertext constraint</a> if you plan on calling what you do "REST".</p>
<blockquote>
<p>So am I making any sense for wanting a custom binary rest protocol?</p>
</blockquote>
<p>If you mean you'd like to create a custom, binary-only, hypertext-driven media type - that's perfectly reasonable.</p>
<p>If you're talking about inventing some custom extension to HTTP, I would avoid that unless absolutely necessary (and what you describe doesn't sound to me like it rises to that level).</p>
http://stackoverflow.com/questions/20059/suggestions-on-starting-a-child-programming/1488206#14882060Answer by Rich Apodaca for Suggestions on starting a child programming.Rich Apodaca2009-09-28T17:07:15Z2009-09-28T17:07:15Z<p><a href="http://scratch.mit.edu/" rel="nofollow">Scratch</a>.</p>
<p>Don't let the cartoon-like results fool you. Kids love this thing and it offers most of what you'd expect in a programming language: loops; conditional logic; events; subroutines; and object-oriented programming.</p>
<p>Other things to like:</p>
<ul>
<li><strong>Excellent documentation</strong></li>
<li><strong>Versatility</strong> Some kids like games. Other like to tell stories or create cartoons. Others like making music or graphic effects. All can be done with Scratch. Kids can even post their programs to Websites they create as part of multimedia/web classes.</li>
<li><strong>Environment</strong> Graphical development environment in which programming elements are snapped together. Shape and color are used very well as visual cues.</li>
<li><strong>Social coding</strong> Large collection of community-created programs with ratings system that kids can use to get new ideas, figure out how to solve particular problems, or share their creations with their peers.</li>
<li><strong>Hacking</strong> It's very easy for kids to add their own customized sounds and draw their own characters. Reminds me of digital construction paper.</li>
<li><strong>Approachable</strong> The interface is simple enough that kids can start using it with very little in the way of introduction.</li>
</ul>
<p>Most importantly, Scratch can be run on Windows, Linux, and OS X, so schools with mixed hardware setups won't be left out.</p>
http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid1OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-27T04:35:48Z2009-09-28T00:50:44Z
<p>I like the idea of OpenID, I really do. But few of my target users have even heard of it - yet. If I want to offer OpenID as an option, my only choice would seem to come down to offering BOTH email/password authentication AND OpenID.</p>
<p>I've seen several sites that use this combination and the idea seems unappealing to put it mildly. Placing both options on the same screen is distracting and pointless if only 10% of users will even care about OpenID.</p>
<p>So I'm wondering, how could I offer a single user interface that supports BOTH OpenID and email/password for authentication and account creation?</p>
<p>One possibility I've been considering is to use a single OpenID/email field that can detect whether an email or OpenID was used and then dynamically adjust the interface accordingly.</p>
<p>For example, an account creation page might start off with a single field labelled "email" with some unobtrusive text along the lines of "we support OpenID". If a user enters a url, then the interface switches to an OpenID account creation page (via JavaScript). If an email address is entered, nothing happens.</p>
<p>What's the best method you've seen for hiding OpenID from the average user, but at the same time letting tech-savvy users know that your site supports it?</p>
http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1484955#14849553Answer by Rich Apodaca for OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-28T00:50:44Z2009-09-28T00:50:44Z<p>Decided to do some checking around on my own. Turns out there's a much better idea out there. The term seems to be 'OpenID selector'.</p>
<p>There's a free JavaScript library called <a href="http://code.google.com/p/openid-selector/" rel="nofollow">JavaScript OpenID selector</a> that makes it easy to create this sort of thing:</p>
<p><img src="http://img9.imageshack.us/img9/1940/step1c.png" alt="alt text" /></p>
<p><a href="http://www.readwriteweb.com/archives/google%5Fis%5Fnow%5Fan%5Fopenid%5Fprovider.php" rel="nofollow">This article</a> explains the main problem and the solution:</p>
<blockquote>
<p>One of the key results of Yahoo's OpenID usability study was that users did not understand OpenID and what its logo stands for. Instead, Yahoo promoted the idea of giving users a sign-in button that simply said "Sign In with a Yahoo! ID" (though Chris Messina argues that this could be detrimental to OpenID in the long run).Google and its partners are taking a similar route and are basically bypassing any mention of OpenID itself in favor of a simple message saying "Sign in with a Google Account."</p>
</blockquote>
<p>There's even a <a href="http://github.com/vazqujav/authlogic%5Fopenid%5Fselector%5Fexample" rel="nofollow">sample Rails application</a> that rolls authlogic, openid, and the selector into a single package so you can see how everything fits together.</p>
http://stackoverflow.com/questions/410085/what-reasons-are-there-not-to-use-openid/1482683#14826830Answer by Rich Apodaca for What reasons are there NOT to use OpenID?Rich Apodaca2009-09-27T02:54:36Z2009-09-27T02:54:36Z<p>From what I can tell, it looks like an OpenID provider is not required to give out an account holder's email address, although some do.</p>
<p>If your service requires an email address to communicate with its users (for example, to send out a newsletter - which the many people who have never heard of RSS prefer), then you may have to capture an OpenID AND verify an email address.</p>
<p>A system in which just an email address and password are required and which employs an activation email message would be less work for users.</p>
http://stackoverflow.com/questions/1436922/what-are-the-main-patterns-and-or-attributes-that-make-an-application-restful/1481462#14814620Answer by Rich Apodaca for What are the main patterns and/or attributes that make an application RESTful?Rich Apodaca2009-09-26T15:32:14Z2009-09-26T15:32:14Z<p><a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">Hypermedia as the Engine of Application State</a> (HATEOAS). Interpreting REST with a clear grasp of this single constraint will make everything else about REST an order of magnitude easier to understand.</p>
http://stackoverflow.com/questions/1476023/what-ist-a-restful-resource-in-the-context-of-large-data-sets-i-e-weather-data/1481307#14813073Answer by Rich Apodaca for What ist a RESTful-resource in the context of large data sets, i.E. weather data?Rich Apodaca2009-09-26T14:14:59Z2009-09-26T14:14:59Z<blockquote>
<p>So I am working on a webservice to access our weather forecast data (10000 locations, 40 parameters each, hourly values for the next 14 days = about 130 million values). ... But what is a ressource in my case?</p>
</blockquote>
<p>That depends on the details of your problem domain. Simply having a large amount of data is not a good reason to avoid REST. There are smart ways and dumb ways to model and expose that data.</p>
<p>As you rightly see, your main goal at this point should be to understand what exactly a resource is. Knowing only enough about weather forecasting to follow the Weather Channel, I won't be much help here. It's for domain experts like yourself to make that call.</p>
<p>If you were to explain in a little more detail the major domain concepts you're working with, it might make it a little easier to give specific advice.</p>
<p>For example, one resource might be Forecast. When weatherpeople talk about Forecasts, what words keep coming up? When you think about breaking a forecast down into smaller elements, what words do you use to describe the pieces?</p>
<p>Do this process recursively, and you'll probably be able to make a list of important terms. Don't forget that these terms can describe things or actions. Think about what these terms really mean, what data you can use to model them, how they can be aggregated.</p>
<p>At this point you'll have the makings of something you can start building a RESTful system around - but not before.</p>
<p>Don't forget that a RESTful system is not a data dump wrapped in HTTP - it's a <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">hypertext-driven</a> system.</p>
<p>Also don't forget that <a href="http://roy.gbiv.com/untangled/2008/paper-tigers-and-hidden-dragons" rel="nofollow">media types</a> are the point of contact between your server and its clients. A media type is only limited by your imagination and can model datasets of any size if you're clever about it. It can contain XML, JSON, YAML, binary elements such as a Bloom Filter, or whatever works for the problem.</p>
http://stackoverflow.com/questions/1460307/opinions-needed-on-the-atomicity-of-a-restful-put/1461150#14611501Answer by Rich Apodaca for Opinions Needed on the Atomicity of a RESTful PUTRich Apodaca2009-09-22T16:30:10Z2009-09-22T16:36:08Z<blockquote>
<p>The question is: should the server have performed the update to /People/Bob?</p>
</blockquote>
<p>From <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow">the HTTP spec</a>, a 406 means:</p>
<blockquote>
<p>The resource identified by the request is only capable of generating response entities which have content characteristics not acceptable according to the accept headers sent in the request.</p>
<p>Unless it was a HEAD request, the response SHOULD include an entity containing a list of available entity characteristics and location(s) from which the user or user agent can choose the one most appropriate. The entity format is specified by the media type given in the Content-Type header field. Depending upon the format and the capabilities of the user agent, selection of the most appropriate choice MAY be performed automatically. However, this specification does not define any standard for such automatic selection.</p>
<pre><code> Note: HTTP/1.1 servers are allowed to return responses which are
not acceptable according to the accept headers sent in the
request. In some cases, this may even be preferable to sending a
406 response. User agents are encouraged to inspect the headers of
an incoming response to determine if it is acceptable.
</code></pre>
<p>If the response could be unacceptable, a user agent SHOULD temporarily stop receipt of more data and query the user for a decision on further actions.</p>
</blockquote>
<p>That note in the middle about HTTP/1.1 may be your answer. I read it as saying "you may return a 200 in response to the PUT request to /People/Bob when the user agent specifies application/xml in the Accept header, selecting any suitable content-type, and that this outcome may be preferable to returning 406."</p>
<p>Under this scenario, the PUT would succeed on the server, return a 200, but the client would get an application/json representation. The client needs to be able to handle that possibility by making sure that it understands the media type given in the Content-type header, and behaving in a well-defined manner if it doesn't.</p>
<p>But this is always true anyway.</p>
<p>One more thing: you may want to consider not using plain-vanilla media types like application/xml and application/json, but instead define your own custom media types, maybe based on XHTML or JSON. All of the <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">client-server coupling in a RESTful application</a> happens through media types. Without media types rich enough to capture your domain concepts, you're incompletely specifying your REST API.</p>
http://stackoverflow.com/questions/1444553/restful-route-for-a-list-of-members-that-are-not-in-a-collection/1445110#14451102Answer by Rich Apodaca for RESTful route for a list of members that are not in a collection.Rich Apodaca2009-09-18T15:00:40Z2009-09-18T17:15:17Z<p>Either query parameters or paths can be used to get at the representation you want. But I'd follow Pete's advice and make sure your API is <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">hypertext-driven</a>. Not doing so introduces coupling between client and server that REST was intended to prevent.</p>
<p>The best answer to your question might depend on your application. For example, if your system is small enough, it may suffice to only support a representation consisting of a list of users and their respective groups (the resource found at /users). Then let the client sort out what they want to do with the information. If your system has lots of groups and lots of users, each of which belongs to only a couple of groups, your available_users representation for any group is likely to be only slightly smaller than the entire list of users anyway.</p>
<p><a href="http://roy.gbiv.com/untangled/2008/paper-tigers-and-hidden-dragons" rel="nofollow">Creative design of media types</a> can go a long way to solving problems like this.</p>
http://stackoverflow.com/questions/1426845/incrementing-resource-counter-in-a-restful-way-put-vs-post/1427619#14276191Answer by Rich Apodaca for Incrementing resource counter in a RESTful way: PUT vs POSTRich Apodaca2009-09-15T14:41:54Z2009-09-15T14:41:54Z<p>An alternative might be to add another resource to the system to track the viewings of a profile. You might call it "Viewing".</p>
<p>To see all Viewings of a profile:</p>
<p>GET /profiles/123/viewings</p>
<p>To add a viewing to a profile:</p>
<p>POST /profiles/123/viewings #here, you'd submit the details using a custom media type in the request body.</p>
<p>To update an existing Viewing:</p>
<p>PUT /viewings/815 # submit revised attributes of the Viewing in the request body using the custom media type you created.</p>
<p>To drill down into the details of a viewing:</p>
<p>GET /viewings/815</p>
<p>To delete a Viewing:</p>
<p>DELETE /viewings/815</p>
<p>Also, because you're asking for best-practice, be sure your RESTful system is <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">hypertext-driven</a>.</p>
<p>For the most part, there's nothing wrong with using query parameters in URIs - just don't give your clients the idea that they can manipulate them.</p>
<p>Instead, create a media type that embodies the concepts the parameters are trying to model. Give this media type a concise, unambiguous, and descriptive name. Then document this media type. The real problem of exposing query parameters in REST is that the practice often leads out-of-band communication, and therefore increased coupling between client and server.</p>
<p>Then give your system a uniform interface. For example, adding a new resource is always a POST. Updating a resource is always a PUT. Deleting is DELETE, and getiing is GET.</p>
<p>The hardest part about REST is understanding how media types figure into system design (it's also the part that Fielding left out of his dissertation because he ran out of time). If you want a specific example of a hypertext-driven system that uses and doucuments media types, see the <a href="http://kenai.com/projects/suncloudapis/pages/Home" rel="nofollow">Sun Cloud API</a>.</p>
http://stackoverflow.com/questions/1402721/rest-how-to-create-a-resource-that-depends-on-three-or-more-resources-of-differe1REST: How to Create a Resource That Depends on Three or More Resources of Different Types?Rich Apodaca2009-09-09T23:43:16Z2009-09-10T10:16:41Z
<p>A RESTful, <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">hypertext-driven</a> system needs to enable clients to create a new resource that depends on three or more resources of different types. What's the best method to expose this capability?</p>
<p>As an example, let's say I run an online store. The server knows about four resources:</p>
<ul>
<li>Order: The group of products to be shipped. [has one Shipment]</li>
<li>Destination: The location to ship to. [has many Shipments]</li>
<li>Shipment: The act of sending a Product to a Customer. [belongs to Destination, Order, and Packer]</li>
<li>Packer: The employee physically preparing the Order for Shipment. [has many Shipments]</li>
</ul>
<p>When the Order is shipped, a client needs to record this event by creating a new Shipment on the server. The Shipment will require references to Destination, Order, and Packer.</p>
<p>To implement the creation of new Shipments, I can think of three approaches, and I don't like any of them:</p>
<ol>
<li>POST to /shipments using the Shipment media type. The Shipment media type has three fields: "order_uri"; "packer_uri"; and "destination_uri". Each URI is being used as a unique identifier for the Order, Packer, and Destination involved in the Shipment, respectively.</li>
<li>POST to /orders/{order_id}/packers/{packer_id}/destinations/{destination_id}/shipments using the Shipment media type.</li>
<li>Add a new resource to the system called "ShipmentBuilder". POST to /shipment_builders using "packer_uri", "destination_uri", and "order_uri" contained within a ShipmentBuilder media type.</li>
</ol>
<p>I don't like Option 1 because the Shipment media type additionally defines links to the Order, Packer, and Destination. Here, a "link" is a JSON hash consisting of a human readable name, a URI, and a media type. Adding "order_uri", "packer_uri", and "destination_uri" to the media type doesn't seem very DRY because it duplicates the URIs for the associated resources.</p>
<p>Option 2 uses deeply-nested URIs, which neither look very maintainable nor capture any meaningful hierarchical information.</p>
<p>Option 3 places another level of abstraction between clients and the creation of Shipments, which makes the system harder to learn.</p>
<p>If a Shipment only depended on one other resource, Option 2 would make a lot more sense, but it doesn't in this case. As it stands, I favor Option 3, but would prefer something better.</p>
<p>In this example, what would be the best combination of URI and media type for creating a new Shipment? What other approaches should be considered?</p>
<p>Update: below is a JSON example representation of a Shipment resource showing links for order, packer, and destination. The URI duplication required by Option 1 appears in the "shipment" hash:</p>
<pre><code>{
"shipment":{
"created_at": "Wed Sep 09 18:38:31 -0700 2009",
"order_uri":"http://example.com/orders/815",
"packer_uri":"http://example.com/packers/42",
"destination_uri":"http://example.com/destinations/666"
},
"order":{
"name":"the order to which this shipment belongs",
"uri":"http://example.com/orders/815",
"media_type":"application/vnd.com.example.store.Order+json"
},
"packer":{
"name":"the person who packed this shipment",
"uri":"http://example.com/packers/42",
"media_type":"application/vnd.com.example.store.Packer+json"
},
"destination":{
"name":"the destination of this shipment",
"uri":"http://example.com/destinations/666",
"media_type":"application/vnd.com.example.store.Destination+json"
}
}
</code></pre>
<p>The contents of the "shipment" hash (less "created_at" field) would get POSTed. When using GET, the full Shipment representation above would be be sent.</p>
http://stackoverflow.com/questions/1397423/restful-web-services-trying-to-achieve-hateoas-with-custom-xml/1399922#13999222Answer by Rich Apodaca for RESTful web services: trying to achieve HATEOAS with custom XMLRich Apodaca2009-09-09T14:07:35Z2009-09-09T14:07:35Z<p>There are two important pieces of information your RESTful server will need to process requests, regardless of the underlying markup language: a media type and a URI. Assuming a media type for a given URI would introduce client-server coupling. It would, for example, prevent the same URI from ever serving two different kinds of media type.</p>
<p>XML isn't the only option when designing hypermedia formats. Check out the <a href="http://kenai.com/projects/suncloudapis/pages/Home" rel="nofollow">Sun Cloud API</a>, which defines a <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">hypertext-driven</a> REST API based on JSON (although it appears to not use media type with its hyperlinks). It's not difficult to go from this approach to one that combines media types with hyperlinks.</p>
<p>For example, you could define a JSON data structure called Link that looks like this;</p>
<pre><code>{
"name":"human-readable label for link",
"uri":"http://example.com/resources/123",
"media_type":"application/vnd.com.example.Resource+json"
}
</code></pre>
http://stackoverflow.com/questions/1395705/how-to-handle-avatar-upload-in-rest-manner/1396685#13966851Answer by Rich Apodaca for How to handle avatar upload in REST mannerRich Apodaca2009-09-08T22:33:10Z2009-09-08T22:33:10Z<p>If I understand correctly:</p>
<ul>
<li>Option 1 adds a custom action to the User resource, which is best avoided if at all possible.</li>
<li>Option 2 splits User and Avatar into separate resources, but doesn't make it easy to connect the two (for example, when creating an upload form).</li>
<li>Option 3 looks like you'd view the Avatar as a User attribute.</li>
</ul>
<p>The most important thing to figure out at this point is: what's the cardinality of the relationship between User and Avatar. Does a User have one Avatar or many? If there's a one-to-many relationship, then a solution like the one Jonnii proposes might make sense.</p>
<p>If a User will only have one Avatar (which seems likely), I would consider going with the simplest solution and make the Avatar a User attribute.</p>
<p>Although I haven't gotten around to trying it out, I've heard good things about <a href="http://github.com/thoughtbot/paperclip/tree/master" rel="nofollow">Paperclip</a>. The example usages even discuss using Paperclip with avatars.</p>
<p>For an even more lightweight solution, you might consider <a href="http://en.gravatar.com/" rel="nofollow">Gravatar</a>, which would eliminate the need for a file upload entirely and simplify things a lot.</p>
http://stackoverflow.com/questions/1389554/if-post-to-an-url-and-how-can-i-tell-the-client-to-look-at-a-fragment-of-the-resp/1389718#13897180Answer by Rich Apodaca for If POST to an URL and how can I tell the client to look at a fragment of the response?Rich Apodaca2009-09-07T14:43:20Z2009-09-07T14:57:41Z<p>POSTing to the URI:</p>
<pre><code>http://example.org/MyEntity/100
</code></pre>
<p>implies to me that a MyEntity resource called "100" already exists. If that's the case, why not use PUT instead? Is this an update or a create operation?</p>
<p>An alternative might be:</p>
<pre><code>POST http://example.org/MyEntities
</code></pre>
<p>Now your service has a choice to make from at least two possibilities:</p>
<ol>
<li>Return 201 Created. Set the Location header to be the URI you want the client to use (e.g.: <a href="http://example.org/MyEntities/100#InterestingPart" rel="nofollow">http://example.org/MyEntities/100#InterestingPart</a>). Add the representation of the new resource to the body.</li>
<li>Return 204 No Content. Same as above, but no body. This option requires a subsequent GET to fetch the representation, which sounds like what you're trying to avoid.</li>
</ol>
<p>Neither approach requires redirection and both can return as specific a URI as you desire.</p>
<p>I am curious though, why is the #InterestingPart significant? Why not just return the entire representation and its URI <a href="http://example.org/MyEntities/100" rel="nofollow">http://example.org/MyEntities/100</a> in the Location header - and let clients decide for themselves what's interesting or not? If the answers have something to do with only a small part of the resource being of interest (or being modified) during a request, how feasible would it be to break MyResource into a main resource and one or more subordinate resources? For example:</p>
<ul>
<li>/MyResources/100/CoolThings</li>
<li>/MyResources/100/CoolThings/42</li>
<li>/MyResources/100/InterestingThings</li>
<li>/MyResources/100/InterestingThings/109</li>
</ul>
http://stackoverflow.com/questions/1368014/why-do-we-need-restful-web-services/1368917#13689171Answer by Rich Apodaca for Why do we need RESTful Web Services?Rich Apodaca2009-09-02T16:54:38Z2009-09-02T16:54:38Z<p>Here are some ideas:</p>
<ul>
<li>REST constrains your service to use a uniform interface. You don't have to waste time daydreaming (or arguing) about all of the possibly ways your service could work - you get right to work identifying the resources in your system. Turns out to be a big job in itself, but fortunately the problems tend to be much-better defined.</li>
<li>With resources, their associations, and their representations in hand, there's really very little to do in implementing your service because many decisions have been made for you.</li>
<li>Your system will look very much like other RESTful systems; learning curves for teammates, partners, and clients will be reduced.</li>
<li>You'll have a common vocabulary to discuss design problems with other developers, and even with those less technically minded (such as customers).</li>
<li>As Darrel says, because you're using a <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">hypertext-driven</a> design, your service narrows the scope of coupling to just one thing - media types. This helps you as a developer because changes to your system are contained within a narrow band of contact. This helps your clients in that fewer of your changes will break their code.</li>
<li>Almost every problem you might have in implementing REST can be solved by <a href="http://bitworking.org/news/380/bloom-filter-resources" rel="nofollow">exposing a new resource</a> or re-thinking your resource model. This focus is, IMO, a big productivity boost.</li>
</ul>
<p>Bottom line, REST removes many of the most time-consuming and contentious design and implementation decisions from your team's workflow. It shifts your attention from <em>implementing</em> your service to <em>designing</em> it. And it does so without piling gobbledygook onto the HTTP protocol.</p>
http://stackoverflow.com/questions/256103/some-good-example-of-restful-web-api/1358208#13582083Answer by Rich Apodaca for Some good example of RESTful web api?Rich Apodaca2009-08-31T16:24:05Z2009-08-31T16:24:05Z<p><a href="http://kenai.com/projects/suncloudapis/pages/Home" rel="nofollow">Sun Cloud API</a>. One of the few <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">hypertext-driven</a> (and therefore RESTful) APIs I know of.</p>
http://stackoverflow.com/questions/1344557/class-hierachies-in-a-rest-api/1347546#13475462Answer by Rich Apodaca for Class hierachies in a REST APIRich Apodaca2009-08-28T14:57:52Z2009-08-28T14:57:52Z<p>Your question seems to be both about using WFC for REST and about modeling a concept in REST. I had an idea on your modeling question:</p>
<blockquote>
<p>Is there a better design for this API?</p>
</blockquote>
<p>What about introducing a new resource to model the mass-import of animals? You might call it something like "Shipment".</p>
<p>A Shipment might be defined as a list of new animals to be introduced into a Zoo. By exposing Shipment as a first-class resource, you would have the ability to manage them, track which Animal came in on which Shipment (to track down a disease outbreak, for example), and enable Shipments to take place at any time, not just during the creation of a Zoo.</p>
<p>Also, don't forget that <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">REST APIs must be hypertext-driven</a>.</p>
http://stackoverflow.com/questions/1319809/recursive-model-in-rails/1319862#13198621Answer by Rich Apodaca for Recursive model in RailsRich Apodaca2009-08-23T23:27:52Z2009-08-23T23:27:52Z<p>Check out <a href="http://railscasts.com/episodes/163-self-referential-association" rel="nofollow">self-referential association</a>.</p>
http://stackoverflow.com/questions/1318688/problem-with-java-applet/1318707#13187070Answer by Rich Apodaca for Problem with Java AppletRich Apodaca2009-08-23T14:30:18Z2009-08-23T14:30:18Z<p>If you're putting initialization code into the paint method, you might think about putting it into the init or start methods instead.</p>
<p>The phrase you'd be looking for is <a href="http://java.sun.com/docs/books/tutorial/deployment/applet/lifeCycle.html" rel="nofollow">applet lifecycle</a>.</p>
http://stackoverflow.com/questions/1582783/heroku-display-git-revision-hash-and-timestamp-in-views/1739872#1739872Comment by Rich Apodaca on Heroku: Display Git Revision Hash and Timestamp in Views?Rich Apodaca2009-11-19T15:51:43Z2009-11-19T15:51:43Z@David, thanks - but I get the same response using heroku console. There is no directory called '.git' in Rails.root. Have you tried this in an application?http://stackoverflow.com/questions/1625935/heroku-serving-large-dynamically-generated-assets-without-a-local-filesystem/1626737#1626737Comment by Rich Apodaca on Heroku: Serving Large Dynamically-Generated Assets Without a Local FilesystemRich Apodaca2009-10-26T21:02:20Z2009-10-26T21:02:20Z@teich, that makes sense- thanks!http://stackoverflow.com/questions/1625935/heroku-serving-large-dynamically-generated-assets-without-a-local-filesystem/1626502#1626502Comment by Rich Apodaca on Heroku: Serving Large Dynamically-Generated Assets Without a Local FilesystemRich Apodaca2009-10-26T18:39:56Z2009-10-26T18:39:56Z@Blake, I haven't tried because the Heroku documentation on the /tmp directory (linked above) says (from what I can tell) that the contents of the directory will survive for the duration of one request. What I'd be doing would be in the context of a background job, which seems like asking for trouble. If I'm wrong, then great - that would solve the problem.http://stackoverflow.com/questions/1619152/how-to-create-rest-urls-without-verbs/1619422#1619422Comment by Rich Apodaca on How to create REST URL's without verbs?Rich Apodaca2009-10-25T14:36:42Z2009-10-25T14:36:42Z@Marcus - that sounds like a very unusual case. Maybe if you explained what your app does in more detail, we'd be able to offer better suggestions for identifying resources.http://stackoverflow.com/questions/1582783/heroku-display-git-revision-hash-and-timestamp-in-views/1584452#1584452Comment by Rich Apodaca on Heroku: Display Git Revision Hash and Timestamp in Views?Rich Apodaca2009-10-18T14:43:54Z2009-10-18T14:43:54ZThanks for the tip. Unfortunately, it's not working for me in heroku console (would it be different in app itself?). After Repo.new, I get 'Grit::NoSuchPathError:' Any ideas?http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1482813#1482813Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-29T01:13:31Z2009-09-29T01:13:31ZHad another look at how SO does it. Turns out they do it two ways. One way with email/password OR openid (not so good). And another with OpenID selector (looks lik RPX, much better).http://stackoverflow.com/questions/1476023/what-ist-a-restful-resource-in-the-context-of-large-data-sets-i-e-weather-data/1481307#1481307Comment by Rich Apodaca on What ist a RESTful-resource in the context of large data sets, i.E. weather data?Rich Apodaca2009-09-28T16:40:57Z2009-09-28T16:40:57Z@Christian, your edit indicates there is no one "Forecast" - no problem.
But the real question is: how important is "Forecast" as a domain concept?
The same resource can have multiple representations, depending on the needs of the client, but a resource is a generally-applicable domain concept that can be modeled independently of its representation.
Another way to put it: imagine a client using your service. What is it that they're trying to create or what work are they trying to do?http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1484955#1484955Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-28T16:32:28Z2009-09-28T16:32:28Z@Andrew, you're right. OTOH, the underlying problem I have is coming up with a good way to use OpenID without users needing to know I'm using it. OpenID selectors are one approach I didn't know about previously but now do thanks in part to your original answer. I'm still curious what other options there might be.http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1484367#1484367Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-28T00:54:53Z2009-09-28T00:54:53Z@Andrew, geez -how embarrassing. Sorry about that. Great article, BTW. Convinced me not to go with RPX (for now at least). But I like the idea of a locally-hosted OpenID selector even more: <a href="http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1484955#1484955" rel="nofollow" title="openid single user interface supporting both email password and openid">stackoverflow.com/questions/1482803/…</a>http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1484367#1484367Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-27T23:27:03Z2009-09-27T23:27:03ZThis article raises some concerns about RPX: <a href="http://blog.nerdbank.net/2009/01/why-using-rpxnow-is-bad-idea.html" rel="nofollow">blog.nerdbank.net/2009/01/…</a>http://stackoverflow.com/questions/573352/i-am-considering-implementing-the-rpxnow-openid-selector-can-i-avoid-vendor-locComment by Rich Apodaca on I am considering implementing the RPXNow OpenID selector - can I avoid vendor lock in?Rich Apodaca2009-09-27T22:44:18Z2009-09-27T22:44:18ZAlso can't find link to duplicate. Can someone post it or re-open this question?http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1484367#1484367Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-27T22:39:02Z2009-09-27T22:39:02ZThere's a Ruby Gem here: <a href="http://github.com/grosser/rpx_now" rel="nofollow">github.com/grosser/rpx_now</a>http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1484367#1484367Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-27T22:27:32Z2009-09-27T22:27:32ZNice... looks like they're using RPX: <a href="https://rpxnow.com/" rel="nofollow">rpxnow.com</a>.http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1483181#1483181Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-27T14:54:43Z2009-09-27T14:54:43ZThat's more along the lines of what I'm looking for. The method needn't necessarily use JavaScript to dynamically rebuild the interface - it might just offer dedicated screens for each method.http://stackoverflow.com/questions/1482803/openid-single-user-interface-supporting-both-email-password-and-openid/1482813#1482813Comment by Rich Apodaca on OpenID: Single User Interface Supporting Both Email/Password and OpenIDRich Apodaca2009-09-27T04:50:00Z2009-09-27T04:50:00ZThanks, but actually the SO approach is the one I'm trying to avoid. I don't want my users to have to stop to think "What's this OpenID field for?" I want OpenID to get out of their face.