TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Santhosh
NA
300
139.9k
System.Net.Sockets.SocketException: Connection timed out
Nov 18 2016 2:40 AM
hi,
I was trying to find a Current mobile location,It's working.
After that POST the data in my local server. when I post the data in the server it will display this error.
"System.Net.Sockets.SocketException: Connection timed out"
async void AddressButton_OnClick(object sender, EventArgs eventArgs)
{
if (currentLocation == null)
{
addressText.Text = "Can't determine the current address. Try again in a few minutes.";
return;
}
Address address = await ReverseGeocodeCurrentLocation();
DisplayAddress(address);
#region HttpResponce
try
{
var request = HttpWebRequest.Create(string.Format(@"http://192.168.1.88:53706/api/Getlocation", ""));
request.ContentType = "application/json";
request.Method = "POST";
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse) //Error display this line
{
if (response.StatusCode != HttpStatusCode.OK)
System.Console.Out.WriteLine("Error fetching data. Server returned status code: {0}", response.StatusCode);
using (StreamReader reader = new StreamReader(response.GetResponseStream()))
{
var content = reader.ReadToEnd();
if (string.IsNullOrWhiteSpace(content))
{
System.Console.Out.WriteLine("Response contained empty body...");
}
else
{
System.Console.Out.WriteLine("Response Body: \r\n {0}", addressText);
}
}
}
}
catch (System.Exception ex) when (ex is System.Net.Sockets.SocketException ||
ex is InvalidOperationException )
{
System.Console.Out.
WriteLine("task has been cancelled.");
System.Console.Out.WriteLine(ex.Message);
}
#endregion
}
how to solve T
imeout issue ...?
Reply
Answers (
1
)
Creating Web Service for PAN Number Verification
how to push data on angularjs table based on barcode id