views:

127

answers:

1

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.

+1  A: 

It's a service. It's there to serve. Name operations from the client's point of view.

John Saunders