1
我正在使用gsoap httppost插件來實現接受發佈請求的服務器。gsoap在404錯誤的情況下更改響應內容類型
在錯誤的情況下,我返回404錯誤,但內容類型總是text/xml
,但是我需要的內容類型爲text/html
下面是代碼片段
int wildcard_handler(struct soap* soap)
{
stringstream ss;
ss << "In wild card handler content_type" << soap->http_content;
LOGDEBUG(ss.str());
soap->http_content = "text/html";
soap_send_empty_response(soap, 404);
return SOAP_OK;
}
但在瀏覽器中我收到的文本/ xml &錯誤404.