- 论坛徽章:
- 0
|
此问题已解决,回来分享下。
/**********测试开始**********/
struct ns__card
{
xsd__string holdername;
xsd__string value;
};
struct ns__cardList
{
struct ns__card *__ptr;
int __size;
};
int ns__testfun(xsd__string bufin,struct ns__cardList *list);
/*服务端程序*/
int ns__testfun(struct soap *soap,xsd__string bufin,struct ns__cardList
*list)
{
printf("in=[%s]\n",bufin);
list->__size =2;
list->__ptr = soap_malloc(soap,list->__size*sizeof(struct ns__card));
int i=0;
for(i=0;i<list->__size;i++)
{
if (i==0)
{
(list->__ptr+i)->holdername = soap_strdup(soap,"zhangsan");
(list->__ptr+i)->value= soap_strdup(soap,"123");
}
else
{
(list->__ptr+i)->holdername = soap_strdup(soap,"lisi");
(list->__ptr+i)->value= soap_strdup(soap,"789");
}
}
for(i=0;i<list->__size;i++)
{
printf("name=[%s]\n",(list->__ptr+i)->holdername);
printf("\n");
}
return SOAP_OK;
}
/*客户端程序*/
printf("hello\n");
struct ns2__testfunResponse rest;
soap_call_ns2__testfun( &soap, server, "","abc" , &rest);
printf("size=[%d]\n",rest.list->__sizeitem);
int t;
for(t=0;t<rest.list->__sizeitem;t++)
{
//printf("name=[%s]\n",rest.list->item->holdername);
printf("name=[%s]\n",(rest.list->item+t)->holdername);
printf("name=[%s]\n",(rest.list->item+t)->value);
}
printf("ok\n" |
|