vote up 3 vote down star

For example in HTTP you send a request and receive a response; is there a noun that describes that request-response pair?

I'd thought of "dialog" or "conversation" however those imply multiple request-response pairs, whereas I'm looking for a word that indicates exactly one.

The reason for asking is that I need to name an object which encapsulates the details of both, and RequestResponse seems fairly lame.

flag

1  
Discombobulator? – Kev Jun 24 at 16:44
Isn't this a duplicate of this earlier question: stackoverflow.com/questions/325346/… – bbrown Jun 24 at 16:46
@bbrown - Hmm yes looks like it is. I didn't find that using either Google or the built-in search though :-( – Greg Beech Jun 24 at 16:54
No problem. It's just the first related article right over there... – bbrown Jun 24 at 17:25
@bbrown - Unfortunately that isn't shown until after you ask the question. It didn't appear in the "similar questions" list. – Greg Beech Jun 25 at 10:14

9 Answers

vote up 7 vote down check

How about "exchange"?

link|flag
According to this previous question (stackoverflow.com/questions/325346/…), that's what the spec uses. – bbrown Jun 24 at 16:54
vote up 6 vote down

RequestResponsePair sounds like it does exactly what it says. And that's invaluable, I find.

link|flag
I like this one the most. +1 – Yuval A Jun 24 at 16:50
vote up 3 vote down

I'd use Message or Transaction

link|flag
vote up 2 vote down

I would say HttpTransaction as it (somewhat) implies bidirectional activity.

link|flag
vote up 1 vote down

Fiddler calls it a Session.

link|flag
Session works pretty well, but it has the minor downside that some may assume that it has something to do with "session cookies" or related technologies. Transaction seems like a fine name, except that Transaction implies that HTTP traffic is somehow transactional (with rollback, etc) which it's not. – EricLaw -MSFT- Jun 24 at 17:01
i do't know what the OP's usage will be. But i use Fiddler quite a bit, and i've never had any problem with the term "session". In fact, it was so transparent (since it's just a term for that request-response pair) that had to load Fiddler to see what they called it, if anything. – Ian Boyd Jun 24 at 22:43
Hey, wait a minute....Eric Lawrence...Fiddler – Ian Boyd Jun 24 at 22:46
vote up 0 vote down

Interaction

link|flag
vote up 0 vote down

Transceival or ServiceCall might work.

link|flag
vote up 0 vote down

HttpRoundTrip - inspired by Jeff Atwood in this blog post

link|flag
vote up -1 vote down

what about RequestResponseContext?

link|flag
Every abstraction is a paradigm! – rp Jun 24 at 16:46
I read that sentence much differently. "Request/response" modifies "paradigm", they are not synonyms. – rkb Jun 24 at 16:47
Is it just me or didn't this answer get changed substantially from when it was first entered? – rp Jun 25 at 5:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.