Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SOAP リクエストはインタラクティブではありません。さらに、通常、リクエスト全体が受信されるまでサーバーで処理することはできません。
したがって、SOAP に使用される HttpWebRequest では常に Nagle アルゴリズムを無効にする必要がありますか?
HttpWebRequest req = ...; req.ServicePoint.UseNagleAlgorithm = false;