我用过
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
和
size_t write_data(void *ptr, size_t size, size_t count, void *stream)
{
printf("%*.*s", size * count, size * count, ptr);
}
获得以下输出,但我只需要获取正文内容
* About to connect() to 10.10.1.112 port 8081 (#0)
* Trying 10.10.1.112... * connected
* Connected to 10.10.1.112 (10.10.1.112) port 8081 (#0)
> POST /iit_mobile/services/application?wsdl HTTP/1.1
Host: 10.10.1.112:8081
Accept: */*
Content-type:application/soap+xml; charset=utf-8; action="http://wsdlclass.wsdlcreat.sims.test.com/userloginMethod"
Content-Length: 629
< HTTP/1.1 200 OK
< Server: Apache-Coyote/1.1
< Content-Type: application/soap+xml;charset=utf-8
< Transfer-Encoding: chunked
< Date: Tue, 11 Jun 2013 13:22:35 GMT
<
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 338 0 338 0 0 36 0 --:--:-- 0:00:09 --:--:-- 0* Connection #0 to host 10.10.1.112 left intact
* Closing connection #0
<?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><userloginMethodResponse xmlns="http://wsdlclass.wsdlcreat.sims.test.com"/></soapenv:Body></soapenv:Envelope>
代码:
curl = curl_easy_init();
if(curl)
{
out_fd = fopen (filename, "w");
curl_easy_setopt(curl, CURLOPT_FILE, out_fd);
headers = curl_slist_append(headers, "Content-type:application/soap+xml; charset=utf-8; action=\"http://wsdlclass.wsdlcreat.sims.test.com/login\"");
curl_easy_setopt(curl, CURLOPT_URL, tmpbuff);
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, buffer_size);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, buffer);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, Timeout);
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER,errmsg);
printf("The Server%s:Performing Transaction.....\n",__func__);
res = curl_easy_perform(curl);
printf("res=after culreasey perform%d\n",res);
curl_slist_free_all(headers);
curl_easy_cleanup(curl);
fclose(out_fd);
}
答案 0 :(得分:3)
默认情况下,不应使用正文数据写出标题。如果您在write_data
回调中收到标题,则可能意味着您已设置CURLOPT_HEADER
选项或CURLOPT_WRITEHEADER
选项。你可以尝试重置这两个是安全的:
curl_easy_setopt(curl, CURLOPT_HEADER, 0L);
curl_easy_setopt(curl, CURLOPT_WRITEHEADER, 0L);
如果您仍然想要检索标题,但只是不在write_data
回调中,则可以为您的标题数据设置单独的回调,如下所示:
curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, write_header);
其中write_header
是回调函数,与write_data
函数非常相似。
size_t write_header(void *ptr, size_t size, size_t count, void *stream)
{
printf("HEADER: %*.*s", size * count, size * count, ptr);
return count*size;
}
请注意,重要的是返回从这些回调函数中写入的字节数,否则curl会将其视为错误。
如果这仍然不适合你,我能想到的唯一其他解释是你的服务器在标题数据之前返回一个空行,看起来好像标题实际上是标题的一部分。
通过针对已知的有效网址(例如http://www.example.com/
)进行测试,您可以轻松查看是否属于这种情况。如果它在那里正常工作,那么你知道故障在你的服务器代码而不是客户端代码中。
看了你的完整代码后,你在输出中看到的所有额外内容都来自CURLOPT_VERBOSE
选项(你已经设置了两次)和CURLOPT_NOPROGRESS
选项。只需对这些内容进行评论,除了内容正文之外,您应该得到一个很好的干净回复。
我还应该提一下,除非您要在CURLOPT_FILE
回调中使用 stream 参数,否则设置write_data
没有意义。当您设置CURLOPT_WRITEFUNCTION
回调时,它会替换默认输出函数,因此除非您自己这样做,否则不会将任何内容写入CURLOPT_FILE
流。