首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

soap 类 怎么 定义

2013-04-09 
【急】soap 类 如何 定义开始学webserver 遇到个问题,想请教大侠主函数如下int main(void){printf(very goo

【急】soap 类 如何 定义
开始学webserver 遇到个问题,想请教大侠

主函数如下

int main(void)
{
printf("very good!/n");
_ns1__getWeatherbyCityName city;  //这样的对象将生成怎样的对象啊?
_ns1__getWeatherbyCityNameResponse cityResponse;

WeatherWebServiceSoapProxy service;

if(service.getWeatherbyCityName(city,cityResponse) == SOAP_OK)
{
//如何返回天气的值
}
return 0;
}


其中_ns1__getWeatherbyCityName的类定义如下
class SOAP_CMAC _ns1__getWeatherbyCityName
{
public:
std::string *theCityName;/* optional element of type xsd:string */
struct soap *soap;/* transient */
public:
virtual int soap_type() const { return 16; } /* = unique id             SOAP_TYPE__ns1__getWeatherbyCityName */
virtual void soap_default(struct soap*);
virtual void soap_serialize(struct soap*) const;
virtual int soap_put(struct soap*, const char*, const char*) const;
virtual int soap_out(struct soap*, const char*, int, const char*) const;
virtual void *soap_get(struct soap*, const char*, const char*);
virtual void *soap_in(struct soap*, const char*, const char*);
        _ns1__getWeatherbyCityName() { _ns1__getWeatherbyCityName::soap_default(NULL); }
virtual ~_ns1__getWeatherbyCityName() { }
};

class SOAP_CMAC _ns1__getWeatherbyCityNameResponse
{
public:
ns1__ArrayOfString *getWeatherbyCityNameResult;/* SOAP 1.2 RPC return element (when namespace qualified) *//* optional element of type ns1:ArrayOfString */
struct soap *soap;/* transient */
public:
virtual int soap_type() const { return 17; } /* = unique id SOAP_TYPE__ns1__getWeatherbyCityNameResponse */
virtual void soap_default(struct soap*);
virtual void soap_serialize(struct soap*) const;
virtual int soap_put(struct soap*, const char*, const char*) const;
virtual int soap_out(struct soap*, const char*, int, const char*) const;
virtual void *soap_get(struct soap*, const char*, const char*);
virtual void *soap_in(struct soap*, const char*, const char*);
_ns1__getWeatherbyCityNameResponse() { _ns1__getWeatherbyCityNameResponse::soap_default(NULL); }
virtual ~_ns1__getWeatherbyCityNameResponse() { }
};


另外 函数原型 为
virtualint getWeatherbyCityName(_ns1__getWeatherbyCityName *ns1__getWeatherbyCityName, _ns1__getWeatherbyCityNameResponse *ns1__getWeatherbyCityNameResponse) { return this->getWeatherbyCityName(NULL, NULL, ns1__getWeatherbyCityName, ns1__getWeatherbyCityNameResponse); }
virtualint getWeatherbyCityName(const char *endpoint, const char *soap_action, _ns1__getWeatherbyCityName *ns1__getWeatherbyCityName, _ns1__getWeatherbyCityNameResponse *ns1__getWeatherbyCityNameResponse);


我想问下,这样的参数如何定义,不会初始化 soap 变量啊? 怎样才能显示返回值呢??谢谢大家




soap
[解决办法]
菜单 项目-添加web引用。
[解决办法]
随便搜了一个文章:http://blog.csdn.net/begtostudy/article/details/2605017

热点排行