gSoap - 服务调用返回SOAP_OK,但返回struct unitialized

时间:2011-04-22 16:47:17

标签: c ansi gsoap

这是一个空指针解除引用问题 - 在 ANSI C& gSoap 域:

我正在使用以下公共WSDL:

http://www.mobilefish.com/services/web_service/countries.php?wsdl

并使用soapUI测试了它的行为 我使用wsdl2h和soapcpp2实用程序创建了客户端唯一的ANSI C绑定。

我的问题:

在以前的gsoap项目中,客户端soap_call函数(第五个参数)中的结果结构除了以下内容之外不需要初始化:

struct ns2__countryInfoByIanaResponse out, *pOut
pOut= &out;
在这个项目之前,这一直是足够的 客户端soap_call看起来像这样:

soap_call_ns2__countryInfoByIana(&soap, NULL, NULL, pIn, pOut); /* SOAP 1.2 RPC return element...*/
此项目的

pIn 定义为char *,填充了两个字符的IANA代码,例如“us”或“nz”。此特定调用的返回结构 pOut 形如下:

struct ns2__countryInfoByIanaResponse
{
    struct ns1__CountryData *countryinfo;
}

ns1__CountryData的形状如下:

struct ns1__CountryData
{
    char *ianacode; /* required element of type xsd:string */
    char *countryname;  /* required element of type xsd:string */
    float latitude; /* required element of type xsd:float */
    float longitude;    /* required element of type xsd:float */
};

因此,我的应用程序对此函数的调用设置如下:

//declare response structure:
struct ns2__countryInfoByIanaResponse o, *pO;

void main(void)
{
   pO = &o;
   if(GetCountryInfo(buf, pO)==0)
   {
      pO->countryinfo->countryname; **Error Occurs Here...**
   }                                
}

错误发生在pO-> countryinfo上,作为取消引用空指针

GetCountryInfo在这里定义:

int DLL_EXPORT GetCountryInfo(char *pIn, struct ns2__countryInfoByIanaResponse *pOut)
{

    int status = 0;
    size_t len=2048;
    char buf[2048];

    if (soap_call_ns2__countryInfoByIana(&soap, NULL, NULL, pIn, pOut)== SOAP_OK)
    {
        status = 0;
    }
    else
    {
        //soap_print_fault(&soap, stderr);
        soap_sprint_fault(&soap, buf, len);
        MessagePopup("soap error", buf);
        status = 1;
    }
    return status;
}

所以,这似乎是一个组合 ANSI C / gSoap 问题:过去的其他项目,具有非常相似的输出结构形状(即包含包含char的结构的结构*)在初始化时返回完全填充的结果,除了上面显示的内容之外。

有什么想法吗?如果我能提供任何进一步的细节,请告诉我。 感谢。

1 个答案:

答案 0 :(得分:1)

在我看来肥皂服务器有一个bug。 countryInfoByIana函数的示例soap响应如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
        xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
        SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
  <SOAP-ENV:Body>
    <SOAP-ENV:countryInfoByIanaResponse>
      <return>
        <ianacode xsi:type="xsd:string">nz</ianacode>
        <countryname xsi:type="xsd:string">New Zealand</countryname>
        <latitude xsi:type="xsd:float">-40.900558</latitude>
        <longitude xsi:type="xsd:float">174.885971</longitude>
      </return>
    </SOAP-ENV:countryInfoByIanaResponse>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

<SOAP-ENV:countryInfoByIanaResponse>应该有不同的命名空间。

这是WSDL的一部分,它包含相同(无效)的命名空间。

<operation name="countryInfoByIana">
  <soap:operation soapAction="http://schemas.xmlsoap.org/soap/envelope/#Countries#countryInfoByIana" />
  <input>
    <soap:body use="encoded" namespace="http://schemas.xmlsoap.org/soap/envelope/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
  </input>
  <output>
    <soap:body use="encoded" namespace="http://schemas.xmlsoap.org/soap/envelope/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
  </output>
</operation>

修改

关于你的问题,为什么soapUI工作正常; soapUI可能不会像gsoap一样验证返回值。

我设法让我的电脑上的程序成功使用gsoap 2.7:

在soapClient.c第56行中,更改以下行:

//soap_get_ns2__countryInfoByIanaResponse(soap, _param_1, "ns2:countryInfoByIanaResponse", "");
soap_get_ns2__countryInfoByIanaResponse(soap, _param_1, "SOAP-ENV:countryInfoByIanaResponse", "");

在soapC.c第1470行中,更改此行:

//if (soap_in_PointerTons1__CountryData(soap, "countryinfo", &a->countryinfo, "ns1:CountryData"))
if (soap_in_PointerTons1__CountryData(soap, "return", &a->countryinfo, "ns1:CountryData"))//return

但我不认为你应该以这种方式解决问题。不仅因为这两个文件都已生成,因此当您再次生成更改时,您将丢失更改。