我一直在使用 Staff Webservices 库来实现 Web 服务,并在我当前的应用程序中取得了很大的成功。但是,我遇到了一个问题。
我在我的一项服务中将图像数据作为 byte64 编码的 std::string 返回。每当响应超过 2MB 左右时,我都会在客户端收到一个空白字符串作为响应。
请注意,我使用简单的 Axis2c HTTP 服务器来为我的所有员工服务提供服务。这会导致我达到极限吗?我可以在某处配置服务响应的最大大小吗?
我一直在使用 Staff Webservices 库来实现 Web 服务,并在我当前的应用程序中取得了很大的成功。但是,我遇到了一个问题。
我在我的一项服务中将图像数据作为 byte64 编码的 std::string 返回。每当响应超过 2MB 左右时,我都会在客户端收到一个空白字符串作为响应。
请注意,我使用简单的 Axis2c HTTP 服务器来为我的所有员工服务提供服务。这会导致我达到极限吗?我可以在某处配置服务响应的最大大小吗?
WSF 工作人员本身对响应大小没有任何限制。它在内部由 AxiOM(Axis2/C 对象模型)处理,这可能会引入限制。
使用axis2c-unofficial时,我无法重现它。
例如,这是我的测试服务:
class TestBase64: public staff::IService
{
public:
// *restEnable: true
// *restMethod: GET
// *restLocation: test
virtual staff::base64Binary test() = 0;
};
// impl:
staff::base64Binary TestBase64Impl::test()
{
staff::ByteArray a(4 * 1024 * 1024);
staff::byte* b = a.GetData();
for (int i = 0, l = a.GetSize(); i < l; ++i) {
b[i] = static_cast<staff::byte>(i);
}
return staff::Base64Binary(a);
}
和客户:
const staff::base64Binary& ttestResult = pTestBase64->test();
staff::LogInfo() << "test result: " << ttestResult.ToString().size();
建议:
如果没有任何帮助,您可以尝试将二进制数据保存为 Web 服务器上的临时文件,并使用该文件的 url 响应并在客户端上单独下载该文件;