Top "Web-services" questions

A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.

Message Queue vs. Web Services?

Under what conditions would one favor apps talking via a message queue instead of via web services (I just mean …

web-services message-queue
Bypass invalid SSL certificate errors when calling web services in .Net

We are setting up a new SharePoint for which we don't have a valid SSL certificate yet. I would like …

.net web-services sharepoint
What is a "web service" in plain English?

I've been reading about "web services" here on SO, on Wikipedia, Google, etc., and I don't quite understand what they …

web-services
What is the difference between Document style and RPC style communication?

Can somebody explain to me the differences between Document and RPC style webservices? Apart from JAX-RPC, the next version is …

web-services soap wsdl jax-ws rpc
Understanding REST: Verbs, error codes, and authentication

I am looking for a way to wrap APIs around default functions in my PHP-based web applications, databases and CMSs. …

web-services rest
Tool to monitor HTTP, TCP, etc. Web Service traffic

What's the best tool that you use to monitor Web Service, SOAP, WCF, etc. traffic that's coming and going on …

web-services http tcp monitoring
What is tempuri.org?

Why does tempuri.org exist? Why does each XML Webservice require its own namespace, unique from any other on the …

web-services namespaces
How to send/receive SOAP request and response using C#?

private static string WebServiceCall(string methodName) { WebRequest webRequest = WebRequest.Create("http://localhost/AccountSvc/DataInquiry.asmx"); HttpWebRequest httpRequest = (HttpWebRequest)webRequest; httpRequest.…

c# web-services soap asmx
How do I solve this error, "error while trying to deserialize parameter"

I have a web service that is working fine in one environment but not in another. The web service gets …

c# web-services sharepoint
WSDL vs REST Pros and Cons

Related: Why would one use REST instead of Web services? When deciding whether to implement a web service using SOAP …

web-services rest wsdl