Android Question How to upload large file using httputils2 ?

little3399

Active Member
Licensed User
Longtime User
How to upload large file using httputils2 ?

Is there has file size limit using httputils2 ?

Is there has a good way to solve this problem ? TKS!
 

DonManfred

Expert
Licensed User
Longtime User
What code do you have tried? Did you have an problems with it or any errormessages. You should tell us...
Otherwise i would suggest to USE the forumsearch on how to use PostFile. There are A LOT of examples you will find...

And you also should make sure the "serverside" CAN handle large uploads with a post-request...

For ex if the server is a normal webserver with php running and you want to post a file to it... PHP in this case may be limited to the size a post-request is allowed to have... Or the time running this php is limited.

Without seeing code and without knowing more informations about what exactly you have a problem with... It´s just guessing what we can do.
 
Upvote 0

Firpas

Active Member
Licensed User
Longtime User
Hello everyone:
I'm trying to send files from my application using HttpUtils2 and PostFile method to a web page in asp .NET

Apparently shipping performs well as the Succes jobdone value method is True

My problem is receiving the file on the server side as you Request.Files is always nothing

Anyone have any example of the server side in asp .NET (VB or C #)

Thanks in advance
 
Upvote 0
Top