Can you give examples how you used gSOAP and how well it was integrated in your existing architecture? Have you found development bottlenecks with gSOAP?

link|improve this question

78% accept rate
feedback

4 Answers

We used gSOAP in a C++-based web server about 4 years back. Overall it worked fine. The only major issue was that the interface was in C and procedural (I understand it is difficult to design a good non-procedural interface). There may be a lot of repeated code while implementing the interface, for which you might have to use macros (we didn't explore the templates option too far then).

link|improve this answer
feedback

We are using gSoap to deploy a web service onto an embedde linux device running an ARM MX processor.

link|improve this answer
feedback

We are using gSOAP to consume a WCF based webservice from an application deployed on a linux device running on ARM processor. The experience is good to a large extent.

link|improve this answer
feedback

We used gSOAP for a bunch of ARM clients to communicate with an AXIS Web Service server. Pros of gSOAP:

  • very powerful, supports nearly all Web Service constructs
  • easy to use, its abstraction of WS calls into functions removes all Web Service complexity to the programmer
  • elegant interfaces in both C and C++

However, we ran into several development bottlenecks:

  • when using custom datatypes like maps or sets, it takes quite some hacking to get the gSOAP compiler to handle them (marshal/unmarshalling). Especially bad with dynamic data structures.
  • debugging is hard because of its intrinsic complex network, parsing and memory allocation parts. Do everything possible to stick with static memory allocation.
  • the mailing list is alive, but developers are not very active on it. Simple questions can get answered quickly, but the toughest problems often go unanswered
  • forget about optimization. Linking in gSOAP eats about 1MB of memory at runtime (-Os). Runtime performance is fine on our 32MB linux-based ARM board, but there really is little to do about optimization if you need it.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.