Reputation: 11519
I want to upload from iphone to servlet registration data and pictures of user. Can I do that in one request or should I do two requests? Thanks a lot :)
Upvotes: 0
Views: 932
Reputation: 115328
Yes, you can do this in one request. It is called multipart form. This is actually what happens when you submit form from your web browser. To save time you can use FileUplodad from Jakarta.
Upvotes: 1