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?

Craig H
  • 7,949
  • 16
  • 49
  • 61

1 Answers1

0

There's a few clues to what SOAP_STOP does scattered about the various gSOAP support sites. The best clues are here and here. It appears that any gSOAP error from 1000 on up is meant to tell the gSOAP engine to stop further processing.

Dave Newman
  • 1,018
  • 10
  • 15