I am a newbie to VB.net and web services in general. I am working on designing a feature that ,
i.Accepts a document (Content-type : multipart/related) from outside.(Parameterized input to my code maybe ?)
ii.Does a call on a web service to submit that to a cloud server (eg. maybe amazon , maybe something else)
I want to know where to start with this, i want to create a small vb.net project first that accepts as input some (multipart/related form based document) and does a call(post) on a web service that sends out that data to the cloud. How are these multipart documents posted ?
Edit :
The web service API i am working on will have a WebMethod that will accept a file (xml/json) as input and create a multipart/related document and then post it to a web service. i did see posts here that work with creating multipart/form-data but am not sure if the way to create a multpart/related document will be the same because multipart/related documents work with compound documents.