Click here to Skip to main content
15,867,328 members
Articles / Programming Languages / XML

VC Soap Client

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
7 Feb 2001 513.2K   5.8K   42   55
Creating a SOAP client using C++ instead of VB

Sample Image - VCSoapClient.gif

Introduction

SOAP has a lot of potential for providing interfaces for web services. SOAP will be good for a lot of different types of services. The SOAP toolkit from Microsoft provides developers with a good starting place for learning SOAP. The SOAP Toolkit 2.0 Beta 1 was released on Jan 3, 2000. It provides new samples and a help file to explain the new interfaces. The samples provide both client and server examples to build from in developing your own services.

One thing that is a bit neglected in the samples (provided by Microsoft) is the use of C++ to develop the services. All of the samples are written to show the use of VB and ASP. This is fine and dandy, but from the use of SOAP my work needs to use C++. So I looked on the Internet for examples of SOAP using VC. To my surprise, I only found one, and it used the SOAP Toolkit 1.0 instead of the latest 2.0.

Since the VB samples worked perfectly fine, I decided to develop a client application using VC to talk to the VB Web Service. I started with the Low-Level VB Calculator program and the VC sample that I had from the SOAP Toolkit 1.0.

To include the COM interfaces from the SOAP DLLs, the #import directive was used. This was used for the MSSOAP1.dll and a using clause was added to use the MSSOAPLib namespace. The VB sample used a WinInetConnector to connect to the webserver for the service. This interface is not in the MSSOAPLib namespace. WiSC10.dll was also imported so that I had the connector that was needed.

This second import led to problems. I had never had to import more than one DLL in any of my previous projects. I was getting a fatal error LNK1179: invalid or corrupt file: duplicate comdat "_IID_ISoapConnector" link error. After some research, I found that I had to remove the named_guids from the second import line. This solved my linking error and allowed the rest of the coding to go a lot smoother. An exclude statement was included to remove some compiler warnings about automatic excludes.

C++
// Replace with the path of SOAP DLLs 
// Exclude was added to remove the automatic exclusions
#import "C:\\Program Files\\MSSoapSDK\\Binaries\\MSSOAP1.dll" 
named_guids raw_interfaces_only exclude("IStream","ISequentialStream","_LARGE_INTEGER",
"_ULARGE_INTEGER","tagSTATSTG","_FILETIME")
#import "C:\\Program Files\\MSSoapSDK\\Binaries\\WiSC10.dll" 
raw_interfaces_only exclude("IStream","ISequentialStream",
"_LARGE_INTEGER","_ULARGE_INTEGER","tagSTATSTG","_FILETIME")
using namespace MSSOAPLib;

From here, the rest of the conversion from the VB code to the C++ interfaces was simple. This was fairly straightforward for anyone that has done conversions before. Smart pointers were used to make the creating and releasing of objects simpler.

SOAP Client Summary

For this VC example, I decided to use the one VC sample that I had found online as a base for development. The problem with this is that it was a console application and not a windowed application. I decided to still develop it using the console based app and just stick with one type of command to the server. Including this code into a normal Window application should be a trivial thing for most VC COM developers.

To begin this low-level SOAP client, you need to create a SoapConnector. The implementation of the SoapConnector could use any type of transport protocol such as HTTP, FTP, or SMTP. The SOAP documentation says that there are three different SoapConnector implementations included with the SOAP Toolkit 2.0. These implementations are WinInetConnector, XmlHttpConnector (default for 9x/Me clients), and HttpLibConnector (default for NT/2K clients). I choose to use the WinInetConnector since the VB sample that I was basing my code on used it. I went back to try the other implementations of the SoapConnector and all of them worked correctly on Win2k.

C++
// Create the Connector
Connector = NULL;
Connector.CreateInstance(__uuidof(WinInetConnectorLib::WinInetConnector));

// Connect to the web service
Connector->put_Property(endpoint,vEndPoint);
Connector->Connect(NULL);

// Begin the message to the server
Connector->put_Property(action,vAction);
Connector->BeginMessage(NULL);

After creating the SoapConnector, the EndPointURL was set and the Connect method was called. This allows the code to connect to the web service. The SoapAction was then set to uri:Multiply to tell the server what action I was going to be requesting. This follows the VB example from the toolkit.

The next step is to create the SoapSerializer. The SoapSerializer is the interface that allows you to create the XML message and send it to the server.

C++
// Create the SoapSerializer
Serializer = NULL;
Serializer.CreateInstance(__uuidof(SoapSerializer));

// Connect the serializer to the input stream of the connector
Connector->get_InputStream(&inputstream);
_variant_t stream = inputstream;
Serializer->Init(stream);

// Build the XML message manually
Serializer->startEnvelope(NULL,NULL,NULL);
Serializer->startBody(NULL);
Serializer->startElement(method,command,NULL,m);
Serializer->startElement(a,NULL,NULL,NULL);
Serializer->writeString(val1);
Serializer->endElement();
Serializer->startElement(b,NULL,NULL,NULL);
Serializer->writeString(val2);
Serializer->endElement();
Serializer->endElement();
Serializer->endBody();
Serializer->endEnvelope();

// Send the message to the web service
Connector->EndMessage();

After the SoapSerializer is created, it needs to be attached to the input stream of the SoapConnector. After this, the message is created and sent. As an interesting note, as you look over the source code, the EndMessage method is the command that sends the message to the server.

Up to this point, we have built the XML command and sent it to the server to be executed. The next step is to read the results. I left error checking off for this, but it can be added. To read the reply from the server, the client application needs to use a SoapReader. The SoapReader is connected to the output stream of the SoapConnector. From there, the results can be read back in using an IXMLDOMElement object. This is then displayed using std::cout.

C++
// Create the SoapReader
Reader = NULL;
Reader.CreateInstance(__uuidof(SoapReader));

// Connect the reader to the output stream of the connector
Connector->get_OutputStream(&outputstream);
_variant_t outstream = outputstream;
VARIANT_BOOL bres;
Reader->load(outstream,&bres);

// Get the results from the server and print it
MSSOAPLib::IXMLDOMElement *element;
Reader->get_RPCResult(&element);
BSTR buff;
element->get_baseName(&buff);
std::cout << W2A(buff) << std::endl;
element->get_text(&buff);
std::cout << W2A(buff) << std::endl;

Conclusion

Overall, SOAP communications is a simple thing for most developments. The low-level communications shown here allows you to see the creation of the XML message as well as parse out the return message. This is a simple example based on the ClcLVBCl sample that comes with the SOAP Toolkit 2.0 that shows the way that SOAP can be used with VC.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Software Developer (Senior) InfernoRed Technologies
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to call web Service in VC++ in visual studio 2015 Pin
tanusree ism23-Sep-16 1:05
tanusree ism23-Sep-16 1:05 
QuestionAccept-Encoding Pin
sercinyou17-Dec-08 0:01
sercinyou17-Dec-08 0:01 
GeneralCould you help me in writing SOAP API in C++ Pin
msurni5-Mar-08 19:36
msurni5-Mar-08 19:36 
GeneralVc++ Clietn .NET C# webservices Pin
Kabirdas Jaunjare7-Jun-07 20:24
Kabirdas Jaunjare7-Jun-07 20:24 
GeneralRe: Vc++ Clietn .NET C# webservices Pin
Steve Maier8-Jun-07 6:22
professionalSteve Maier8-Jun-07 6:22 
GeneralRe: Vc++ Clietn .NET C# webservices Pin
Kabirdas Jaunjare9-Jun-07 19:44
Kabirdas Jaunjare9-Jun-07 19:44 
GeneralRe: Vc++ Clietn .NET C# webservices Pin
Steve Maier10-Jun-07 17:07
professionalSteve Maier10-Jun-07 17:07 
GeneralRe: Vc++ Clietn .NET C# webservices Pin
Kabirdas Jaunjare10-Jun-07 19:13
Kabirdas Jaunjare10-Jun-07 19:13 
but steave....
for same services C# client is giving exact reault ..
but zero in case of Vc++ client.
how come..this .is.
is that i m missing something in some setting ...
or..something..else
since i m new to SOAP ..
i would request you to guide me through...
anyway i ve checked with you suggestion but..result are still zero..
infact whatever i m passing from client to server ...not reutrn to client as expecte..
i feel parameter are not passing coreectly to client...

GeneralRe: Vc++ Clietn .NET C# webservices Pin
Kabirdas Jaunjare12-Jun-07 0:08
Kabirdas Jaunjare12-Jun-07 0:08 
GeneralRe: Vc++ Clietn .NET C# webservices Pin
jstevenco27-Nov-07 14:54
jstevenco27-Nov-07 14:54 
GeneralAuth Error in EndMessage() Pin
Amit Shirsikar29-Sep-05 5:38
sussAmit Shirsikar29-Sep-05 5:38 
GeneralSOAP Client - Create Instance problem - invalid pointer Pin
leventozgur13-Sep-05 22:24
leventozgur13-Sep-05 22:24 
GeneralRe: SOAP Client - Create Instance problem - invalid pointer Pin
Steve Maier14-Sep-05 16:38
professionalSteve Maier14-Sep-05 16:38 
QuestionSOAP response is ?????? Pin
atulvij1930-Aug-05 11:29
atulvij1930-Aug-05 11:29 
GeneralPassing NULL value to WebService Pin
A.Ravikumar8-Aug-05 2:03
A.Ravikumar8-Aug-05 2:03 
GeneralRe: Passing NULL value to WebService Pin
Kabirdas Jaunjare7-Jun-07 20:13
Kabirdas Jaunjare7-Jun-07 20:13 
GeneralProblem with SOAP-ENV:Header with mssoap1.dll Pin
smpshehan18-May-05 19:41
smpshehan18-May-05 19:41 
GeneralRe: Problem with SOAP-ENV:Header with mssoap1.dll Pin
Steve Maier19-May-05 3:04
professionalSteve Maier19-May-05 3:04 
GeneralRe: Problem with SOAP-ENV:Header with mssoap1.dll Pin
smpshehan19-May-05 15:53
smpshehan19-May-05 15:53 
GeneralRe: Problem with SOAP-ENV:Header with mssoap1.dll Pin
nitincop9-Mar-08 20:09
nitincop9-Mar-08 20:09 
GeneralMSSOAP1.dll program problem in VC++ Pin
smpshehan18-May-05 19:33
smpshehan18-May-05 19:33 
GeneralProblem with SOAP-ENV:Header with mssoap1.dll Pin
smpshehan18-May-05 19:28
smpshehan18-May-05 19:28 
GeneralRe: Problem with SOAP-ENV:Header with mssoap1.dll Pin
Amit Shirsikar29-Sep-05 5:34
sussAmit Shirsikar29-Sep-05 5:34 
GeneralQuestion Pin
reema13-Apr-05 19:28
reema13-Apr-05 19:28 
GeneralRe: Question Pin
Steve Maier4-Apr-05 4:25
professionalSteve Maier4-Apr-05 4:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.