Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SOAP using C# [closed]

Tags:

How do you use SOAP using C#? Is there a simple, yet effective tutorial for this?

like image 689
yoitsfrancis Avatar asked May 20 '09 02:05

yoitsfrancis


People also ask

What is SOAP C#?

SOAP (Simple Object Access Protocol) is a simple solution for interaction of different applications built in different languages and running on different platforms as it uses HTTP as its transport and XML as its payload for sending and receiving messages.

What is SOAP API example?

SOAP uses an XML data format to declare its request and response messages, relying on XML Schema and other technologies to enforce the structure of its payloads. Both public and private Application Programming Interfaces (APIs) use SOAP as an interface.

What is SOAP full form?

SOAP: simple object access protocol SOAP is a standard protocol that was first designed so that applications built with different languages and on different platforms could communicate.


2 Answers

SOAP is encapsulated with the Web Service model in ASP.Net. Here's a good intro article on MSDN: http://msdn.microsoft.com/en-us/library/ms972326.aspx

You can find some good tutorials on MSDN and at the ASP.Net web site. Here's a great introductory video: http://www.asp.net/learn/videos/video-7025.aspx

like image 134
womp Avatar answered Sep 19 '22 20:09

womp


I like the tutorial at http://users.skynet.be/pascalbotte/rcx-ws-doc/dotnet.htm

like image 31
Alex Martelli Avatar answered Sep 20 '22 20:09

Alex Martelli