0

アプリでWeb参照を使用していますが、次の例外が発生します。

以下のコードを使用しました。

obj私のWeb参照オブジェクトです。それは直接取らないのでobj、私はそのために変数を使用しました。しかし、それでも機能していません。自動的に前のアクティビティに移動します。

var url=obj.ToString();
            // Create a new WebRequest Object to the mentioned URL.
            WebRequest myWebRequest=WebRequest.Create(url);
            Console.WriteLine("\nThe Timeout time of the request before setting is : {0} milliseconds",myWebRequest.Timeout);

            // Set the 'Timeout' property in Milliseconds.
            myWebRequest.Timeout=10000;

            // This request will throw a WebException if it reaches the timeout limit before it is able to fetch the resource.
            WebResponse myWebResponse=myWebRequest.GetResponse();


未処理の例外:System.Net.WebException: System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)[0x00000] in:0 at System.Net.HttpWebRequest.GetResponse()[0x00000] in:0atSystemで要求がタイムアウトしました。 Web.Services.Protocols.WebClientProtocol.GetWebResponse(System.Net.WebRequest request)[0x00000] in:0

4

1 に答える 1