2

I'm using HttpWebRequest to post an image in server in windows phone application, what is the maximum image size which i can send in this way?? Will it lead to problems in some cases??

Aju
  • 796
  • 3
  • 10
  • 29
  • Here's the summary: http://stackoverflow.com/questions/5557663/is-there-a-limit-on-the-size-of-a-http-argument-value-in-a-httpwebrequest –  Nov 11 '13 at 11:24

1 Answers1

1

The POST size is limited by the Server. For IIS it s maxReceivedMessageSize="". The limitations in your app is more likely given by the current network, your youser is conected to. If you handle big images, you have to deal with deactivtion and reactivation of the app, during your post request. Windows Phone itself provides a best practice for background file transfer

if you are in the position to negotiate the server interface, this approach is highly recommended

flo scheiwiller
  • 2,706
  • 2
  • 17
  • 15