今天学习gsoap的函数调用方式,一上来就出错了,错误原因还没找到,但为了查找出错原因,需要打出错误信息,于是学会了在调用gsoap的函数出错时获取错误信息的方式: struct soap s
今天学习gsoap的函数调用方式,一上来就出错了,错误原因还没找到,但为了查找出错原因,需要打出错误信息,于是学会了在调用gsoap的函数出错时获取错误信息的方式:
struct soap soap;
//... 执行gsoap调用
if (soap.error!= SOAP_OK) {
// 只打错误码,貌似没啥用,
std::printf("soap err,errcode = %d\n", status);
// C++ 错误码字符串std::string
std::ostringstream stream;
soap_stream_fault(&soap, stream);
// stream.str()返回std::string
std::cout << stream.str() << std::endl;
// C++ 直接输出错误信息到控制台std::error
soap_stream_fault(&soap, std::cerr);
// C 返回错误码字符串
char message[512];
soap_sprint_fault(&soap,message,512);
printf("error message:%s\n",message);
}