Questions tagged [restful-architecture]

RESTful, or representational state transfer, is a style of software architecture for distributed hypermedia systems such as the World Wide Web.

Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web.

REST attempts to describe architectures that use HTTP or similar protocols by constraining the interface to a set of well-known, standard operations (like GET, POST, PUT, DELETE for HTTP). Here, the focus is on interacting with stateless resources, rather than messages or operations.

1187 questions
-2
votes
1 answer

How to distinguish SOAP vs REST request?

Let's say that I have an XML and it's a request to a service. How can I tell if it's a RESTful service or SOAP service request? What are the distinguishable characteristics that could be find, based only on request content?
Piotrek Hryciuk
  • 785
  • 10
  • 23
-2
votes
1 answer

Is it good to use the Http DELETE verb to define a REST API that delete a single specific object?

I am implementing some REST APIs and I have a doubt about what HTTP verb should I use to implement an API that remove a single record from my DB I thought that I should use the DELETE method but reading…
AndreaNobili
  • 40,955
  • 107
  • 324
  • 596
-2
votes
1 answer

Track back the origin of a link to save data for logging purpose?

We have a product based website. We show same products on the search page, details page, recommendations, e-mails, SMS and many other places to the users like any other e-commerce website. On each of our product, we give "Add to cart" button. We…
Sahil Sharma
  • 3,847
  • 6
  • 48
  • 98
-2
votes
1 answer

4 types of RESTful web services

Lately I am hearing from different sources of "different types of RESTful web services". In particular: "4 types of RESTful web services". What are the differences between them?
Rookie
  • 11
  • 1
-2
votes
2 answers

Disable HTTPSession for stateless web services

I would like to know if it is possible to disable the HTTPSession for an application server handling only web services RESTful. I don't know if there are specific application servers or servlet containers designed to handle micro RESTful web…
Davide Lorenzo MARINO
  • 26,420
  • 4
  • 39
  • 56
-2
votes
1 answer

Opencpu and Meteor

I have seen some examples of using opencpu together with angular, but no examples of using opencpu in meteor (where angular could be inplemented easily). Is it as easy as just including ocpu.seturl and jquery.min.js in meteor (as is done here), or…
user1665355
  • 3,324
  • 8
  • 44
  • 84
-2
votes
1 answer

parsing RESTFUL JSON to html

i have this in my view so that the people go example, view/1 i get via restful all the data of that user and i parse that in html with a table, Im using cakephp,i don't want to use angularJS, there's a JQuery library that do that job, do you know…
-2
votes
1 answer

How to expose services in Rest?

Please help me to understand how to expose service in REST. Is it depends on RESOURCE or depends on the size of data ? Example: Let we take 2 resources (STUDENT & DEPARTMENT). Now I have an requirement of exposing "Total number of Students" and…
Pavan
  • 337
  • 1
  • 4
  • 10
-2
votes
1 answer

How resful service is used in CQ?

I am new to Adobe CQ. I knew it uses Apache Sling framework. Apache Sling is RESTful framework to access a java content repository over http protocol. Can any one tell me with examples on how restful service is being used in CQ? Thanks
ezhil
  • 977
  • 6
  • 15
  • 36
-2
votes
1 answer

Difference between simple webservice ane Restful webservice

i have implemented my android application with client server approach. Something like this approch here. http://theopentutorials.com/tutorials/android/http/android-how-to-send-http-get-request-to-servlet-using-apache-http-client/ i don't understand…
-2
votes
1 answer

RESTful design: distinguish between unpublish and delete

Designing an API and looking for some advice. Here's the actions: publish : publish the document (POST) update : update the document (PUT or PATCH) unpublish : take the document down with the intention of putting it up later (?) delete : remove the…
Matt
  • 22,224
  • 25
  • 80
  • 116
-3
votes
2 answers

Sharing data among Microservices‏

I'm seeking an answer to a design question that I didn't find an answer to in any literature on this matter. Allow me to explain the use case, my solution to it and, ask for your opinion as a subject matter expert. Use Case: We've several…
-3
votes
1 answer

Doubts regards REST API

I have following doubts in Rest API concepts What is the maximum amount of results returned by Rest API? I mean in terms of memory. Whether the parameter "page-size" is common for All REST API providers? or Will it depends based on…
Vinod Kumar
  • 408
  • 4
  • 18
-3
votes
1 answer

Standard practice for development and production servers?

Okay, to start off I am new to the world of working with servers and RESTful clients. What I am currently doing is working on a RESTful client api and I realized as I was chugging along that there were times when the api would completely fail due to…
Kinetic Stack
  • 788
  • 12
  • 33
-4
votes
1 answer

Resources for developing Android apps with databases

I'm looking for some resources on developing Android apps with a connected remote database safely and securely. The idea is to have users log in to a personal profile which can be populated with text data, files and images. The app will also have…
Dan Arrick
  • 85
  • 8
1 2 3
79
80