500 internal server error at GetResponse()

后端 未结 8 1890
花落未央
花落未央 2020-12-08 10:37

I have a heavy traffic aspx page calling a web service upon every user`s request as follows.

string uri = \"Path.asmx\";
string soap = \"soap xml string\";

         


        
8条回答
  •  独厮守ぢ
    2020-12-08 11:07

    Have you tried to specify UserAgent for your request? For example:

    request.UserAgent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
    

提交回复
热议问题