active questions tagged restful - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T13:08:07Z http://stackoverflow.com/feeds/tag/restful http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1920549/asp-net-web-form-post-data-to-a-controller-in-an-mvc-site 0 ASP.net web form - post data to a controller in an MVC site Paddy 2009-12-17T09:41:26Z 2009-12-17T10:08:07Z <p>This may be a stupid question, but anyway... I have an MVC site and a legacy ASP.net web forms site. I have a controller action on my MVC site that I would like to (programatically) POST to from my web forms site.</p> <p>I can find lots of information describing RESTful services etc., but I can't seem to find a resource that explains how to do this bit - anybody point me in the right direction?</p> http://stackoverflow.com/questions/1914800/are-restful-web-services-right-way-for-re-using-infrastructure 2 Are RESTful Web services right way for re-using infrastructure? dzieciou 2009-12-16T13:58:06Z 2009-12-17T07:29:15Z <p>There is one controversy I see in using Web APIs (RESTful service) to access remote infrastracture. I would be grateful, if you could comment it. The recommendation coming from the article <em>"RESTful Web Services vs. "Big" Web Services: Making the Right Architectural Decision"</em> [1] is to use Web APIs rather for ad hoc integration (a la' mashup) and rapid prototyping. Empirical studies made in [2] shows these recommendation is followed in scenarious of re-using the existing information and functionality. However, re-using infrastructure with Web APIs does not fit well into the task of ad hoc integration. My impression is rather that infrastructure is usually re-used in scenarios where the resources I have do not scale well for the problem that I want to solve: large number of data, high bandwidth, high concurrency. Nevertheless, Amazon provides remote access to their infrastructure (storage space, message queueuing) both through:</p> <ul> <li>classical SOAP Web services (so called Big Web services) and </li> <li>light RESTful Web services (so called Web APIs). </li> </ul> <p>Although there is nothing written whether the clients (described in case studies of Amazon Web Services) employ Big Web services or Web APIs, the fact that Amazon provides access to their infrastracture in form of Web APIs as an alternative must be meaningful. </p> <p><strong>Do you know what can be their motivation? Do you know any cases where people re-used infrastracture just for rapid prototyping? Or maybe for testing? In other words, if I would like to re-use infrastructure offered by the Amazon, which API style should I use SOAP or REST in what example situations?</strong> </p> <p>EDIT: In this case as an infrastructure I meant: storage space, computational power, internet bandwidth. Thus I wonder whether such resources are re-used in ad hoc integration.</p> <p><hr></p> <ol> <li><p>Cesare Pautasso, Olaf Zimmermann, Frank Leymann, <strong>RESTful Web Services vs. "Big" Web Services: Making the Right Architectural Decision</strong>, pp. 805-814, Jinpeng Huai, Robin Chen, Hsiao-Wuen Hon, Yunhao Liu, Wei-Ying Ma, Andrew Tomkins, Xiaodong Zhang (Ed.), <em>Proceedings of the 17th International World Wide Web Conference</em>, ACM Press, Beijing, China, April 2008. </p></li> <li><p>Hartmann, Bjorn &amp; Doorley, Scott &amp; Klemmer, Scott R., <strong>Hacking, Mashing, Gluing: Understanding Opportunistic Design</strong>, <em>IEEE Pervasive Computing</em> , vol. 7, no. 3, 46-54 (2008).</p></li> </ol> http://stackoverflow.com/questions/1912329/does-a-mysql-php-json-framework-exist 2 Does a MySQL, PHP, JSON framework exist? brettr 2009-12-16T04:40:13Z 2009-12-16T09:47:20Z <p>I'd like to query a MySQL database via a RESTful service with the middleware being PHP. I'd like the output to be JSON. I'm a beginner in those areas. Are there any frameworks or scripts that can do this without requiring you to be an expert? I don't have a problem stringing a few scripts together if they can work.</p> <p>Or, if it can be done much simpler without using REST (i.e. query parameters), that's fine.</p> <p>In the end, I want to have an iPhone app fetch this data and have it returned via JSON. No javascript will be involved.</p> http://stackoverflow.com/questions/1871267/rails-restful-routing-with-and-slugs 1 Rails RESTful Routing With '/' and Slugs Eric Lubow 2009-12-09T02:32:55Z 2009-12-13T12:23:01Z <p>I am looking to do something similar a wordpress slug where I have a URL like this while maintaining RESTful routing:</p> <pre>http://foo.com/blog/2009/12/04/article-title</pre> <p>The reason I am interested in keep RESTFUL routing is that I am unable to use many plugins because I am using custom routes.</p> <p>I have already done the RESTful appearance with:</p> <pre><code>map.connect '/blog/:year/:mon/:day/:slug', :controller => 'posts', :action => 'show', :year => /\d{4}/, :month => /\d{2}/, :day => /\d{2}/, :slug => /.+/, :requirements => { :year => /\d{4}/, :month => /\d{2}/, :day => /\d{2}/, :slug => /.+/ }</code></pre> <p>In order to write the links, I had to write custom link_to helpers to generate the proper URLs. I really would like to make this RESTful and have the link_to post_path( @post ) yield the URL above and the link_to edit_post_path(@post) ...article-title/edit</p> <p>I also have :has_many => [:comments] and I would that to work as well. The link_to that I have tried looks like this:</p> <pre><code> 'posts', :action => 'show', :year => recent_post.datetime.year.to_s, :month => sprintf('%.2d', recent_post.datetime.mon.to_i), :day => sprintf('%.2d', recent_post.datetime.mday.to_i), :slug => recent_post.slug %> </code></pre> <p>and yields this (which isn't what I want):</p> <pre>http://foo.com/posts/show?day=30&month=11&slug=welcome-to-support-skydivers&year=2009</pre> <p>I'm not sure what I am doing wrong. Is it even possible to accomplish this?</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/1891119/is-webprotocolexception-included-in-net-4-0 0 Is WebProtocolException included in .net 4.0? jmkarthik 2009-12-11T21:55:37Z 2009-12-12T00:45:06Z <p>The WCF starter kit has WebProtocolException to throw exceptions in WCF. Is this included in .net 4.0?</p> http://stackoverflow.com/questions/1888563/how-to-make-this-concept-restful 0 How to make this concept RESTful? Wayne M 2009-12-11T14:51:54Z 2009-12-11T18:28:38Z <p>I have a controller dealing with sending SMS Messages, and it's set up as a default resource. Now, business requirements have changed and we want to offer the user three different ways of sending the message:</p> <ol> <li>To everybody on their contact list</li> <li>To a segmented portion of their contact list (predefined)</li> <li>To individual contacts that they can choose</li> </ol> <p>In addition, there are two ways they can send an SMS Message: Premium (via an sms gateway) or Standard (via SMTP). So there are essentially six different ways to send a message (three for premium, three for standard).</p> <p>The requirements state that the three options above need to be presented in a "wizard-like" format, as three radio button choices and then a submit button which displays the appropriate form and list:</p> <ul> <li>If option 1 (send to everyone) then just display a textbox for sending the SMS</li> <li>If option 2 (send to a segment) then display a list of segments as radio buttons</li> <li>If option 3 (send to specific) then display a searchable/sortable list of all contacts with checkboxes next to their names, and on submit select everyone checked to send.</li> </ul> <p>The issue I'm running into is how to make this fit the RESTful conventions imposed by the resource. Each of these use cases is technically only one action (well, two since it would correspond to new/create) but it looks like there needs to be an inordinate amount of logic in the action then, and rather messy as well (switch statement or similar). </p> <p>Is there a better way do to this?</p> http://stackoverflow.com/questions/1612672/connect-from-iphone-to-restfull-wcf-service-with-self-signed-certificate 0 Connect from iPhone to RESTfull WCF Service with Self Signed Certificate Dutchie 2009-10-23T10:51:37Z 2009-12-10T18:00:02Z <p>Hi Guys,</p> <p>I have an iPhone application which has to communicate with a RESTfull WCF service over a secured connection(HTTPS) with a self signed certificate.</p> <p>The WCF service returns XML which is parsed within the app.</p> <p>I have signed the certificate with SelfSSL and installed in on a Windows Server 2003 machine(IIS 6.0).</p> <p>An example of a WCF call would be: https://localhost/Service/Service.svc/{username}/{email}</p> <p>The communication used to be over HTTP so some of the code on the iPhone has to be rewritten.</p> <p>For communication I had been using NSXMLParser initWithContentsOfURL(HTTP) and now I have to useNSURLRequest and NSURLConnection.</p> <p>Therfore I have to use category which implements the methods allowsAnyHTTPSCertificateForHost(always returns YES) and setAllowsAnyHTTPSCertificate.</p> <p>So far so good.</p> <p>Now my questions:<br/> 1. Is a self signed certificate as secure as a CA certificate at the given context(Only for WCF calls)<br/> 2. Is the connection realy secured when I implement allowsAnyHTTPSCertificateForHost(which always returns YES)<br/> 3. Can I programmatically import a self signed certificate on a iPhone<br/> 4. How does iPhone handle a request with a CA certificate(against which certificate does it validate the certificate from the server.<br/></p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/865444/restful-and-hibernate 1 RESTFul and Hibernate unknown (yahoo) 2009-05-14T20:08:32Z 2009-12-10T11:00:08Z <p>Is there a tool that can create RESTFul java services from classes generated with hibernate tool?</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/1872202/cxf-jax-rs-is-causing-busexception 0 CXF JAX-RS is causing BusException Rasmus 2009-12-09T07:30:08Z 2009-12-09T21:15:12Z <p>After adding a RESTFul service using Apache CXF to my Spring (and Wicket) project I get the following exception:</p> <p><em>org.apache.cxf.BusException: No binding factory for namespace <a href="http://apache.org/cxf/binding/jaxrs" rel="nofollow">http://apache.org/cxf/binding/jaxrs</a> registered.</em></p> <p>I have included the row below in my Spring configuration and thought this would actually solve my problem. But it did not.</p> <p><em>import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml"</em></p> <p>Any feedback regarding how to solve this problem or ideas in what areas to look for a solution would be greately appreciated.</p> <p>I am using Spring 3.0.0.RC2 and Apache CXF 2.2.5. (Maven dependencies to org.springframework.core, org.springframework.test, org.springframework.orm, org.springframework.web and cxf-bundle.)</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1857377/php-using-curl-is-there-a-way-to-emulate-a-cookie-instead-of-saving-it-to-a-file 3 PHP using CURL: is there a way to emulate a cookie instead of saving it to a file? stormist 2009-12-07T02:00:10Z 2009-12-07T02:40:03Z <p>I access a REST api service that utilizes a variable called session_id. The API calls for this to be stored in a cookie and I accomplish this as follows:</p> <pre><code>$ch = curl_init(); // initialize curl handle curl_setopt($ch, CURLOPT_URL, $url); //set target URL curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);// allow redirects curl_setopt($ch, CURLOPT_COOKIEFILE, './Cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEJAR, './Cookie.txt'); curl_setopt($ch, CURLOPT_POST, TRUE); // set POST method curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); //set headers curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($ch, CURLOPT_HEADER, TRUE); //return the headers so we can get session id curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, FALSE); //prevent unverified SSL certificate error curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); //prevent unverified SSL "" $contents = curl_exec($ch); curl_close($ch); </code></pre> <p>Now the problem is this is called many different times by many different users. (so many different cookie files have to be saved) I'd like a way to simply store the session_id in a variable instead of referencing the cookie file. So far all my attempts are rejected by the service. Can anyone suggest methods to store the session id and cookie information without saving it to a file? Note that reading the session id is no problem, it's returned in XML. For some reason passing it back without referencing the actual generated file does not pass security credentials. Any more information as to why this might be would also be helpful. </p> http://stackoverflow.com/questions/1852712/java-restful-class-library-support-without-annotations 1 Java RESTful class/library support without annotations? Florin 2009-12-05T16:51:22Z 2009-12-05T17:52:47Z <p>Hi there,</p> <p>I am looking for a simple Java library (having a friendly license; Apache2, MIT, BSD) that I could use for parsing http RESTful requests. I will be taking care of representing the resources but I don't want to reinvent the mapping and the URI transformations, if possible?! I need a simple support for parsing routes, such as:</p> <pre> /search/{query}/page/{pageNo} /list/products/{productId} ...etc </pre> <p>Also, I don't want to use annotations because I am planning to allow the routes to be declared in simple configuration files such as: properties or xml.</p> <p>The framework that does exactly what I want and I am very used with, is: RESTLET, however its license will not allow me to use parts of it (code) in my open source project. My project will be released under the Apache2 license. Sorry for my English, and I appreciate your answer.</p> <p>Thank you,</p> http://stackoverflow.com/questions/1850526/restful-services-and 0 RESTful services and liori 2009-12-05T00:18:03Z 2009-12-05T00:22:02Z <p>Hello.</p> <p>I have just read <a href="http://www.infoq.com/articles/roa-rest-of-rest" rel="nofollow">Resource-Oriented Architecture: The Rest of REST</a>. The reasoning behind content negotiation is compelling, but there's one thing I sometimes need, which seems to be impossible in this schema.</p> <p>Let assume I've got a web service to deliver some graphs. I want users to choose between different styles of these graphs (a fancy color one, B&amp;W, ...), but all of them are always png images. For all of them the mimetype will simply be image/png. So what is the preferred way to negotiate custom parameters?</p> http://stackoverflow.com/questions/1828790/restful-put-and-delete-and-firewalls 7 RESTful PUT and DELETE and firewalls Mark Lutton 2009-12-01T20:44:23Z 2009-12-04T18:51:48Z <p>In the classic "RESTful Web Services" book (O'Reilly, ISBN 978-0-596-52926-0) it says on page 251 "Some firewalls block HTTP PUT and DELETE but not POST."</p> <p>Is this still true?</p> <p>If it's true I have to allow overloaded POST to substitute for DELETE.</p> http://stackoverflow.com/questions/1487874/securing-wcf-rest-service-for-use-with-iphone-application 0 Securing WCF REST service for use with iPhone application zippod 2009-09-28T16:04:08Z 2009-12-04T01:00:03Z <p>Hi all,</p> <p>I've a created a simple WCF REST service which I intend to consume from an iPhone application. The service works fine but now I'd like to secure it.</p> <p>In my test enviornment (IIS on Windows 7) I already setup a self signed certificate using makecert.exe.</p> <p>I also overridden the validate() method so I can use a custom username &amp; password (since windows authentication is out of the question).</p> <p>Now I'm stuck for more than two days figuring out how to configure everything so it can work.</p> <p>My goal now is to be able to do a simple GET request via the browser, something like: </p> <p><code>https://localhost/testservice/service1.svc/sayHello</code></p> <p>When this will work I'll continue on to all iPhone related stuff.</p> <p>Any help / examples will be highly appreciated!</p> <p>Here's my web.config:</p> <pre><code> &lt;system.serviceModel&gt; &lt;services&gt; &lt;service name="IphoneWcf.Service1" behaviorConfiguration="IphoneWcf.Service1Behavior"&gt; &lt;!-- Service Endpoints --&gt; &lt;endpoint address="" binding="basicHttpBinding" bindingConfiguration="webBinding" behaviorConfiguration="webBehavior" contract="IphoneWcf.IService1"&gt; &lt;!-- Upon deployment, the following identity element should be removed or replaced to reflect the identity under which the deployed service runs. If removed, WCF will infer an appropriate identity automatically. --&gt; &lt;identity&gt; &lt;dns value="localhost" /&gt; &lt;/identity&gt; &lt;/endpoint&gt; &lt;!--&lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/&gt; --&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="https://localhost/iphonewcf" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;endpointBehaviors&gt; &lt;behavior name="webBehavior"&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="IphoneWcf.Service1Behavior"&gt; &lt;!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment --&gt; &lt;serviceMetadata httpsGetEnabled="false" /&gt; &lt;!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information --&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;serviceCredentials&gt; &lt;serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName" /&gt; &lt;/serviceCredentials&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="webBinding"&gt; &lt;security mode="Transport"&gt; &lt;transport clientCredentialType="Basic" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p></p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1826671/extjs-to-call-a-restful-webservice 0 Extjs to call a RESTful webservice Vivek Singh CHAUHAN 2009-12-01T14:50:00Z 2009-12-01T15:12:52Z <p>Hello,</p> <p>I am trying to make a RESTful webservice call using Extjs. Below is the code i am using:</p> <pre><code>Ext.Ajax.request({ url: incomingURL , method: 'POST', params: {param1:p1, param2:p2}, success: function(responseObject){ var obj = Ext.decode(responseObject.responseText); alert(obj); }, failure: function(responseObject){ var obj = Ext.decode(responseObject.responseText); alert(obj); } }); </code></pre> <p>but it does not work, the request is sent using OPTIONS method instead of POST.</p> <p>I also tried to do the same thing using below code but result is the same:</p> <pre><code>var conn = new Ext.data.Connection(); conn.request({ url: incomingURL, method: 'POST', params: {param1:p1, param2:p2}, success: function(responseObject) { Ext.Msg.alert('Status', 'success'); }, failure: function(responseObject) { Ext.Msg.alert('Status', 'Failure'); } }); </code></pre> <p>But when i tried to do the same thing using basic ajax call ( using the browser objects directly i.e. XMLHttpRequest() or ActiveXObject("Microsoft.XMLHTTP")) it works fine and i get the response as expected.</p> <p>Can anyone please help me, as i am not able to understand what i am doing wrong with extjs ajax call? </p> http://stackoverflow.com/questions/1775782/does-anyone-know-of-an-example-of-a-restful-client-that-follows-the-hateoas-princ 2 Does anyone know of an example of a RESTful client that follows the HATEOAS principle? jkp 2009-11-21T15:32:09Z 2009-11-28T16:47:30Z <p>So by now I'm getting the point that we should all be implenting our RESTful services providing representations that enable clients to follow the <a href="http://blogs.sun.com/craigmcc/entry/why%5Fhateoas" rel="nofollow">HATEOAS</a> principle. And whilst it all makes good sense in theory, I have been scouring the web to find a single good example of some client code that follows the idea strictly.</p> <p>The more I read, the more I'm starting to feel like this is an academic discussion because no-one is actually doing it! People can moan all they like about the WS-* stack's many flaws but at least it is clear how to write clients: you can parse WSDL and generate code. </p> <p>Now I understand that this should not be necessary with a good RESTful service: you should only need to know about the relationships and representations involved and you should be able to react dynamically to those. But even still, shouldn't this principle have been distilled and abstracted into some common libraries by now? Feed in information about the representations and relationships you might receive and get some more useful higher level code you can use in your application?</p> <p>These are just half-baked ideas of mine really, but I'm just wary that if I dive in and write a properly RESTful API right now, no-one is actually going to be able to use it! Or at least using it is going to be such a pain in the behind because of the extra mile people will have to go writing glue code to interpret the relationships and representations I provide.</p> <p>Can anyone shed any light on this from the client perspective? Can someone show an example of properly dynamic / reactive RESTful client code so that I can have an idea of the audience I'm actually writing for? (better still an example of a client API that provides some abstractions) Otherwise its all pretty theoretical....</p> <p>[edit: note, I've found a similar question <a href="http://stackoverflow.com/questions/1180528/rest-client-implementation-embracing-hateoas-constraint">here</a>, which I don't think was really answered, the author was palmed off with a wikipedia stub!] </p> http://stackoverflow.com/questions/1807781/how-to-develop-authentication-with-resteasy 0 How to develop authentication with resteasy? newbie 2009-11-27T09:55:24Z 2009-11-27T10:15:30Z <p>I'm making small web service(1) and I decided to use resteasy to make it. But I need to know what would be best practise to develop authentication with resteasy. And what kind of responses webservice should send? Are responses usually in XML or what format, and what format of XML response should be?</p> <p>Btw. I use jboss 4 and Java 5.</p> <p><a href="http://www.assertionerror.com/2009/02/26/restful-web-services-with-resteasy/" rel="nofollow">http://www.assertionerror.com/2009/02/26/restful-web-services-with-resteasy/</a></p> <p>(1) <a href="http://stackoverflow.com/questions/1803446/what-technology-i-should-use-to-develop-small-java-webservice">http://stackoverflow.com/questions/1803446/what-technology-i-should-use-to-develop-small-java-webservice</a></p> http://stackoverflow.com/questions/856045/how-to-restrict-json-access 3 How to restrict JSON access ? JamesZ 2009-05-13T04:19:22Z 2009-11-26T15:55:30Z <p>I have a web application that pulls data from my newly created JSON api.</p> <p>My static HTML pages dynamically calls the JSON api via JavaScript from the static HTML page.</p> <p><strong>How do I restrict access to my JSON api so that only I (my website) can call from it?</strong></p> <p>In case it helps, my api is something like: <a href="http://example.com/json/?var1=x&amp;var2=y&amp;var3=z" rel="nofollow">http://example.com/json/?var1=x&amp;var2=y&amp;var3=z</a>... which generates the appropriate JSON based on the query.</p> <p>I'm using PHP to generate my JSON results ... can restricting access to the JSON api be as simply as checking the <code>$_SERVER['HTTP_REFERER']</code> to ensure that the api is only being called from my domain and not a remote user?</p> http://stackoverflow.com/questions/1795442/how-to-customize-response-structure-when-working-with-axis2-rest-web-services 1 How to customize response structure when working with Axis2 REST web services? Alon 2009-11-25T08:27:17Z 2009-11-25T08:53:50Z <p>Hi</p> <p>I'm using Axis2 1.4.1 to expose RESTful web services. I need to return xml structure (or any other for example ATOM xml or RSS xml or JSON structure) of my choosing. Axis2 out of the box returns it's own default xml structure (which is SOAP like). The question is what is the right way to customize this. Is it via Handlers? Is it via Data Binding? Is it via custom MessageFormatter? What is the way and how?</p> <p>Thanks</p> http://stackoverflow.com/questions/1732452/django-ease-of-building-a-restful-interface 3 Django ease of building a RESTful interface randombits 2009-11-13T23:03:56Z 2009-11-24T16:56:15Z <p>I'm looking for an excuse to learn Django for a new project that has come up. Typically I like to build RESTful server-side interfaces where a URL maps to resources that spits out data in some platform independent context, such as XML or JSON. This is rather straightforward to do without the use of frameworks, but some of them such as Ruby on Rails conveniently allow you to easily spit back XML to a client based on the type of URL you pass it, based on your existing model code. </p> <p>My question is, does something like Django have support for this? I've googled and found some 'RESTful' 3rd party code that can go on top of Django. Not sure if I'm too keen on that.</p> <p>If not Django, any other Python framework that's already built with this in mind so I do not have to reinvent the wheel as I already have in languages like PHP?</p> http://stackoverflow.com/questions/1788681/what-is-restful-web-services-in-java 2 What is RESTFul Web Services in Java whoi 2009-11-24T08:33:13Z 2009-11-24T11:23:45Z <p>Well as the title suggest, what is this Restful Web Service thing in Java, What are its benefits over SOAP Web Services, why the hell someone implemented again some other technology? What is the reason to use Restful one instead of SOAP one?</p> <p>For example I will give a service which will be accessible for many clients from high level languages C#, Java to low-level like C.</p> http://stackoverflow.com/questions/1785407/rest-api-data-model-design-user-account-or-both-models 0 REST API / DATA MODEL DESIGN - User , Account or Both Models? ludicco 2009-11-23T19:28:04Z 2009-11-23T19:52:00Z <p>Hi there, I'm having some thoughts about proper building my app and provide a good and consistent API for it but now I'm having some doubts about the user/accounts model.</p> <p>It's funny but if you consider some apps you will see that they treat you like user but when editing your details your are redirect to account.</p> <p>One good example of this is twitter.</p> <p>So I would like to know your opinion about what's the best method to build this kind of architecture?</p> <p>Is the account really necessary?</p> <p>Why should I use account or user?</p> <p>If I decide to implement a payment instruction for that user later, should that user store that information inside a account which stores his password and other important information?</p> <p>sorry but I'm kind of lost on this subject sometimes it looks that other apps use more models than the necessary, so I'm not sure :(</p> <p>I was thinking I'm have to associated models like this:</p> <pre><code> User has_one :account </code></pre> <p>But I still not sure what kind of information goes into the User and Account.</p> <p>Thanks in advance for you help</p> <p>Cheers</p> http://stackoverflow.com/questions/1781880/wcf-restful-services-and-httpmodules-post-not-working 1 WCF RESTful Services and HTTPModules, POST not working unknown (google) 2009-11-23T08:59:12Z 2009-11-23T08:59:12Z <p>Hi Community,</p> <p>I have been trying to get a WCF RESTful service working with the microsoft wcf rest starters kit, and ive successfully been able to get it up and running with GET, POST and PUT methods. However once ive done this ive tried to make the uri resource more "hackable" by removing the reference of "Service.svc" by using a HTTPModule. So before the change i called the uri :-</p> <p>/service.svc/accounts</p> <p>to :-</p> <p>/rest/accounts</p> <p>this all worked great. For GET methods only it seems!! I tried to test my POST and PUT methods to no avail. Can somebody point me in the right direction here, i find it very frustrating that something as simple as making a uri hackable is still a chore to do with MS technologies. Im using IIS6.</p> <p>Here is some sample code. A service command :-</p> <pre><code> [OperationContract(Name = "CreateAccount")] [WebInvoke(UriTemplate = "rest/accounts", Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)] public bool CreateAccount(NameValueCollection pairs) { } </code></pre> <p>And the HTTPModule to rewrite the reference to Service.svc :-</p> <pre><code> void application_BeginRequest(object sender, EventArgs e) { HttpContext context = HttpContext.Current; if (context.Request.RawUrl.Contains("/rest/")) { Uri uri = context.Request.Url; string queryString = uri.Query; if(queryString.Length > 1) queryString = queryString.Substring(1);// to remove the ? string pathInfo = uri.AbsolutePath.Substring(uri.AbsolutePath.LastIndexOf("/rest/")); context.RewritePath("~/Service.svc", pathInfo, queryString, true); } } </code></pre> <p>Really looking forward to your suggestions guys</p> http://stackoverflow.com/questions/1750946/allow-restful-delete-method-in-asp-net-mvc 1 Allow RESTful DELETE method in asp.net mvc? DucDigital 2009-11-17T18:46:38Z 2009-11-22T08:03:36Z <p>im currently setting up asp.net to accept DELETE http verb in the application. However, when i send </p> <pre><code>"DELETE /posts/delete/1" </code></pre> <p>i always get a 405 Method not allow error. I tried to take a look at the header:</p> <pre><code>Response Headers Cache-Control private Pragma No-Cache Allow GET, HEAD, OPTIONS, TRACE Content-Type text/html; charset=utf-8 Server Microsoft-IIS/7.5, Private-Server Date Tue, 17 Nov 2009 18:30:31 GMT Content-Length 5590 </code></pre> <p><strong>Allow GET, HEAD, OPTIONS, TRACE</strong></p> <p>notice the Allow header in IIS7, it's only allow GET HEAD OPTIONS and TRACE. I currently using [AcceptVerbs(HttpVerbs.Delete)] in my delete controller (i think this one is extended by MVCContrib, correct me if im wrong)</p> <p>PS: i send DELETE using Javascript:</p> <pre><code> function _ajax_request(url, data, callback, type, method) { if (jQuery.isFunction(data)) { callback = data; data = {}; } return jQuery.ajax({ type: method, url: url, data: data, success: callback, dataType: type }); } </code></pre> <p>and:</p> <pre><code> _ajax_request($(this).attr('href'), "", function(d) { alert("submit"); }, "json", 'DELETE'); </code></pre> <p>THank you in advance!</p> http://stackoverflow.com/questions/1776035/rails-restful-routes-override-paramsid-or-paramsmodelid-defaults 0 Rails RESTful Routes: override params[:id] or params[:model_id] defaults ludicco 2009-11-21T17:00:32Z 2009-11-21T18:36:10Z <p>Hello, I'm trying to understand how to change this rule directly on the map.resources:</p> <p>supposing I have a route:</p> <pre><code>map.resource :user, :as =&gt; ':user', :shallow =&gt; true do |user| user.resources :docs, :shallow =&gt; true do |file| file.resources :specs end end </code></pre> <p>so I would have RESTful routes like this:</p> <p><b>/:user/docs</p> <p>/docs/:id</p> <p>/docs/:doc_id/specs </b></p> <p>So I see that is difficult to track the <code>params[:doc_id]</code> on this case because sometimes its <code>params[:id]</code> and sometimes its <code>params[:doc_id]</code> and in this case I would like to always call for one specific name so I won't have to create two different declarations for my filters.</p> <p>Well, I did a little bit of research and I found this patch:</p> <p><a href="http://dev.rubyonrails.org/ticket/6814" rel="nofollow">http://dev.rubyonrails.org/ticket/6814</a></p> <p>and basically what this does is give you the ability to add a :key parameter on you map.resources so you can defined how you would like to reference it later so we could have something like:</p> <pre><code>map.resources :docs, :key =&gt; :doc ... </code></pre> <p>so I always would call the param with <code>params[:doc]</code> instead.</p> <p>But actually this patch is a little bit old (3 years now) so I was wondering if we don't have anything newer and already built-in for rails to do this task?</p> <p><em><b>P.S</b> I'm not sure about that to_param method defined inside the model, apparently this didn't change anything on my requests, and on the logs I still getting: <code>Parameters: {"doc_id"=&gt;"6"}</code> or <code>Parameters: {"id"=&gt;"6"}</code> all the time.</em></p> http://stackoverflow.com/questions/1773290/rails-restful-routing-add-a-post-for-member-i-etips-6 0 Rails - RESTful Routing - Add a POST for Member i.e(tips/6) ludicco 2009-11-20T21:16:41Z 2009-11-21T16:05:22Z <p>Hello there,</p> <p>I'm trying to create some nice RESTful structure for my app in rails but now I'm stuck on a conception that unfortunately I'm not sure if its correct, but if someone could help me on this it would be very well appreciated.</p> <p>If noticed that for RESTful routes we have (the uncommented ones)</p> <pre><code>collection :index =&gt; 'GET' :create =&gt; 'POST' #:? =&gt; 'PUT' #:? =&gt; 'DELETE' member :show =&gt; 'GET' #:? =&gt; 'POST' :update =&gt; 'PUT' :destroy =&gt; 'DELETE' </code></pre> <p>in this case I'm only talking about base level action or the ones that occur directly inside i.e <b> <a href="http://domain.com/screename/tips" rel="nofollow">http://domain.com/screename/tips</a></b> or <b>http://domain.com/screename/tips/16</b></p> <p>but at the same time I notice that there's no POST possibility for the members, anybody knows why?</p> <p>What if I'm trying to create a self contained item that clones itself with another onwer?</p> <p>I'm almost sure that this would be nicely generated by a POST method inside the member action, but unfortunately it looks like that there's no default methods on the map.resources on rails for this.</p> <p>I tried something using :member, or :new but it doesn't work like this</p> <pre><code> map.resources :tips, :path_prefix =&gt; ':user', :member =&gt; {:add =&gt; :post} </code></pre> <p>so this would be accessed inside <b>http://domain.com/screename/tips/16/add</b> and not <b>http://domain.com/screename/tips/16</b>.</p> <p>So how would it be possible to create a "default" POST method for the member in a RESTful route? </p> <p>I was thinking that maybe this isn't in there because it's not part of REST declaration, but as a quick search over it I found:</p> <p><b>POST</b></p> <p><b>for collections :</b> Create a new entry in the collection where the ID is assigned automatically by the collection. The ID created is usually included as part of the data returned by this operation.</p> <p><b>for members :</b> Treats the addressed member as a collection in its own right and creates a new subordinate of it.</p> <p>So this concept still the same if you think about the <b>DELETE</b> method or <b>PUT</b> for the collection. What if I want to delete all the collection instead just one member? or even replace them(<b>PUT</b>)?</p> <p>So how could I create this specific methods that seems to be missing on map.resources?</p> <p>That's it, I hope its easy to understand.</p> <p>Cheers</p> http://stackoverflow.com/questions/1772011/rails-restful-actions-index-put 3 Rails Restful actions Index Put Swards 2009-11-20T17:22:37Z 2009-11-20T18:02:24Z <p>I have frequently run into the situation where I want to update many records at once - like GMail does with setting many messages "read" or "unread".</p> <p>Rails encourages this with the 'update' method on an ActiveRecord class - Comment.update(keys, values)</p> <p>Example - <a href="http://snippets.dzone.com/posts/show/7495" rel="nofollow">http://snippets.dzone.com/posts/show/7495</a></p> <p>This is great functionality, but hard to map to a restful route. In a sense, I'd like to see a :put action on a collection. In routes, we might add something like</p> <pre><code>map.resources :comments, :collection =&gt; { :update_many =&gt; :put } </code></pre> <p>And then in the form, you'd do this...</p> <pre><code>&lt;% form_for @comments do |f| %&gt; ... </code></pre> <p>This doesn't work on many levels. If you do this: :collection => { :update_many => :put }, rails will submit a post to the index action (CommentsController#index), I want it to go to the 'update_many' action. Instead, you can do a :collection => { :update_many => :post }. This will at least go to the correct action in the controller. </p> <p>And, instead of &lt;% form for @comments ... you have to do the following:</p> <pre><code>&lt;% form_for :comments, :url =&gt; { :controller =&gt; :comments, :action =&gt; :update_many } do |f| %&gt; </code></pre> <p>It will work OK this way</p> <p>Still not perfect - feels a little like we're not doing it the 'Rails way'. It also seems like :post, and :delete would also make sense on a collection controller.</p> <p>I'm posting here to see if there's anything I missed on setting this up. Any other thoughts on how to restfully do a collection level :post, :put, :delete?</p> http://stackoverflow.com/questions/1400674/oauth-consumer-request-for-token-from-serviceprovider-returns-internalservererror 0 OAuth Consumer request for token from ServiceProvider returns InternalServerError chridam 2009-09-09T16:22:02Z 2009-11-20T15:00:03Z <p>I'm playing around with DevDefined.OAuth - an OAuth consumer and provider implementation for .Net <a href="http://code.google.com/p/devdefined-tools/wiki/OAuth" rel="nofollow">http://code.google.com/p/devdefined-tools/wiki/OAuth</a> and on launching the ExampleConsumerSite project after configuring the service endpoints on my IIS 7 web server, I'm receiving the following error:</p> <p>Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.</p> <p>Exception Details: System.Exception: Request for uri: <a href="http://localhost%3A8080/RequestToken.aspx?oauth%5Fcallback=oob&amp;oauth%5Fnonce=94efde0b-dd45-4cee-8253-7496cef0b877&amp;oauth%5Fconsumer%5Fkey=key&amp;oauth%5Fsignature%5Fmethod=PLAINTEXT&amp;oauth%5Ftimestamp=1252512419&amp;oauth%5Fversion=1.0&amp;oauth%5Ftoken=&amp;oauth%5Fsignature=secret%2526" rel="nofollow">http://localhost%3A8080/RequestToken.aspx?oauth%5Fcallback=oob&amp;oauth%5Fnonce=94efde0b-dd45-4cee-8253-7496cef0b877&amp;oauth%5Fconsumer%5Fkey=key&amp;oauth%5Fsignature%5Fmethod=PLAINTEXT&amp;oauth%5Ftimestamp=1252512419&amp;oauth%5Fversion=1.0&amp;oauth%5Ftoken=&amp;oauth%5Fsignature=secret%2526</a> failed. status code: InternalServerError</p> <p>An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.</p> <p>Source Error: [HttpException]: 'RequestToken' is not allowed here because it does not extend class 'System.Web.UI.Page'. at System.Web.UI.TemplateParser.ProcessError(String message) at System.Web.UI.TemplateParser.ProcessInheritsAttribute(String baseTypeName, String codeFileBaseTypeName, String src, Assembly assembly) at System.Web.UI.TemplateParser.PostProcessMainDirectiveAttributes(IDictionary parseData) [HttpParseException]: 'RequestToken' is not allowed here because it does not extend class 'System.Web.UI.Page'. at System.Web.UI.TemplateParser.ProcessException(Exception ex) at System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) at System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) [HttpParseException]: 'RequestToken' is not allowed here because it does not extend class 'System.Web.UI.Page'. at System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) at System.Web.UI.TemplateParser.ParseReader(StreamReader reader, VirtualPath virtualPath) at System.Web.UI.TemplateParser.ParseFile(String physicalPath, VirtualPath virtualPath) at System.Web.UI.TemplateParser.ParseInternal() at System.Web.UI.TemplateParser.Parse() at System.Web.UI.TemplateParser.Parse(ICollection referencedAssemblies, VirtualPath virtualPath) at System.Web.Compilation.BaseTemplateBuildProvider.get_CodeCompilerType() at System.Web.Compilation.BuildProvider.GetCompilerTypeFromBuildProvider(BuildProvider buildProvider) at System.Web.Compilation.BuildProvidersCompiler.ProcessBuildProviders() at System.Web.Compilation.BuildProvidersCompiler.PerformBuild() at System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean noAssert) at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp, Boolean noAssert) at System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) at System.Web.UI.PageHandlerFactory.System.Web.IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig) at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously)</p> <p>I've noticed the oauth_token GET parameter is empty. On tracing this, the error source is from the line 12 of Default.aspx.cs page:</p> <p>IToken requestToken = session.GetRequestToken();</p> <pre><code>protected void oauthRequest_Click(object sender, EventArgs e) { OAuthSession session = CreateSession(); IToken requestToken = session.GetRequestToken(); if (string.IsNullOrEmpty(requestToken.Token)) { throw new Exception("The request token was null or empty"); } Session[requestToken.Token] = requestToken; string callBackUrl = "http://localhost:" + HttpContext.Current.Request.Url.Port + "/Callback.aspx"; string authorizationUrl = session.GetUserAuthorizationUrlForToken(requestToken, callBackUrl); Response.Redirect(authorizationUrl, true); } </code></pre> <p>While I'm not sure if this has to do with configuring the service endpoints but I'm running the consumer project from VS2008 and hosting the service on IIS. Please advice.</p>