通过libcurl将SOAP请求发送到.NET Web服务!

时间:2011-03-22 11:08:55

标签: .net curl libcurl

我正在尝试将SOAP请求发送到接受XML字符串的.NET Webservice。这是我存储在char数组中的示例XML字符串:

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <BankDeposit xmlns="http://tempuri.org/">
    <xmlParam>
        <onlineTxn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.tempuri.org/">
        <TXN>
            <TxnID>17032011111230</TxnID>
            <CCID>73467836483</CCID>
            <ACNO>899000777</ACNO>
            <TXAMT>52</TXAMT>
        </TXN>
    </onlineTxn>
    </xmlParam>
    </BankDeposit>
  </soap12:Body>
</soap12:Envelope>

我用来提交.NET webservice的代码如下:

int PostRequest(void)
{
    CURL *curl;
    char buffer[2000]=//XML String to be sent.
    int res = -1;
    struct curl_httppost *post=NULL, *last=NULL;
    struct curl_slist *headers = NULL;
    unsigned int buffer_size = 2000;

    fp = fopen("res.xml","w");
    fpreq = fopen ("req.xml", "w");

    curl=curl_easy_init();
    if(curl)
    {
        headers = curl_slist_append(headers, "Content-type:application/soap+xml; charset=utf-8; action=\"http://tempuri.org/BankDeposit\"");    
        curl_easy_setopt(curl, CURLOPT_URL, URL);
        curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
        curl_easy_setopt(curl, CURLOPT_FILE, fp);
        curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data); //For writing the responses recieved 
        curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, buffer_size);
        curl_easy_setopt(curl, CURLOPT_POSTFIELDS, buffer);

        curl_easy_setopt(curl, CURLOPT_NOPROGRESS, FALSE);
        curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_func);    

        curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
        curl_easy_setopt(curl, CURLOPT_TIMEOUT, 60);
        res = curl_easy_perform(curl);  
        curl_slist_free_all(headers); 
        curl_easy_cleanup(curl);
        printf("CURL Easy Perform Status Code: %d\n", res);
    }
    fclose(fp);
    fclose(fpreq);
    return res;
}

问题是:“内容未发布到Web服务”。我调试了我的.NET服务,它没有收到发件人的任何数据。

我的Webservice操作是:BankDeposit。

接受一个名为的参数; TYPE:String

的xmlParam

请帮我解决这个问题。需要你的建议。

2 个答案:

答案 0 :(得分:1)

我可以在这里看到两个可能的问题:

  1. 你打开两个文件(使用fopen)。如果使用“w”打开文件,则会清除文件。
  2. 没有代码可以从“现在格式化”的文件中导入数据。
  3. 希望这有帮助

答案 1 :(得分:0)

使用CURLOPT_DEBUGFUNCTION获取libcurl发送和接收内容的完整跟踪。确保请求看起来完全符合您的要求。

您的请求可能会使libcurl使用“Expect:100-continue”,这是一个通常由服务器严重处理的标头,因此请尝试禁用它。