active questions tagged rest - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:11:57Z http://stackoverflow.com/feeds/tag/rest http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1911986/is-there-an-asp-net-mvc-controller-that-can-auto-handle-json-xml-views 0 Is there an ASP.NET MVC controller that can auto-handle JSON/XML/Views? Daniel T. 2009-12-16T03:03:04Z 2009-12-16T03:09:19Z <p>Is there an ASP.NET MVC controller or helper class that can automatically return the proper HTTP response based on the HTTP request header? I'd like it to be able to return JSON, XML, or a View based on the request's content type, with the only thing I have to do is populate some global <code>Model</code> object with data from the database.</p> http://stackoverflow.com/questions/1911226/using-couchdb-to-serve-html 0 Using CouchDB to serve HTML. alxross 2009-12-15T23:27:14Z 2009-12-15T23:37:31Z <p>I'm trying to use CouchDB with HTML/standalone REST architecture. That is, no other app server other than CouchDB and ajax style javascript calling CouchDB. </p> <p>It looks like cross scripting is a problem. I was using Cloudkit/Tokyo Cabinet before and it seems like the needed callback function was screwing it up in the URL.</p> <p>Now I'm trying CouchDB and getting the same problem.</p> <p>Here are my questions:</p> <p>1) Are these problems because the REST/JSON store like CouchDB or CloudKit is running on a different port from my web page? They're both run locally and called from "localhost".</p> <p>2) Should I let CouchDB host my page and serve the HTML?</p> <p>3) How do I do this? The documentation didnt seem so clear...</p> <p>Thanks, Alex</p> http://stackoverflow.com/questions/1765690/html-javascript-client-with-a-rest-backend 0 HTML/javascript client with a REST backend Chris Duesing 2009-11-19T18:54:54Z 2009-12-15T23:21:19Z <p>I have previously written my web apps with a server side / html template language type design. I am interested in writing a static html client that uses javascript to fetch data from a restful service (ala couchdb). It dawned on me that I could not in one web request get both the static html file, and the json data that is used to populate it. This is not a problem by itself, but if I have a requirement for bookmarkable urls, how can I make this work?</p> <p>/users/ -> downloads users.html -> ajax request looks up users.</p> <p>/users/bob -> downloads user.html -> ajax request looks up bob.</p> <p>Is this a reasonable design? It gives me a lot of flexibility on the backend, as well as making it easy to collaborate with a designer. Anyone done something similar, or have an alternate suggestion?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1909112/using-php-curl-how-can-i-look-at-exactly-what-is-being-sent 0 Using PHP Curl, how can I look at exactly what is being sent? stormist 2009-12-15T17:39:54Z 2009-12-15T19:28:37Z <p>For instance, on the following CURL snippet:</p> <pre><code> $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); //set target URL curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);// allow redirects curl_setopt($ch, CURLOPT_POST, $usePost); // set POST method curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); //set headers curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($ch, CURLOPT_HEADER, $returnHeaders); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); //prevent unverified SSL error </code></pre> <p>Before I run curl_exec on it, what if I want to see the full request headers and body before it is sent. (to see if is correctly following certain REST API guidelines)</p> http://stackoverflow.com/questions/1874914/accessing-local-azure-blob-storage-via-a-simple-rest-get 1 Accessing local Azure blob storage via a simple REST 'GET' YeahStu 2009-12-09T16:07:18Z 2009-12-15T18:57:27Z <p>Hi,</p> <p>I am working with Windows Azure and am just using the Blob Storage. I have setup my Blob Storage to run in its own Solution file with a dummy web role. I run it first on my development machine so the Azure Services start. I have configured the service to use the development shared key and account name.</p> <p>I am running into an issue when I point my web application (in another solution) to the local Blob Storage service. I can upload a file to the Blob Storage and I can see the records in my local database. Therefore, I have entered the correct settings in the web.config. However, I cannot access the file via a simple Get request. I have verified that the container is public.</p> <p>The URI I am using is:</p> <pre><code>http://127.0.0.1:10000/{container-name}/{filename}.{extension} </code></pre> <p>My code works when I use my production Azure Services, so is there something different about the Development Environment that I am missing? Does the local environment allow REST access?</p> <p>UPDATE: I recently found <a href="http://msdn.microsoft.com/en-us/library/dd179425.aspx" rel="nofollow">this MSDN Article</a> that describes the differences between production and development Storage URIs. I also documented my environment <a href="http://blog.yeahstu.com/2009/12/13/my-first-experience-with-microsoft-windows-azure/" rel="nofollow">here</a> on my blog.</p> http://stackoverflow.com/questions/1016258/the-restful-flow 0 The RESTful flow? Mark 2009-06-19T03:45:17Z 2009-12-15T18:37:36Z <p>So...</p> <p>I've been reading about <a href="http://www.infoq.com/articles/rest-introduction" rel="nofollow">REST</a> a little bit, and the idea behind it sounds nice, but the question is, can it be easily integrated into the standard flow of a webpage?</p> <p>For example, a user creates some sort of item, a blog post or what have you, and now he wants to delete it, so he clicks a 'delete' link on the page. Now what? How do we issue a DELETE request to, say, <code>http://mysite.com/posts/5</code>? And how do we handle that request? I have no experience with cURL or anything, but from the looks of it, I would have to <code>curl_init('<a href="http://mysite.com/posts/5" rel="nofollow">http://mysite.com/posts/5</a>')</code> and then work some magic. But where would I even put that script? That would have to be on another page, which would break the whole idea of REST. Then I would just be <code>GET</code>ing another page, which would in turn <code>DELETE</code> the page I originally intended?</p> <p>Is this why people rarely use <code>REST</code> or is there actually a nice way to do this?</p> <p><hr /></p> <p>Looks like I need to clarify. People are suggesting I include words like "DELETE" and "POST" in the URL. I believe REST dictates that we have a unique URL for each <em>resource</em> but <em>not</em> for each action on that resource. I assume this also means that we only have <em>one</em> and only <em>one</em> URL for each resource. i.e. I want to be able to DELETE or VIEW the contents of a particular post from <em>one</em> URL (by sending either DELETE, PUT, POST, or GET), not different URLs with additional params</p> http://stackoverflow.com/questions/1908823/can-we-use-a-custom-action-with-inheritedresources-in-a-dry-manner 0 Can we use a custom action with inherited_resources in a DRY manner? Matt Scilipoti 2009-12-15T16:56:17Z 2009-12-15T16:56:17Z <p>We have a custom action (:register) for our Location model. The supporting code is very similar to a standard :update. Since inherited_resources provided a "template" for us, we copied the update code from actions.rb, changing 'update_attributes' to 'register' and the flash message reflects the different action. This doesn't feel very DRY. We would like to <strong>utilize</strong> :update instead. Any ideas?</p> <pre><code>class LocationsController &lt; InheritedResources::Base def register(options={}, &amp;block) #TODO: copied update from actions.rb. I expect there is a better way. # All I changed was the flash message (to reflect he action) # and the action on location (update_attributes -&gt; register) object = resource if object.register set_flash_message!(:notice, '{{resource_name}} was successfully registered.') options[:location] ||= resource_url rescue nil respond_with_dual_blocks(object, options, true, block) else set_flash_message!(:error) respond_with_dual_blocks(object, options, false, block) end end </code></pre> http://stackoverflow.com/questions/1908560/developing-restful-website-and-iphone-and-possibly-other-smart-phones-applicati 0 Developing RESTful website and iphone (and possibly other smart phones) application using ASP.NET MVC NW 2009-12-15T16:16:27Z 2009-12-15T16:31:50Z <p>Hi,</p> <p>we are developing a website that also have smart phone (starting with iphone but possibly adding android and blackberry later) counterparts (a subset of functions like Yelp or Urbanspoon for example) and we are thinking about following REST paradigm using ASP.NET MVC. Our team is fairly new to this area of software development and we have the following questions:</p> <p>(1) For the iphone application, we are thinking about developing an application using Objective-C. Actually, our application doesn't need to work in the disconnected mode and the web application paradigm might be better but the only reason that we are thinking about developing Objective-C app is that we want to make it available in the app store so that people can download and have it on their iphone as opposed to having to bookmark it in Safari on iphone. (iphone users don't go and discover new website on the iphone) But this approach suffers from not being able to update and fix the bug on the client side as immediate as we hope. I wonder if there is a way to embed a web page inside an Objective-C app?</p> <p>(2) Our goal is to follow RESTful paradigm: </p> <pre><code>- Access resoures through standard method (GET, PUT, POST, DELETE) - Multiple representations (XHTML for the website and perhaps POX for the smart phones) - Statelessness whenever possible </code></pre> <p>What would be the best approach to provide RESTful service through ASP.NET MVC among these? </p> <ul> <li>Use ADO.NET Data Services (We are using Entity Framework for O/R mapping) </li> <li>Implement RESTful services over WCF</li> <li>Use the recently released <a href="http://blog.maartenballiauw.be/post/2009/08/19/REST-for-ASPNET-MVC-SDK.aspx" rel="nofollow">REST for ASP.NET MVC SDK</a></li> </ul> <p>(3) How should the ASP.NET MVC receive data from the smart phone? What data format should it be? For the website, we will have to process HTML form POST/PUT but does the same paradigm work for the objective-C client (or other smart phone client)?</p> <p>Any suggestions/comments about these three questions are highly appreciated!</p> http://stackoverflow.com/questions/1904410/twitter-list-membership-count-per-user 0 Twitter List Membership Count Per User Ryan McGeary 2009-12-15T00:04:22Z 2009-12-15T15:44:21Z <p>The <a href="http://apiwiki.twitter.com/" rel="nofollow">Twitter API</a> has the <code>friends_count</code> and <code>followers_count</code> available as cached values for the <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-users%C2%A0show" rel="nofollow"><code>users/show</code></a> or <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-account%C2%A0verify%5Fcredentials" rel="nofollow"><code>account/verify_credentials</code></a> method. As far as I can tell, the only way to determine the number of lists a user is a member of is to make a call to <a href="http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-GET-list-memberships" rel="nofollow">GET list memberships</a> and paginate through using the cursor to count the total number of lists a person is a member of. This is sub-optimal; ideally <code>lists_count</code> would be available on <code>users/show</code>.</p> <p>Is there an easier way to determine the raw number of lists a user is a member of using the Twitter API? What did I miss?</p> http://stackoverflow.com/questions/1904266/documenting-a-rest-service 1 Documenting a REST service jnorris 2009-12-14T23:27:07Z 2009-12-15T13:25:38Z <p>I would like to thoroughly document an API service (with at least HTML). This service follows resource-oriented RESTful best practices. Are there any tools that can assist in compiling and and maintaining this documentation, or do I have to build it all from scratch?</p> http://stackoverflow.com/questions/1562046/implementation-differences-between-zendrestserver-zendrestcontroller 0 Implementation differences between Zend_Rest_Server & Zend_Rest_Controller arendn 2009-10-13T18:21:25Z 2009-12-15T03:00:03Z <p>There seems to be two different ways in the Zend Framework to implement a RESTful API, one by adding objects&amp;functions to the Zend Rest Server object inside a action controller, the other through extending the very sparsely documented Zend Rest Controller method mentioned in the Zend Rest Router configuration.</p> <p>My questions are:</p> <ol> <li>Do you configure the Router to point at the Zend_Rest server or</li> <li>Do you extend the Zend_Rest_Controller class and instantiate business objects inside action methods?</li> </ol> <p>Thanks!</p> http://stackoverflow.com/questions/1903747/touchjson-and-soap 0 TouchJSON and SOAP Nnp 2009-12-14T21:51:10Z 2009-12-14T23:23:10Z <p>How can i make a SOAP call using TouchJson? it just work fine with REST call. </p> http://stackoverflow.com/questions/1903349/order-confirmation-page-in-rails 1 Order confirmation page in rails. Kenji Crosland 2009-12-14T20:38:38Z 2009-12-14T21:02:56Z <p>Hi guys,</p> <p>I've been trying to create an order confirmation page for my rails app, and am not quite sure how to go about it in a restful way.</p> <p>There were a few answers on <a href="http://stackoverflow.com/questions/445293/ruby-on-rails-confirmation-page-for-activerecord-object-creation">this</a> question that got me halfway there, but the problem was that I wasn't quite sure how to set up the form in the rails view so that it would take the user to a confirmation page with all their details instead of a create action.</p> <p>Right now my view is simple: </p> <pre><code> &lt;% form_for :order do |f| %&gt; &lt;%= f.error_messages %&gt; &lt;p&gt; &lt;%= f.label :first_name %&gt;&lt;br /&gt; &lt;%= f.text_field :first_name, :size =&gt; 15 %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :last_name %&gt;&lt;br /&gt; &lt;%= f.text_field :last_name, :size =&gt; 15 %&gt; &lt;/p&gt; (Be sure to enter your name as it appears on your card) &lt;p&gt; &lt;%= f.label :card_type %&gt;&lt;br /&gt; &lt;%= f.select :card_type, [["Visa", "visa"], ["MasterCard", "master"], ["Discover", "discover"], ["American Express", "american_express"]] %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :card_number %&gt;&lt;br /&gt; &lt;%= f.text_field :card_number %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :card_verification, "Card Verification Value (CVV)" %&gt;&lt;br /&gt; &lt;%= f.text_field :card_verification, :size =&gt; 3 %&gt; &lt;/p&gt; &lt;p&gt; &lt;%= f.label :card_expires_on %&gt;&lt;br /&gt; &lt;%= f.date_select :card_expires_on, :discard_day =&gt; true, :start_year =&gt; Date.today.year, :end_year =&gt; (Date.today.year+10), :add_month_numbers =&gt; true %&gt; &lt;/p&gt; &lt;p&gt;&lt;%= f.submit "Submit" %&gt;&lt;/p&gt; </code></pre> <p>What things should I be doing to direct the user to a confirmation page that shows all the order details?</p> <p>Thanks!</p> <p>Kenji</p> http://stackoverflow.com/questions/1191319/dwr-like-javascript-library-for-rest 1 DWR like Javascript library for REST Kalpesh Patel 2009-07-28T00:15:52Z 2009-12-14T13:10:37Z <p>Is there a Javascript library like DWR that can generate javascript stub for REST api. We are using Jersey/JSR-311 for REST on server and was wondering that instead of using libraries like Jquery or dojo if there is a library that can take a Rest class annotated using JSR311 annotations and create javascript stub like DWR does?</p> http://stackoverflow.com/questions/1900132/jax-rs-mapstring-string-to-json-without-the-overhead 0 JAX-RS, Map<String,String> to JSON without the overhead? flygandehund 2009-12-14T10:34:24Z 2009-12-14T12:00:23Z <p>Hi!</p> <p>I'm using JAX-RS to create restful webservices in Java. I am getting to much overhead in the produced JSON.</p> <p>Data class:</p> <pre><code>@XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class Test { private Map&lt;String,String&gt; data; Test() {} public Test(Map&lt;String,String&gt; data) { this.data = data; } public Map&lt;String, String&gt; getData() { return data; } } </code></pre> <p>Service:</p> <pre><code>@GET @Path("/test") @Produces("application/json; charset=UTF-8;") public Test test() { Map&lt;String,String&gt; map = new HashMap&lt;String,String&gt;(); map.put("foo", "bar"); map.put("bingo", "bongo"); return new Test(map); } </code></pre> <p>Produces:</p> <pre><code>{"data":{"entry":[{"key":"foo","value":"bar"},{"key":"bingo","value":"bongo"}]}} </code></pre> <p>I would like it to produce:</p> <pre><code>{"data":{"foo":"bar","bingo":"bongo"}} </code></pre> <p>What is the simplest way to achive this? I am free to redifine my data class but I can't know in advance the keys or size of the map.</p> http://stackoverflow.com/questions/1522368/solutions-to-web-service-client-certificates-auth-best-practices 2 Solutions to web service client certificates/auth best practices randombits 2009-10-05T21:00:36Z 2009-12-14T05:00:02Z <p>I have a simple web service that has an API third party developers are allowed to access. The API mostly follows REST principles.</p> <p>I'm interested in solutions to make the API more secure by requiring developers to use client certificates. Is there any open source solutions or other implementation advice any of you have that would assist in REST based APIs using user level certificates for auth?</p> http://stackoverflow.com/questions/1853250/real-time-twitter-status 1 Real Time Twitter Status Teegijee 2009-12-05T19:49:37Z 2009-12-12T17:35:48Z <p>I'm looking to write a Twitter application, and I need to get real time (or as close as possible) updates. The official REST API only allows 100 calls/hour or so, and if I want to get status from more that just a couple users it's going to add up pretty fast. Besides, requesting every 30 seconds seems like an overall pretty inefficient and inelegant solution. The Twitter&lt;->Facebook app seems to have near-realtime updates, though of course they may be using prive backend things. Does anyone know what accessor method (REST/RSS/etc) would be best for this?</p> http://stackoverflow.com/questions/1885816/restful-service-method-in-wcf 0 RESTful Service Method in WCF blu 2009-12-11T04:39:36Z 2009-12-12T03:03:23Z <p>I am not sure what is wrong with my JSON response from WCF but it is not being parsed properly. I probably made a simple mistake, hopefully someone can spot it. I am using VS 2008 Pro SP1. </p> <p>When I navigate directly to the url Chrome thinks it is a file download. When I hit say flickr's service it returned a string inline in the browser body, which makes me think my content is being sent incorrectly.</p> <p><strong>Service</strong></p> <pre><code>[ServiceContract] public interface IFoo { [OperationContract] [WebGet(UriTemplate = "/foos/", ResponseFormat = WebMessageFormat.Json] Foo[] GetFoos(); } </code></pre> <p><strong>Model</strong></p> <pre><code>// this is in a separate assembly from the service [DataContract] public class Foo { [DataMember] public int Id { get; set; } [DataMember] public string Name { get; set; } } </code></pre> <p><strong>JQuery</strong></p> <pre><code>$(document).ready(function() { $.getJSON(fooUrl, function(data) { alert(data); // data is an object, but data.items is null // this complains 'length is null or not an object' $.each(data.items, function(i, item) { fooList.append('&lt;option value="' + data[i].id + '"&gt;' + data[i].name + '&lt;/option&gt;'); }); }); }); </code></pre> <p>When I look at the response in Fiddler I see:</p> <pre><code> [{"Id":1,"Name":"Foo1"},{"Id":2,"Name":"Foo2"},{"Id":3,"Name":"Foo3"}] </code></pre> <p><strong>Update</strong></p> <p>Here are the raw headers from fiddler for the response comparison (me vs. flickr)</p> <p>Mine</p> <pre><code>HTTP/1.1 200 OK Content-Length: 162 Content-Type: application/json; charset=utf-8 Server: Microsoft-HTTPAPI/2.0 </code></pre> <p>Flickr</p> <pre><code>HTTP/1.1 200 OK Date: Sat, 12 Dec 2009 00:30:36 GMT P3P: policyref="http://p3p.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV" Expires: Mon, 26 Jul 1997 05:00:00 GMT Last-Modified: Sat, 12 Dec 2009 00:26:19 GMT Cache-Control: no-store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Pragma: no-cache Vary: Accept-Encoding Connection: close Transfer-Encoding: chunked Content-Type: application/x-javascript; charset=utf-8 </code></pre> <p>It looks like the big difference is I have application/json and they have application/x-javascript. As I noted above I am using WebMessageFormat.Json on the operation contract.</p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1287802/access-request-body-in-a-wcf-restful-service 0 Access Request Body in a WCF RESTful Service urini 2009-08-17T12:53:53Z 2009-12-12T01:00:01Z <p>Hi,</p> <p>How do I access the HTTP POST request body in a WCF REST service?</p> <p>Here is the service definition:</p> <pre><code>[ServiceContract] public interface ITestService { [OperationContract] [WebInvoke(Method = "POST", UriTemplate = "EntryPoint")] MyData GetData(); } </code></pre> <p>Here is the implementation:</p> <pre><code>public MyData GetData() { return new MyData(); } </code></pre> <p>I though of using the following code to access the HTTP request:</p> <pre><code>IncomingWebRequestContext context = WebOperationContext.Current.IncomingRequest; </code></pre> <p>But the IncomingWebRequestContext only gives access to the headers, not the body.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1581190/applying-the-rest-architecture-outside-of-the-web-resource-identification 0 Applying the REST architecture outside of the web: resource identification William 2009-10-17T01:59:57Z 2009-12-11T23:00:01Z <p>I'm looking into applying the REST architectural style to a binary network protocol and I am getting hung up on how to identify server resources in a manner that would be true to the style, probably because I'm used to looking at URIs.</p> <p>For example, would an address-port pair qualify as a resource identifier; assuming one resource per pair? In this case the resource isn't really identified in the request explicitly.</p> <p>Does anyone have any experience with making a non-web-based REST protocol?</p> http://stackoverflow.com/questions/1889946/restful-wcf-remove-all-xmlns 0 RESTFUL WCF Remove all xmlns Chris Klepeis 2009-12-11T18:21:58Z 2009-12-11T20:23:08Z <p>I set my DataContracts namespace to "" which removed one namespace but I have to remove the other:</p> <blockquote> <p>xmlns:i="http://www.w3.org/2001/XMLSchema-instance"</p> </blockquote> <p>If theres no other way, how can I serialize my class prior to returning and hack out the namespace?</p> <p>I have to do this to work with another companys API.</p> http://stackoverflow.com/questions/1888327/dojox-rpc-jsonrest-query-method-and-zend-json-server 0 dojox.rpc.JsonRest query Method and Zend JSON Server ministry 2009-12-11T14:14:01Z 2009-12-11T17:31:13Z <p>I use dojo 1.3.2 with the Zend Framework 1.10 JSON Server. I can successfully execute my method getTreeByScope defined as SMD via JSON-RPC 2.0</p> <pre><code>myService.getTreeByScope({scopeId:1,nodeId:0}); </code></pre> <p>this sends this POST request:</p> <p><em>{"id":1,"method":"getTreeByScope","params":<b>{"scopeId":1,"nodeId":0}</b>,"jsonrpc":"2.0"}</em></p> <p>All is fine.</p> <p><hr></p> <p><b>Now i wanted to use the forest dijit with the service:</b></p> <pre><code>this._gemStructureStore = new dojox.data.JsonRestStore({labelAttribute:"title", service:this._gemStructureServices.getTreeByScope}); this._gemStructureModel = new dijit.tree.ForestStoreModel({store: this._gemStructureStore, labelAttr: "name", deferItemLoadingUntilExpand: true, query: {scopeId:1,nodeId:0}, childrenAttrs: ["children"]}); this._gemStructureTree = new dijit.Tree({showRoot: true, model: this._gemStructureModel, onClick: this.nodeClicked, id: "myTree", label: "root"}); document.body.appendChild(this._gemStructureTree.domNode); </code></pre> <p>But now the executed query Method from the dojox.rpc.JsonRest comes with 2 arguments (deferred = service(id, args)) and the folowing dojo._hitchArgs Method in dojo._base.lang produces now an array with my named parameters. This is the POST request:</p> <p><em>{"id":1,"method":"getTreeByScope","params":<b>[{"scopeId":1,"nodeId":0},{"query": "scopeId":1,"nodeId":0}]</b>,"jsonrpc":"2.0"}</em></p> <p>And now the Zend Server can't handle the params any more.</p> <ul> <li>I could try perhaps to hitch a customized _hitchArgs Method to the Service. But i don't know how.</li> <li>Perhaps i could also try to replace the query Method in the dojox.rpc.JsonRest with this deferred = service(id); But i don't know how.</li> </ul> <p>All these thoughts don't make me really happy and perhaps somebody has better ideas and in the best case a solution for me?</p> <p>Thanks Philipp</p> http://stackoverflow.com/questions/1878641/how-can-i-answer-a-post-request-with-a-static-file-in-sinatra 0 How can I answer a POST request with a static file in Sinatra? eipipuz 2009-12-10T04:29:15Z 2009-12-10T13:48:08Z <p>In Sinatra, if you have a "GET /images/photo1.jpg" request... you can save a lot of time by making a "public" directory. Any route not found is assumed to be inside your "public" directory.</p> <p>However this seems to work just for GET requests. Is there a way to do something similar for POST requests?</p> <p>Either:</p> <ul> <li>Turning on some static method?</li> <li>Maybe forging an inner request?</li> <li>Duplicating functionality?</li> </ul> <p>Any ideas? Is this even a bug?</p> <p>PS: I know it's not RESTful to ask for files in a POST request, unfortunately Facebook works that way.</p> http://stackoverflow.com/questions/1460969/getting-rest-ful-uris-in-joomla 1 Getting REST-ful URIs in Joomla? Kyle Kaitan 2009-09-22T15:58:00Z 2009-12-10T12:00:01Z <p>Using my own Joomla 1.5 component, module, or plugin, how would I turn a request for a REST URL like <code>foo.com/api/...</code> into relevant echo()s on the page? I'm looking for a "hello, world"-level example, if possible.</p> <p>For example, <code>foo.com/api/baskets/10/fruits/list.json</code> might result in something like the following text on the page:</p> <pre><code>-- resource: baskets [id: 10] -- resource: fruits [id: -] -- action: list -- format: json </code></pre> <p>Is that possible?</p> http://stackoverflow.com/questions/1828143/need-a-better-language-frameworks-doing-restful-webservices 1 Need a better language/frameworks doing RESTful webservices Zac Bowling 2009-12-01T18:56:56Z 2009-12-10T08:27:11Z <p>I'm developing out replacements for our company's web service stack. </p> <p>The current stack was developed using SOAP and had some REST endpoints manually hacked in. It's a maintenance nightmare. </p> <p>I can use any language, tech, and framework as long as it it fits the goal. </p> <p>Requirements are: </p> <ul> <li>easy for serving up RESTful services </li> <li>uses an MVC model</li> <li>supports injecting middle layers to do authentication (OAuth and Basic Auth) around calls (preferably in a declarative way)</li> <li>makes it easy to do JSON, JSONP, and Plain ol' XML (Simple XML) type serialization of the return data</li> <li>preferably has built in caching control and built in E-Tags support</li> <li>preferably using a statically typed language but this doesn't matter if the amount of code I have to write is dramatically less</li> <li>it would be awesome to have a framework that supports doing microthreaded/epoll type HTTP handling so I can easily support HTTP long polling, but this isn't a requirement </li> </ul> <p>So far I've looked at:</p> <ul> <li>.NET (C#) <ul> <li>ASP.NET MVC (simple MVC framework, would have to add the missing pieces manually to fit my requirements)</li> <li>Monorails (simple MVC framework, less supported)</li> <li>WCF (unfortunately it takes a lot of overriding to force it into submission to work nicely for consumption on clients not using WCF themselves)</li> </ul></li> <li>Python <ul> <li>Pylons (top of my list right now, but it lacks easy XML serialization)</li> <li>DJango (more traditional web framework than REST framework)</li> </ul></li> <li>Scala (still new but big startups are using it)</li> <li>Ruby on Rails (doesn't scale the way I like)</li> </ul> <p>Any other ideas or thoughts? </p> http://stackoverflow.com/questions/1859278/iphone-and-web-services-rest-vs-soap 0 [iPhone and Web Services]: REST vs SOAP Maury 2009-12-07T10:53:11Z 2009-12-09T21:10:59Z <p>I've started my degree project, a mobile application suitable for iPhone, Android and (in the near future) Symbian. The server architecture is the following:</p> <ul> <li>web site (for "standard" users);</li> <li>web service (for mobile connections), based on TomCat and Axis2;</li> <li>mySQL DB to storage users data.</li> </ul> <p>Surfing across the web, I've read a lot of discussion about the interaction between the iPhone and Web Services, and I've to say that I've not a clear idea of what I can do and what not. Let's start from the protocol used to retrieve data from the DB: the Android-side application uses SOAP protocol, can I do the same with iPhone? Are there some limitations or problems?</p> <p>I have also read about the using of REST instead of SOAP, could it be possible with the server architecture described above? Which are the main advantages/disadvantages?</p> <p>Sorry if these questions sound "n00b", but it's my first real experience with iPhone and the lot of informations found on the web messed up my mind and I'm scared to be confused. Forgive me for any error.</p> http://stackoverflow.com/questions/986769/wcf-rest-starter-kit-2 0 wcf rest starter kit 2 unknown (google) 2009-06-12T13:57:14Z 2009-12-09T20:00:02Z <p>How do I modify the description of each item in the help page when using the rest collection template?</p> http://stackoverflow.com/questions/1867873/grails-put-request-with-xml 0 Grails PUT request with XML Jonathan Chauncey 2009-12-08T15:55:10Z 2009-12-09T16:22:04Z <p>I have a put request that I am trying to unit test for creating a user object. </p> <p>Unit Test:</p> <pre><code> void testPUTXMLResponse() { def mockUser = new User(username:"fred", password:User.encrypt("letmein"), firstName:"Fred", lastName:"Flintstone", middleName:"T", phone:"555-555-5555", email:'fred@fred.com', activationDate:new Date(), logonFailureCount:0) mockDomain(User, [mockUser]) def mockUserXML = mockUser as XML mockRequest.method = 'PUT' mockRequest.contentType = 'text/xml' mockRequest.format = 'xml' mockRequest.content = mockUserXML.toString().getBytes() controller.create() def updatedUser = XML.parse(mockResponse.contentAsString) assert updatedUser.id == 1 } </code></pre> <p>Controller Action:</p> <pre><code> def create = { println request.xml def user = new User(params.user) if(!user.hasErrors() &amp;&amp; user.save()) { println user.id withFormat { html { /*render(view:"show", [user:user])*/ } xml { render user as XML } json { render user as JSON } } } else { println user.errors withFormat { html { /*render(view:"create", [user:user])*/ } xml { render user.errors as XML } json { render user.errors as JSON } } } } </code></pre> <p>For some reason the params map is null when the controller action is executed. I have a very similar unit test for POST requests and it works just fine.</p> http://stackoverflow.com/questions/1873901/determine-rest-post-put-request-format 1 Determine REST POST/PUT request format th3hamburgler 2009-12-09T13:29:02Z 2009-12-09T15:21:54Z <p>Hi, I'm developing a REST CodeIgniter Controller and need to POST and PUT to a URL in multiple formats.</p> <p>The main formats I can think of would be:</p> <ul> <li>XML</li> <li>JSON</li> <li>HTML Form data</li> </ul> <p>There will be a response format defined in the URI e.g. /format/xml or /format/csv. I don't want to have to define the request format in the URI as well. </p> <p>I was wondering if anyone has any suggestions on finding out the request format so my script can complete the request.</p> <p>I'm thinking it may be possible to get this data from the request headers "content-type"?</p> <ul> <li>"content-type: text/xml" = XML</li> <li>"content-type: application/json" = JSON</li> <li>"content-type: text/plain" = HTLM Form data *<em>i think!</em></li> </ul> <p>Would this method be robust or are there better approaches out there?</p> <p>Thanks.</p> http://stackoverflow.com/questions/139821/bare-minimum-configration-for-restful-wcf 1 Bare Minimum Configration for RESTful WCF Kurt 2008-09-26T14:20:04Z 2009-12-08T21:11:10Z <p>What is the bare minimum I need to put in web.config to get WCF working with REST? I have annotated my methods with [WebGet], but they are not getting the message.</p>