Questions tagged as 'restful'

2
answers

What is REST and RESTful?

I always hear about REST and RESTful , but I can not tell which one is different or what it's for. It looked like something with Common.js style application architecture pattern.     
asked by 04.01.2015 / 05:01
5
answers

What libraries to develop a RESTFul API in JAVA?

I am a beginner in java and would like to create a RESTFUL API but I do not know which library to use or how to use it. Can anyone point me to good tutorials or some libraries to study. I would like to use JSON.     
asked by 13.12.2013 / 12:34
2
answers

Best Practices for URI in RESTful APIs

I am doubtful about the URIs of some api resources that I am developing. I have the projects and activities resources with respect to 1-N , ie a project has multiple activities and an activity belongs to a project. What is the right way...
asked by 21.10.2016 / 13:28
2
answers

How to develop a private RESTFull API?

I need to develop a RESTFull HTTP API in PHP to serve as authentication for users of an Android application, the problem is that since it is a public distribution application I can not define any key in the code as for example: basic authenticat...
asked by 21.10.2014 / 20:35
1
answer

How to make GET / POST request with Node.JS?

I need to make a request both post and get from a REST API, I wanted to know how to make the request with Node.js? I found some articles on the internet but nothing succinct.     
asked by 01.01.2017 / 04:32
1
answer

How to create a RESTful API with asynchronous processing and response using C # + Angular (v5 +)

Hello, I'm working with C # and I have the following problem: Imagine that I have a route for my API api/estoque/inventario where this route should calculate the inventory of the entire inventory of the application and on demand return...
asked by 04.09.2018 / 15:35
3
answers

How to implement the method in Json using Serializable?

GET PUT DELETE POST I made a GET method, looked like this: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Script.Serialization; using System.Web.Services; /// <summar...
asked by 18.05.2015 / 22:30
1
answer

How to authenticate the application and authorize it to consume a restful API

In a given project, it was necessary to create a restful API that receives data from various forms spread across multiple sites hosted on different servers. The API was created to resolve the following issues: Maintenance: have a single d...
asked by 13.06.2016 / 16:49
1
answer

How does authentication work in a RESTFul stateless environment?

My question is: Imagine 3 tomcat servers (s1, s2, s3) and all 3 servers connect to a single sgbd server (s_bd1). The three tomcat servers run an application that is RESTFul and stateless in nature, so they do not load the user session. her...
asked by 19.09.2014 / 03:45
1
answer

Trigger AsyncTask class exception

The class below is responsible for getting data from a WCF Rest service: public class MyAsyncTaskGeneric<T> extends AsyncTask<String, Void, T>{ private final Class<T> typeGeneric; public MyAsyncTaskGeneric(...
asked by 10.04.2015 / 21:57