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
2 answers

GSoap client can not pass argument value to server

step 1, i had create an WebService using ASP.NET (C#): [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class WebService1 : System.Web.Services.WebService { …
timiil
  • 21
  • 4
0
votes
1 answer

connecting to web service from freebsd or other OS

i will explain my problem and please try to help me i want to access a web-service from Point-Of-Cell Handheld its SDK use C language on eclipse at first i wanted to learn how to access web-services from C or c++ LANGUAGE and i succeeded in this…
0
votes
1 answer

gsoap class generation problem

I am trying to generate gsoap classes for the JIRA issue tracking system WSDL. I run these commands to generate the required classes: $ wsdl2h -o JIRASoap.h $ soapcpp2 -C JIRASoap.h The soapcpp2 command gives the following output, but…
titaniumdecoy
  • 18,900
  • 17
  • 96
  • 133
0
votes
1 answer

What does the error SOAP_STOP imply?

I am looking at some code that looks like the following if (soap_begin_serve(pImpl)) { if (pImpl->error >= SOAP_STOP) { // TODO. } return pImpl->error; } and trying to figure out what to do in the TODO section…
Craig H
  • 7,949
  • 16
  • 49
  • 61
0
votes
2 answers

gSOAP C++ Multithreaded standalone server and client example

I am new to gSOAP, can some body post a working gSOAP multithreaded c++ standalone server and client. in the gSOAP document , multithreaded stand alone server does not have details on where to call the webservice functions , like int ns_add(int a ,…
muthu vel
  • 119
  • 3
  • 14
0
votes
1 answer

using gSOAP to download a file via a WCF windows service

I have a Windows Communication Foundation web service that I need to access to download a file from to my linux gsoap client. The interface is as follows: public interface IFileDownload { [OperationContract] Stream GetUpdate(string…
user1646528
  • 437
  • 2
  • 7
  • 15
0
votes
1 answer

Implement http get with gsoap standalone server with gsoap proxy classes

I know how to implement the http get for gsoap normal code, but when I generate code with gsoap and soapcpp2 -i, I don't have the soap_serve function available and I don't know how/where to reimplement the fget/http_get callback Has anyone tried…
Dolanor
  • 822
  • 9
  • 19
0
votes
1 answer

GSOAP ERROR: SSL verify error or warning with certificate at depth 1: unable to get local issuer certificate

I am trying to connect a c++ client code on VC 6.0 windows xp, to a web service and i get this error: SSL verify error or warning with certificate at depth 1: unable to get local iss uer certificate I generated all the autogenerated files of soap…
user1567759
  • 21
  • 1
  • 4
0
votes
1 answer

I can't communicate with a web service using gSOAP

I'm working actually on a project where I have to create a SOC design using the Board NB3000 from Altium. One part of this project is to communicate with a given published web service. As you know in embedded project we use most of the time the pure…
0
votes
1 answer

gSOAP multithread copy segmentation fault

I'm using gSOAP under Linux in one of my projects, and I have a problem when using the server for a pretty long time (actually not very long, I get this error after something like 10 hours...). I followed the example gave some time ago here for…
cpl
  • 669
  • 6
  • 23
0
votes
1 answer

Web Service Port No Question

I am working on a web service project using gsoap. I am new to web services and have some basic questions. What should be the port no. of my web service? Currently this web service is a stand alone service listening to a hard-coded port no. of…
Happy Go Lucky
  • 607
  • 1
  • 9
  • 17
0
votes
1 answer

Android: Sending data from Android to server using JSON-Object & HttpClient

I am trying to send data to Gsoap server using JSON object using android 4.0.3. I was run into a NetworkOnMainThread Exception with my android app. Then I have used network access is in an AsyncTask, so I don't see the point in this Exception…
Rahul Baradia
  • 11,802
  • 17
  • 73
  • 121
0
votes
1 answer

c++: How to insert values in database from client side using sqlite3

I am using this code for inserting data , but insert data in hard code, but my need is to insert data from user side using c++ , can any one insist me:** #include using namespace std; #include "sqlite3.h" int main (int argc, const char…
Satyam
  • 1,672
  • 3
  • 20
  • 34
0
votes
1 answer

Compiling gSOAP 2.8.8 package errors

I was building the gSOAP-2.8.8 package using the autoconf and statements as ./configure, make , make install while using the statement make i got the following errors as: C:\MinGW\msys\1.0\local\bin\bison.exe :cannot open file…
eddie
  • 252
  • 1
  • 5
  • 15
0
votes
1 answer

Android : HTTPCLIENT POST - Cookies Rejected

I am getting below warning frequently while running my HttpClient example 06-05 17:43:40.568: W/ResponseProcessCookies(725): Cookie rejected: "BasicClientCookie[version=1,name=visit,domain=.127.0.0.1,path=/,expiry=Tue Jun 05 17:53:40 IST 2012]".…
Rahul Baradia
  • 11,802
  • 17
  • 73
  • 121