Click here to Skip to main content
15,886,919 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionATL programming Pin
santhosh-padamatinti22-Sep-09 2:35
santhosh-padamatinti22-Sep-09 2:35 
AnswerRe: ATL programming Pin
CPallini22-Sep-09 2:38
mveCPallini22-Sep-09 2:38 
AnswerRe: ATL programming Pin
Rajesh R Subramanian22-Sep-09 4:35
professionalRajesh R Subramanian22-Sep-09 4:35 
Questionhow to set background color of menu and submenu in vc++ Pin
prerananit22-Sep-09 1:45
prerananit22-Sep-09 1:45 
AnswerRe: how to set background color of menu and submenu in vc++ Pin
Game-point22-Sep-09 2:00
Game-point22-Sep-09 2:00 
Questiondisplaying of context menu in richedittextbox control in vc++,mfc Pin
prerananit22-Sep-09 1:42
prerananit22-Sep-09 1:42 
AnswerRe: displaying of context menu in richedittextbox control in vc++,mfc Pin
Richard MacCutchan22-Sep-09 2:20
mveRichard MacCutchan22-Sep-09 2:20 
QuestionHow to call a method from soap base .net web service? Pin
bankey101022-Sep-09 1:23
bankey101022-Sep-09 1:23 
Hello all,

i have a WSDL of .net based web service.

i need to call methods from that webservice using soap. i made all the supporting files and trying to call methods as follows:

struct soap soap;

soap_init(&soap);

ns1__loginVisitor.name = (char *)calloc(1, strlen("Test") + 1);
strcpy(ns1__loginVisitor.name ,"Test");

ns1__loginVisitor.pwd = (char *)calloc(1, strlen("12345") + 1);
strcpy(ns1__loginVisitor.pwd ,"12345");

ns1__loginVisitor.memorizeLogin = xsd__boolean__false_;

stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]];
ns1__loginVisitor.moduleType = (char *)calloc(1, strlen("Contact Directory") + 1);
strcpy(ns1__loginVisitor.moduleType , "Contact Directory");

struct _ns1__loginVisitorResponse ns1__loginVisitorResponse;

struct _ns1__getCountriesResponse ns1__getCountriesResponse;

&ns1__getAccountInfoResponse);
soap_call___ns2__getCountries(&soap, NULL,NULL,NULL,&ns1__getCountriesResponse);


if(soap_call___ns2__loginVisitor(&soap, NULL,NULL, &ns1__loginVisitor, &ns1__loginVisitorResponse) == SOAP_OK)
{
NSInteger yu = 90;
}

but i am not getting proper response from the webservice.

can any body tell me where i am wrong? or please suggest me.
QuestionProblem with get/set method [modified] Pin
Sivyo22-Sep-09 0:16
Sivyo22-Sep-09 0:16 
AnswerRe: Problem with get/set method Pin
Nuri Ismail22-Sep-09 0:41
Nuri Ismail22-Sep-09 0:41 
GeneralRe: Problem with get/set method Pin
Sivyo22-Sep-09 1:33
Sivyo22-Sep-09 1:33 
GeneralRe: Problem with get/set method Pin
Nuri Ismail22-Sep-09 2:05
Nuri Ismail22-Sep-09 2:05 
GeneralRe: Problem with get/set method Pin
Sivyo22-Sep-09 2:17
Sivyo22-Sep-09 2:17 
GeneralRe: Problem with get/set method Pin
David Crow22-Sep-09 2:53
David Crow22-Sep-09 2:53 
GeneralRe: Problem with get/set method Pin
Sivyo22-Sep-09 9:45
Sivyo22-Sep-09 9:45 
AnswerRe: Problem with get/set method Pin
CPallini22-Sep-09 0:59
mveCPallini22-Sep-09 0:59 
GeneralRe: Problem with get/set method Pin
Sivyo22-Sep-09 1:39
Sivyo22-Sep-09 1:39 
QuestionRe: Problem with get/set method Pin
CPallini22-Sep-09 1:59
mveCPallini22-Sep-09 1:59 
AnswerRe: Problem with get/set method Pin
Sivyo22-Sep-09 2:05
Sivyo22-Sep-09 2:05 
GeneralRe: Problem with get/set method Pin
CPallini22-Sep-09 2:28
mveCPallini22-Sep-09 2:28 
GeneralRe: Problem with get/set method Pin
Sivyo22-Sep-09 3:18
Sivyo22-Sep-09 3:18 
AnswerRe: Problem with get/set method Pin
Richard MacCutchan22-Sep-09 2:32
mveRichard MacCutchan22-Sep-09 2:32 
QuestionRe: Problem with get/set method Pin
CPallini22-Sep-09 2:35
mveCPallini22-Sep-09 2:35 
AnswerRe: Problem with get/set method Pin
Richard MacCutchan22-Sep-09 6:07
mveRichard MacCutchan22-Sep-09 6:07 
AnswerRe: Problem with get/set method Pin
Sivyo22-Sep-09 3:21
Sivyo22-Sep-09 3:21 

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.