Wade Williams
unread,Feb 21, 2013, 9:56:38 AM2/21/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to typh...@googlegroups.com
I've got a simple question which should seem obvious, but my testing is causing doubts in my mind.
If I were to call (psuedo-code)
Typheous::Request.post(url1,options) #request1
Typheous::Request.post (url2,options) #request2
should I expect to receive response 1 before request 2 is made?
I've got a legacy application which is controlled by sending HTTP requests. However, you have to be sure the "save" command completes before the "edit" command for example. As long as request 1 will complete before request 2 is issued, there should be no problem. But, if request 1 returns immediately, I could have sequencing problems.
I understand the connectionless nature of HTTP, but in browsing through the source code, nothing jumped out at me as indicating that such calls would operate asynchronously so I thought it better to ask the experts.
Thanks for any feedback.