SOAP Web Service method naming conventions
- by dbguy
Consider a Web Service (e.g. SOAP-based) that has an operation which accepts a bulk of data from the client. From the server's point of view it is receiving data, but from the client's point of view it's sending data. How should that operation be named? The options are
ImportData
ExportData / SendData
Is there a de facto standard for naming these things? How do web services usually name these?
Thank you for your opinions.