Passing a text file

VBAHole22

Contributor
Joined
Oct 21, 2003
Messages
432
Location
VA
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?
 
Back
Top