How can I build a VB.NET web service that accepts a text file of comma-delimited data. I want to parse this data out on the service and work with it. I know about using the streamreader to do this but what I am stuck on is how to pass the entire text file to the service because StreamReader is expecting a file path. I can't use a path because this is a service.
I think this can be done using XML and I am going to add that funcitonality next, but can it be done with a text file?
I think this can be done using XML and I am going to add that funcitonality next, but can it be done with a text file?