Re: HTTP Request+Response issues

I think that this is right.  You ultimately have to reach the
conclusion that responses are in the same stream as the request, but
that should be express, not implied.

James, can you create an editorial issue in the github repo?  We (the
editors) will get to it when we can.

On 24 April 2013 09:58, James M Snell <jasnell@gmail.com> wrote:
> Reading through the current draft, unless I missed it, it needs to be
> clarified that HTTP request and responses MUST be sent within the same
> stream unless we specifically want to allow responses to be sent in a
> different stream than the request.
>
> For instance:
>
> Request:
>   Stream-ID: 1
>   :method: get
>
> Response:  (server uses the same stream)
>   Stream-ID: 1
>   :status: 200
>
> OR...
>
> Request:
>   Stream-ID: 1
>   :method: get
>
> Response: (server uses a different stream)
>   Stream-ID: 2
>   :status: 200
>
> Currently, it appears that this is an unspoken assumption in the spec
> text that needs to be called out explicitly. Or, if it's already
> there, it needs to be made more visible.
>
> - James
>

Received on Wednesday, 24 April 2013 18:03:01 UTC