Click here to Skip to main content
Licence CPOL
First Posted 22 Jun 2007
Views 20,973
Downloads 1,043
Bookmarked 21 times

WebService Call From VC++6.0

By | 22 Jun 2007 | Article
Useful for beginners who want to call Webserive from VC6.0

Introduction

This article is useful for those who have never worked with WebService call from VC++ and they want to know how to send a request and get a response? This is my first application which I have created for learning purposes.

Background

I have referred to one CodeProject article. For WebService call, we require two things: one is that WebService must be created before calling it and the other is this VC++ application which calls it.

Using the Code

First of all, I would like to give you a brief on how to create a WebService. I am a System developer, that's why I don't have that good knowledge of creating a Webservice. You need to start Visual 2005, then File ->New-> website-> ASP.NET webservice. Then one default function will be created by the browser. Inside that function, you need to write some functionality that you want to take as request and return something on input basis. I have taken name as input and return address as per input name. That's why you can see Chaitanya name inside the XML code which I am posting on that link. Once the web service is created, you need to publish your site (which you can do using Inet manager).

Here is the code which I have used for posting a request and getting a response from WebService.

//
// Any source code blocks look like this
//
IXMLHttpRequestPtr httpReq( _uuidof(MyXMLHTTPRequest));
 _bstr_t  HTTPMethod ;
 _variant_t noAsync = _variant_t( (bool)false );
 //httpReq.CreateInstance("MyXMLHTTPRequest");
 CString strUserName = "mahesh"; // this one is user name of webservice machine
 VARIANT vUser;
 vUser.vt = VT_BSTR;
 vUser.bstrVal = strUserName.AllocSysString();
 CString strPass = "gtl=11"; // this is system password
 VARIANT vPassword;
 vPassword.vt = VT_BSTR;
 vPassword.bstrVal = strPass.AllocSysString();
 HTTPMethod = _bstr_t( "POST" );
// http://gtl-334/XmlTesting/Service.asmx this is url as webservice.
 httpReq->open(HTTPMethod ,
 "http://gtl-334/XmlTesting/Service.asmx",noAsync,vUser,vPassword);
 httpReq->setRequestHeader("Content-Type", "application/soap+xml");
 CString szRequest;
 
 szRequest = "<?xml version=\"1.0\" encoding=\"utf-8\"?> \
<soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" 
	xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" 
	xmlns:soap12=\"http://www.w3.org/2003/05/soap-envelope\"> \
  <soap12:Body>\
    <HelloWorld xmlns=\"http://tempuri.org/\"> \
      <strUserName>Chaitanya</strUserName>\
    </HelloWorld>\
  </soap12:Body>\
</soap12:Envelope>";
  
 VARIANT vRequest;
 vRequest.vt = VT_BSTR;
 vRequest.bstrVal = szRequest.AllocSysString();
 
 httpReq->send(vRequest); // sending to that URL
 BSTR strText;
 _bstr_t bsResponse = httpReq->responseText; //receiving reply from web service
   
 AfxMessageBox(bsResponse);
 
 CDialog::OnOK(); 

One very important thing is that we need to import MSXML.dll which you can see in the code in stdafx.h and "using namespace MSXML;" line in file.

Points of Interest

You can advise me on how to improve this article so that I can also learn new things. If you have any queries, you can post a message. I will try to solve it, and that way I will also learn new things in this area. You can mail me at cha1202001@yahoo.com.

History

  • 22nd June, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

chaitanya shah

Technical Lead
Tata Consultancy Servcies
India India

Member

Follow on Twitter Follow on Twitter
I have experience in iOs, Objective C,Java,C++/Vc++ 6.0,vc.Net,MFC,ATL,COM,WTL.
 
You can contact me on chaitanya.ce@gmail.com if you have any query.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionmsxml6r.dll cannot be loaded PinmemberArvindRSingh5:11 1 Sep '11  
GeneralAssertion is coming when i use the same code PinmemberMember 35010951:03 4 Jun '09  
GeneralRe: Assertion is coming when i use the same code Pinmemberchaitanya shah3:22 11 Jun '09  
GeneralYou can also import a WSDL file - it's a little easier to maintain Pinmemberjimbosetwe3:41 6 Nov '08  
GeneralRe: You can also import a WSDL file - it's a little easier to maintain Pinmemberchaitanya shah3:27 11 Jun '09  
Questionhow can send to the web service xml data Pinmembernabeel822:04 26 Oct '08  
AnswerRe: how can send to the web service xml data Pinmemberchaitanya shah3:32 11 Jun '09  
Questionwhat if a out parameter of a web service is a dataset, how will we handle in VC++ Pinmembercooldeo18t15:24 18 May '08  
AnswerRe: what if a out parameter of a web service is a dataset, how will we handle in VC++ Pinmemberchaitanya shah1:37 21 May '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 22 Jun 2007
Article Copyright 2007 by chaitanya shah
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid