免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: explorewen
打印 上一主题 下一主题

[C] 用gsoap返回结构体数组遇到的问题?只返回了一个结构? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2014-05-12 17:01 |只看该作者
此问题已解决,回来分享下。
/**********测试开始**********/
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"
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP