Questions tagged [spdy]

SPDY is an experimental protocol for multiplexing multiple, concurrent streams (typically HTTP request/response streams) over a single TCP connection.

SPDY is an experimental protocol for multiplexing multiple, concurrent streams (typically HTTP request/response streams) over a single TCP connection. SPDY is part of the HTTP 2.0 initiative led by the HTTPbis working group.

219 questions
7
votes
2 answers

Using SPDY with Netty

I've set up MOD_SPDY on my Apache server and now want to retrofit my client code to use Netty's SPDY implementation to send my requests to the server over a SPDY channel. This is my first experience using Netty, so I think I get that I need to…
Bill Brasky
  • 2,614
  • 2
  • 19
  • 20
6
votes
1 answer

How does QUIC multiplexing differ from that of HTTP/2

How does QUIC & HTTP/3 multiplexing (over UDP) differ from that brought by HTTP/2 (over TCP)?
tonino.j
  • 3,837
  • 28
  • 27
6
votes
1 answer

Chrome HTTP2.0 throws SPDY PROTOCOL ERROR

I'm using Windows 10 Technical preview. I know it's not yet tweeked out to full usage, but here is my problem. On local IIS I'm developing my web app. It loads most of the data via ASP.NET MVC API. After the upgrade to Windows 10 I started to get…
Andree
  • 1,159
  • 2
  • 17
  • 32
6
votes
2 answers

Understanding the value of the header HTTP2-Settings used for http/2 requests and upgrade

I'm writing a simple app to determine if certain websites support http/2. Based on what I've read in the draft: https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-http2-07#section-3.2 I should be able to do a get request such as GET /…
James Moore
  • 1,881
  • 14
  • 18
6
votes
1 answer

SPDY on web browser control

I am trying to enable SPDY on web browser control (Internet Explorer 11/WIN 8.1). In Internet Explorer advanced settings and in the registry the EnableSPDY3_0 is set to 1. But in my web browser control the SPDY is not working. Are there other…
6
votes
3 answers

Does SPDY/HTTP2 concatenates responses?

I have a question about SPDY/HTTP2: Normally you concatenate multiple CSS and JS files into one file to save requests and to get a better performance. I heard that SPDY/HTTP2 combines multiple requests into a single response. Would that mean that I…
Pipo
  • 5,623
  • 7
  • 36
  • 46
6
votes
1 answer

On what level can SPDY be used?

I'm curious how SPDY should be implemented when using an ASP.NET MVC application. As far as I know it is not the case by now, but should I wait for an updated MVC (5), new IIS-server, upgraded .net-framework, or something else?
Andries
  • 1,547
  • 10
  • 29
5
votes
0 answers

Using Nodejs 10 HTTP2 and express crashes

Installed Nodejs 10.4.0 on Windows 10 64bits. I want to switch the spdy module with the flashing new http2 provided by this Nodejs version. Here is the server (commented you find the previous spdy solution that works): "use strict"; const express =…
SiliconValley
  • 1,465
  • 17
  • 30
5
votes
1 answer

PUT request generates SPDY protocol errors only in Chrome or Opera?

I have an Angular 1.5 app that uses the Angular $resource provider to handle all calls to the API backend. I recently added a feature that has a drag and drop interface, and once an item is dropped into a particular bucket I perform a PUT request…
Mattygabe
  • 1,772
  • 4
  • 23
  • 44
5
votes
1 answer

How run bottle + tornado + ssl (https) + spdy

I'm using python framework bottle with webserver tornado. Here's my init.py: import bottle import os # Init application bottle.run(host="127.0.0.1", app=app, port=int(os.environ.get("PORT", 5000)), server='tornado') How to make connection via…
MikeLP
  • 198
  • 1
  • 1
  • 9
5
votes
1 answer

SPDY + Nginx - Advisable to use whenever possible?

So, we have nginx + spdy running for our SSL requests / responses. All works good. Unfortunately, spdy is SSL only at this point. Now, our service is fairly ajax heavy. We have the option of fairly quickly making the required changes so the requests…
anonymous-one
  • 14,454
  • 18
  • 60
  • 84
5
votes
3 answers

Open Source SPDY Proxy

Has anyone developed an open source SPDY proxy? I can't find one via Google, but I believe the Amazon Silk browser uses one?
Alex Chamberlain
  • 4,147
  • 2
  • 22
  • 49
4
votes
1 answer

Best option for http2 protocol for Express.js

Hi I'm building an app in Node, using the Express framework. I want to add http2 support and these are the options I've came across: Node.js HTTP/2 node-spdy My favorite is node-spdy, I've already implemented it and it works perfectly. But I'm…
Mihailo
  • 4,736
  • 4
  • 22
  • 30
4
votes
1 answer

throw new TypeError('The super constructor to "inherits" must not ' +

I am trying to build my nodejs application. but i am always getting this error. util.js:988 throw new TypeError('The super constructor to "inherits" must not ' + ^ TypeError: The super constructor to "inherits" must not be null or undefined at…
Harish Mahajan
  • 3,254
  • 4
  • 27
  • 49
4
votes
0 answers

Swagger UI can't load API docs over http/2

I'm trying to run Swashbuckle on an application hosted on Windows Server 2016 running HTTP/2 (aka SPDY). When I access the URL for the swagger api, I get ERR_SPDY_PROTOCOL_ERROR. I can access the UI page fine but it's empty because it can't retrieve…
michael.aird
  • 308
  • 3
  • 11
1 2
3
14 15