使用Staff Webservice发送大型响应

时间:2015-02-25 11:10:23

标签: web-services axis2c staff-wsf

我一直在使用Staff Webservices库来实现webservices,并在我当前的应用程序中取得了很大的成功。但是,我遇到了一个问题。

我在我的一个服务中将图像数据作为byte64编码的std :: string返回。每当响应超过2MB左右时,我会在客户端获得一个空白字符串作为响应。

请注意,我使用简单的Axis2c HTTP服务器来提供我的所有员工服务。这会导致我达到极限吗?我可以在某处配置服务响应的最大大小吗?

1 个答案:

答案 0 :(得分:1)

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();

建议:

  • 使用网络捕获软件(Wireshark)来检测问题的哪一方,如果你看到来自服务器的完整数据包,则问题出在客户端;
  • 尝试axis2 / c unofficial;
  • 尝试提供的服务,然后在浏览器上打开网址:http://localhost:9090/axis2/services/TestBase64/test;
  • 尝试libxml2解析器而不是guththilla(作为最后的手段);

如果没有任何帮助,您可以尝试将二进制数据保存为Web服务器上的临时文件,并使用该文件的URL响应并单独在客户端上下载该文件;