WP7 应用程序声称对我的 GAE 服务的请求产生 500,GAE 声称产生 200,从哪里开始?
我正在编写一个与我的 GAE 后端交互的 Windows Phone 7 应用程序。对于某个请求,WP7客户端声称返回了500错误。我在我的 GAE 日志中看到该请求一目了然,内容正确,时间,用户代理,一切都匹配并且没有任何类型的错误,根据日志,生成的 http 代码是 200。但 wp7 应用程序看到 500。
我不知道从哪里开始 - 我不明白 GAE 日志如何出错,但我也不明白 WP7 应用程序如何出错。我没有运行 fiddler 或类似的东西。
我不知道从哪里开始讲这个......
I am writing a Windows Phone 7 app that interfaces with my GAE backend. For a certain request, the WP7 client claims a 500 error is returned. I see that request in my GAE logs plain as day, correct contents, time, user agent, everything matches and no errors of any kind, the resulting http code is 200, according to the logs. But the wp7 app sees a 500.
I don't know where to start - I don't see how the GAE logs could be wrong, but I don't get how the WP7 app could be wrong either. I'm not running fiddler or anything of the sort.
I don't know where to start with this one...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题解决了,向WP7道歉,它没有错。发生的情况是我从 GAE 返回了一个不存在的 blobstore blob。 GAE 日志将其显示为 200,但回复大小为 0kb,这最终给了我提示。如果日志将其显示为实际返回的 500,那就太好了。
Problem solved, apologies to WP7, it was not at fault. What was happening was that I was returning a blobstore blob from GAE that did not exist. The GAE logs show this as a 200, but with a 0kb reply size, which is what eventually tipped me off. Would be nice if the logs showed this as the 500 that is in reality being returned.