3
votes
4answers
105 views
Network programming: SOAP vs DIY marshalling with XML library?
I know that there are a lot of discussions already on SO about SOAP, bloat, XML, and alternative mechanisms like REST.
Here's the situation. A new team member is really talking up …
0
votes
1answer
11 views
Where can find WSDL file generated by gSOAP
Hi there,
I received url of web service running on gSOAP/2.7 (deciding from HTTP headers). The problem is they didn't provide me with WSDL file. Anybody knows which default URL I …
2
votes
4answers
349 views
Google Protocol Buffers and HTTP
Hello, I'm refactoring legacy C++ system to SOA using gSoap. We have some performance issues (very big XMLs) so my lead asked me to take a look at protocol buffers. I did, and it l …
0
votes
0answers
28 views
Use gSOAP for VS 2003/C++ access to SOAP Web Service with WS-Security?
We have an upcoming project to allow an old platform that's only extensible with C++ / VS 2003 to call a SOAP-based web service that uses WS-Security.
My Google research indicates …
2
votes
0answers
47 views
Where have you used gSOAP?
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?
0
votes
1answer
81 views
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 <url to wsdl>
$ …
0
votes
1answer
130 views
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 servic …
2
votes
4answers
589 views
C++ - gsoap : Parameter passing memory management issues
I am writing a web server and client test stub for it. I have questions regarding memory management of the parameters.
From my client I am calling a soap function ns1_func1(input …
1
vote
1answer
118 views
Testing a gSOAP server
In a normal client/server design, the client can execute functions implemented on the server-side. Is it possible to test a gSOAP server by connecting an extra client to it?
2
votes
3answers
548 views
What license do I need to use gSOAP in a commercial product?
I'd like to use gSOAP in a product which will be distributed commercially. The use I have in mind is what I suspect is a pretty typical workflow—generating a header using wsdl2h, c …
0
votes
3answers
478 views
Is there an Objective-C Wrapper for gSOAP?
I'm going to use gSOAP to interact with a WCF webservice in my Mac project. It does pretty much exactly what I need and it does it well (pretty much the exact opposite of WSMakeStu …
0
votes
1answer
316 views
WCF and gSOAP - interoperable code?
I'm trying to write a simple WCF Server + gSOAP client proof-of-concept application using SOAP 1.2 protocol. Here's server code:
[ServiceContract(Namespace="http://test.com")]
pub …
3
votes
5answers
917 views
WSDL best practices
Hi,
I'm developing a SOAP application that integrates with a 3rd party. I think the WSDL of this third party is very strange. I'm pretty new to SOAP, so I don't want to go asking …
0
votes
0answers
569 views
Best way to do arrays in gsoap, considering WSDL compliance and performance
I'm using gsoap to generate an XML SOAP parser and WSDL grammar, and was wondering what is the recommended way to express a static array that is both fast to parse and generates a …
0
votes
0answers
185 views
gSOAP and WCF session: strange cookie detected
I am trying to implement session between WCF and gSoap, using basicHttpBinding. And I've almost succeeded, using ASP.NET compatibility mode. I used this technique: http://blogs.msd …
