Questions tagged [gsoap]

gSOAP is an open source C and C++ software development toolkit for SOAP/XML Web services and generic (non-SOAP) C/C++ XML data bindings.

gSOAP is an open source C and C++ software development toolkit with auto-coding tools for XML Web services and generic C/C++ XML data bindings. Also supports JSON-RPC.

The toolkit analyzes WSDLs and XML schemas (separately or as a combined set) and maps the XML schema types and the messaging protocols for XML REST and SOAP to easy-to-use and efficient C and C++ code. It also supports exposing (legacy) C and C++ applications as XML Web services by auto-generating XML serialization code and WSDL specifications.

The toolkit is available under two licenses

  1. GPLv2
  2. Commercial-use license

gSOAP Tutorials

  1. Web Service
  2. Client
586 questions
0
votes
1 answer

Gsoap Error in C++

I am using gsoap to create a soap server in C++. Messages are routed through a bus written in Java. Both the server and the bus are multithreaded. Everything works well sending one message at a time through the system. If I start 3 clients each…
Joe Cannatti
  • 4,989
  • 5
  • 38
  • 56
0
votes
1 answer

gSOAP segmentation fault

Recently I have got a small C++ SOAP client project (ubuntu linux) to build using gSOAP. I am using 2 web service classes which I believe I have created correctly according to the documentation. However, I am having problems with my code …
mathematician1975
  • 21,161
  • 6
  • 59
  • 101
-1
votes
2 answers

gSOAP Webservice, Error while compiling

Im using Netbeans IDE 6.9 with G++ Compilingtools on Ubuntu 10.10. If i try to compile my webservice i get the following errors: build/Debug/GNU-Linux-x86/main.o: In function `main': /home/mark/NetBeansProjects/stonService/main.cpp:11: undefined…
user1010775
  • 361
  • 3
  • 7
  • 24
-1
votes
1 answer

How can a Qt ONVIF application be created?

I want to create an application to control camera parameters (users/ptz/get video). The camera is using the ONVIF protocol. I am using Qt framework 5.13. I found gsoap tool and .wsdl files from onfiv.com. Then i use guide from…
-1
votes
2 answers

Populating struct in gsoap 2.8.59

I am writing a C++ service that needs to populate a struct nested within a struct as a response to a service call. I have been able to do it with gsoap 2.8.3 without a problem. After updating to 2.8.59 the variables inside the inner struct are being…
-1
votes
1 answer

Identical objects but different types

I use a C++ app to synchronyze data between two PHP servers. My first server is local, my C++ app call a webservice on that server to get an object to synchronyze. Then, my C++ app use another webservice to send it on my Cloud PHP server. So my…
cyanat
  • 77
  • 7
-1
votes
1 answer

which version of gsoap is the most stable under ubuntu 16.04?

I have been using the GSoap API and have different responses based on OS + GSoap combination. For GSoap gsoap_2.8.26, I run a developed Stand Alone GSoap Server and get the following when I do :http://22.22.222.222:8075/?conmony.wsdl, I get: > …
Casey Harrils
  • 2,793
  • 12
  • 52
  • 93
-1
votes
1 answer

shoud root start the gsoap stand alone server

I have created a Gsoap stand-alone server. I am looking to have 3 versions of the GSoap server on one host machine (one version is to be used for development, another for testing and a final for production). Of course, each will reside on a…
Casey Harrils
  • 2,793
  • 12
  • 52
  • 93
-1
votes
1 answer

gsoap databinding, how to access a sequence within the .h file generated by gsoap

I have no idea how to access FilenameType_sequence class ns1__FilenameType { public: // SEQUENCE OF ELEMENTS $int __size_FilenameType_sequence 1; …
Grammin
  • 11,808
  • 22
  • 80
  • 138
-1
votes
1 answer

Running CGI application in window 7 IIS

I have create a application in C/C++ that has the extension .cgi followed the instruction in gSoap specification, now i want to deploy my application in IIS, how can i do it? Thanks for reading.
huy nguyen
  • 1,381
  • 2
  • 11
  • 18
-1
votes
1 answer

gSOAP Error 400 HTTP Bad Request

I am getting an error when i make a call like : soap_call___ns1__Sumar(soap,NULL,NULL,&oper,&resp) Error 400 fault al source [no subcode] "HTTP Error: 400 Bad Request" Detail: [no detail] ASMX Service was published on IIS, on local network at…
-1
votes
1 answer

gsoap generated wsdl not working with eclipse WebServices explorer

I have a gsoap-generated webservice server. Gsoap generated a WSDL file which describes the webservice. I wanted to use Eclipse's Web Services Explorer to test the webservice. The first stage of wsdl loading passes, though an error is…
Dariusz
  • 21,561
  • 9
  • 74
  • 114
-1
votes
2 answers

Apple Mach-O Linker (Id) Error using gSOAP

I´m really stuck with this issue... and i hope you can help me out here. I'm developing an iPad app for a company, that requires to use secured SOAP web services... not the perfect combination! i know, the thing is that taking a look around google,…
VaroX
  • 430
  • 4
  • 17
-2
votes
2 answers

Compilation error in stdsoap2.cpp in gSOAP with c++

I am using gSOAP to consume my wsdl. It worked fine till the last step when we type c++ -o calcclient calcclient.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp I have already moved stdsoap2.cpp to my current working directory. After executing the…
Hamza Farrukh
  • 57
  • 1
  • 10
-2
votes
2 answers

How to make an array of strings return value in gsoap

I am struggling with gsoap's return parameter binding. I have a function which returns char** which is composed like this: {char*, ..., char*, NULL}. I want the generated web service to be able to transmit and process multiple strings in one…
Dariusz
  • 21,561
  • 9
  • 74
  • 114
1 2 3
39
40