Right now, I have a pdf being created in my iphone app. I’m using http requests to send a bunch of data to my website and then save that info in a database. Is there a way to send this pdf to the website and save it to the include folder in the website’s file system? The website is built in .net and c#.
I know how to create a page on the website where people can upload a file and then save that to the file system but I don’t know how to get it from ios to the website. Thanks for any advice.
Edit: The other option would to be sending just an image to the website for the same purpose if that’s easier.
Edit: I guess I should specify that the app is being built in Objective-C.
So after some more searching around and going through different ideas, this is what I ended up doing. I found this great tutorial on uploading to a php page so I just added that to my website and save the image to the file system, then I can pull it from there with the c# code.
http://objective-c.wonderhowto.com/how-to/upload-image-website-from-apple-ios-application-333979/