Obviously you're being asked to migrate a service currently offered through a proprietary application protocol served over TCP/IP.
As a member pointed already, you will never "move out of TCP" since the HTTP version is highly probable to use TCP/IP anyway. But we all understand what your boss/client is trying to say. What is requested is probably a web service as we know it today. And yes, using HTTP as a basis is the right way to do it.
Knowing that, you are now faced with two alternatives:
1) Present a function-oriented service
Here you list the commands that the service can handle and you implement them following a classical function(argument) => result style.
For this approach I recommend using the JSON-RPC model
2) Present a data-oriented service
Here you list the information that is moving in and out of your service and implement the operations occurring on these pieces of information, following the REST cycle data OPERATION response
For this approach I recommend using the REST style
How to choose ?
In a nutshell:
- If you have to serve few clients AND the set of commands is small and simple, go with RPC.
- If you must serve many clients OR the problem domain is complex, go with REST.
Whatever approach you go for, always prefer JSON over XML unless XML is mandated.