What is a descriptive name for a web service that responds with plain text?
Posted
by
Rich Shealer
on Server Fault
See other posts from Server Fault
or by Rich Shealer
Published on 2011-02-10T22:10:05Z
Indexed on
2011/02/10
23:27 UTC
Read the original article
Hit count: 229
I'm looking for the proper name for a web service that responds with text as opposed to XML. As an example this "cardServer" service will return 5 cards for a poker hand.
http://hostname:8080/cardServer/deal/Game=Poker&Qty=5
The result could look like this:
Card1=Ad
Card2=Kc
Card3=Ts
Card4=5d
Card5=3d
The real world example is not as trivial, but the concept is the same. Parameters if any are passed as POST variables.
We currently parse the response into a string list and use the values. The process works just fine. What I'm wondering if this service method has a name that has easier tools to deal with the responses and therefore did we reinvent the wheel? For the record the service was provided and maintained by a customer.
© Server Fault or respective owner