Windows phone HttpClient PostAsync hang with no response
问题 I am having problem in calling the HttpClient post method from WP application.The PostAsync always hangs and does not give any response.The same code works when i try it from WPF application. Here is what I am doing: Server Web API code public class GameController : ApiController { [HttpPost] public GameDto CreateGame(GameDto gameDto) { try { GameManager bl = new GameManager(); gameDto = bl.CreateGame(gameDto); return gameDto; } catch (Exception) { throw; } } } Client WP8 code calling from