测试 Web 服务时的持久或非持久连接

发布于 2024-11-07 16:12:59 字数 370 浏览 5 评论 0原文

我有一个网络服务。我正在创建一个测试应用程序以从该网络服务获取响应。添加了对 Web 服务应用程序的服务引用。

我的测试应用程序中的逻辑如下。

for(int i=0;i<100;i++)
{
    MyServiceSoapClient wsClient = new MyServiceSoapClient();
    wsClient.Endpoint.Address = new EndpointAddress(serverAddress);
    MyLoginResponse loginResp=wsClient.Login("X","X");
}

只是想知道我是在这种方法中建立持久连接还是非持久连接。有什么帮助吗?

I have a webservice. I am creating a test application to get response from this webservice. Added service reference to the web service application.

Logic in my test appplication is below.

for(int i=0;i<100;i++)
{
    MyServiceSoapClient wsClient = new MyServiceSoapClient();
    wsClient.Endpoint.Address = new EndpointAddress(serverAddress);
    MyLoginResponse loginResp=wsClient.Login("X","X");
}

Just wanted to know whether I am making a persistent connection or a non persistent connection in this approach. Any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难忘№最初的完美 2024-11-14 16:12:59

使用 curl 测试您的 Web 服务。传递curl -v(详细)标志。如果您在响应标头中看到 Connection: close,则您的 Web 服务支持持久连接。

Test your webservice using curl. Pass curl the -v (verbose) flag. If you see Connection: close in the response header, your web service does not support persistent connections.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文