1

次の抜粋を含むプロジェクトは、gsoap で生成された c バインディングを使用するクライアント アプリケーションです ( gsoap - www.cs.fsu.edu/~engelen/soap.html )。プロジェクトは正常にビルドされますが、以下に示すメイン関数の行で中断します。

プロジェクト ヘッダー ファイルで次のように定義されています。

class SOAP_CMAC _ns7__accounts
{
public:
std::vector<std::string>accountNumber;  /* required element of type xsd:string */
std::string *requestIDTrackingForESB;   /* optional attribute */
struct soap *soap;  /* transient */
public:
virtual int soap_type() const { return 23; } /* = unique id     SOAP_TYPE__ns7__accounts */
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*);
         _ns7__accounts(): requestIDTrackingForESB(NULL), soap(NULL) { _ns7__accounts::soap_default(NULL); }
virtual ~_ns7__accounts() { }
};

付属の .cpp ファイルで次のように定義されます。

 int addressByAccount_ExtWS_BPELSOAPProxy::accountsBPEL(_ns7__accounts *ns7__accounts, _ns9__accountsResponse *ns9__accountsResponse);

main()で、読みやすくするためにサービスを宣言します。

addressByAccount_ExtWS_BPELSOAPProxy service.

これが私のmain.cppです

#include <iostream>
#include "soapaddressByAccount_ExtWS_BPELSOAPProxy.h"
#include "addressByAccount_ExtWS_BPELSOAP.nsmap"
#include <winsock2.h>
using namespace std;
struct soap *soap;

int main()
{ 
    addressByAccount_ExtWS_BPELSOAPProxy service;
    _ns9__accountsResponse *pResult = 0;
    _ns7__accounts *pInput = 0; //_ns7__account is defined in .h excerpt above
    char account[] = "00000201"; //input value attempting pass to web service

    //std::vector<std::string>accountNumber; defined in .h excerpt above, 

    pInput->accountNumber.push_back(account); //breaks here - 0xC0000005 returned.

    if (service.accountsBPEL(pInput, pResult) == SOAP_OK)
    {
      cout << "soap OK!" << endl; ;
    }

    else
        service.soap_stream_fault(std::cerr);

    return 0;
}

文字列を pInput に割り当てる際に私が間違っていることを知っている人はいますか?

ありがとう

4

1 に答える 1

1

null ポインターを逆参照しています。

以下でよりうまく機能するはずです:

_ns9__accountsResponse Result;
_ns7__accounts Input;

...

if (service.accountsBPEL(&Input, &Result) == SOAP_OK)
于 2011-03-04T18:05:04.887 に答える