The soap tag has no wiki summary.
24
votes
7answers
3k views
How do I convince my boss to use REST over SOAP?
We need to create an API to our system. How do I convince my boss that REST is a better option than SOAP (or XML-RPC)?
I say REST is...
easier to implement and maintain
not much new to learn -- ...
11
votes
5answers
403 views
What are the deciding factors in choosing to expose a web service as a SOAP or REST service?
As far as I can see consuming SOAP requires a SOAP stack, so it is harder for your clients to consume i.e. they need to ensure that they have a SOAP stack in place that formats the POST data and the ...
10
votes
4answers
954 views
Why do people think SOAP is deprecated?
While browsing SO today I found this question here and it starts with this:
Sure, you're gonna tell me that SOAP is depracated and all, well i'm forced to use it
Found lots of statement like ...
8
votes
6answers
667 views
What was SOAP invented for?
This question is inspired by this one. What was the initial goal of inventing SOAP? Why was it invented when we had old kind HTTP and REST?
6
votes
2answers
2k views
What's the best practice to do SOA exception handling?
Here's some interesting debate going on between me and my colleague when coming to handle SOA exceptions:
On one side, I support what Juval Lowy said in Programming WCF Services 3rd Edition:
As ...
4
votes
4answers
1k views
Future of SOAP, with REST?
Considering that more and more Web Services are implementing a RESTful interface, I am wondering what the future of SOAP will be?
I'm looking for any kind of papers, statistics, articles or ...
4
votes
4answers
733 views
Advice on which technologies to use for a client-server desktop application
I am writing a desktop application in Java which will allow clients to authenticate to a server with their credentials, and afterwards view and manipulate some data (orders, invoices, employees etc.) ...
3
votes
1answer
364 views
What is the difference between SOAP and Web Services?
Keep getting confused about these two. Anyone care to explain the difference(s)?
3
votes
1answer
1k views
JavaScript client for talking with WCF server with WebSockets binding
I'm excited about the possibilities for duplex communication with WebSockets between a web browser and web server. I see that WCF for .NET 4.5 supports a WebSockets binding now, and I know there's a ...
2
votes
3answers
1k views
Should I use both WCF and ASP.NET Web API
We already have a WCF API with basichttpbinding.
Some of the calls have complex objects in both the response and request.
We need to add RESTful abilities to the API.
at first I tried adding a ...
2
votes
4answers
269 views
AGPL License - does it apply in this scenario?
There is an AGPLv3 based software (Client) that makes web service calls (using SOAP) to another software (Server - commercial, cloud based). There is no common code or any connection whatsoever ...
2
votes
2answers
842 views
Ajax application: using SOAP vs REST ?
I'm building an ajax heavy application (client-side strictly html/css/js) which will be getting all the data and using server business logic via webservices.
I know REST seems to be the hot topic but ...
2
votes
1answer
212 views
Web Service - SOAP
My experience with web services is slim and I'm trying to understand this a little bit more.
I have done for instance a web service using visual studio. In order to use it, I add a web service ...
2
votes
3answers
492 views
What's the best way to implement a browser-based SOAP client?
We have an existing architecture of enterprise SOAP webservices based on JavaEE 6 that transfers large payloads of data.
We want to develop a browser based front end for these sevices, and I would ...
2
votes
0answers
122 views
Design thoughts on a schema based request object for CXF endpoint
Trying to seek design suggestion on a schema based request object for a CXF endpoint. I've created a CXF SOAP endpoint which takes the following object as an input. The request object will have ...