Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SOAP library in C

Tags:

c

soap

I am looking for a SOAP Library for C. I know there is gSOAP. What other options do I have?

like image 951
Vaibhav Avatar asked Apr 18 '10 19:04

Vaibhav


People also ask

What is SOAP C?

SOAP is an acronym for Simple Object Access Protocol. It is an XML-based messaging protocol for exchanging information among computers. SOAP is an application of the XML specification.

What is a SOAP envelope?

The SOAP Envelope encapsulates all the data in a message and identifies the XML document as a SOAP message. The Header element contains additional information about the SOAP message. This information could be authentication credentials, for example, which are used by the calling application.


1 Answers

Take a look at this blog entry. I know it's C++, but I have had good results with Apache's AXIS. If you can use a C++ compiler, you can wrap around a C library to your generated classes.

like image 97
Pablo Santa Cruz Avatar answered Sep 29 '22 01:09

Pablo Santa Cruz