0

I am looking at some code that looks like the following

if (soap_begin_serve(pImpl))
{   
    if (pImpl->error >= SOAP_STOP)
    {   
        // TODO.
    }   
    return pImpl->error;
}   

and trying to figure out what to do in the TODO section there. Any ideas on what SOAP_STOP means?

4

1 回答 1

0

有一些关于 SOAP_STOP 所做的事情的线索分散在各种 gSOAP 支持站点上。最好的线索在这里这里。从 1000 开始的任何 gSOAP 错误似乎都是为了告诉 gSOAP 引擎停止进一步处理。

于 2013-03-29T18:30:36.137 回答