Return a URI for local resource from a webservice
- by peterkellyonline
I want to design a webservice that returns a URI to a local resource on the webserver.
What is the best (simplest) way to do this in C# using .asmx webservice?
Or in other words - how can I get the URI for a physical file path in a webservice?
Build a URI using the Uri class and the [WebService] namespace attribute?
I know there is
…