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.

214 questions
0
votes
1 answer

Enforcing HTTPS | Experience?

I was asking myself, wether it would be okay to enforce HTTPS over normal HTTP, by 301 redirecting every HTTP request to its HTTPS counterpart. Are there backwards compatibility issues (IE, I'm looking at you) or any other drawbacks? How do search…
buschtoens
  • 6,727
  • 8
  • 31
  • 56
0
votes
1 answer

How to make spydlay module to work like httplib/http.client?

I have to test server based on Jetty. This server can work with its own protocol, HTTP, HTTPS and lastly it started to support SPDY. I have some stress tests which are based on httplib /http.client -- each thread start with similar URL (some data in…
Michał Niklas
  • 48,759
  • 16
  • 62
  • 100
0
votes
1 answer

spdy3's name/value block can't be decompressed SOMETIMES with python

I was building a spdy proxy server for chrome. When proxy requests was sent from chrome, usually I would receive 3 frames: a SETTINGS frame ( parsed correctly) a SYN_STREAM frame of https' CONNECT request ( parsed correctly, too ) another…
Vergil Lu
  • 511
  • 4
  • 12
0
votes
1 answer

Error compress/decompress spdy name/value block with zlib+dictionary

I was trying to write a spdy proxy server, but have problems compress/decompress spdy name/value blocks. I was using python 3.3 zlib library to compress/decompress with dictionary. When receiving spdy frames from chrome 31, frames can be parsed most…
Vergil Lu
  • 511
  • 4
  • 12
0
votes
1 answer

Failed to connect using netty after add spdy codec on Android

I've written a server and a local proxy using netty. The project runs well on my pc, but when I change a bit to make it an android app, it just cannot work. I tried many times and find that after insert the following code, things go…
0
votes
0 answers

Solr and play with SPDY

I want to implement SPDY to my SOLR server. The solr server is mainly query by a SOLR app. I was wondering if it's a good idea, would it work? Because I think that only chrome and firefox can use spdy for the moment. So will my play app take…
user1418079
  • 145
  • 10
0
votes
0 answers

Cannot run express-spdy app using NodeJS

I'm not able to run NodeJS Express-Spdy examples downloaded from GitHub. I'm getting the below error: C:\Program Files\nodejs\node_modules\npm\node_modules\express-spdy>node app.js module.js:340 throw err; ^ Error: Cannot find module…
Akash Panchal
  • 205
  • 1
  • 6
  • 19
0
votes
1 answer

SPDY and lazy image loading via JavaScript

I'd like to load a bunch of images via JavaScript and insert them into my page. When the web server supports SPDY, does each image generate a new request or are all the image request bundled into one SPDY request? Are there some methods that do…
chiborg
  • 23,387
  • 11
  • 88
  • 105
0
votes
1 answer

What RPC protocols does AppEngine support for connecting to Compute Engine?

Now that Compute Engine is open to the public, what protocols besides HTTP can you use from AppEngine to connect to backend Compute Engine servers? Also, Ilya Grigorik has been advocating using SPDY for the backend, but last year he pointed out…
espeed
  • 4,704
  • 1
  • 33
  • 50
0
votes
2 answers

Talking to spdy server with netty client

I want talk to a spdy/2 server in android app with netty. When googled this question, only got the way to build a netty spdy server. Does someone have a example of a netty spdy client?
guanfei
  • 830
  • 6
  • 5
0
votes
1 answer

spdy faster than keep-alive https?

I've seen Is SPDY any different than http multiplexing over keep alive connections and Difference between HTTP pipeling and HTTP multiplexing with SPDY but also http://www.guypo.com/technical/not-as-spdy-as-you-thought/. I've even noticed that both…
user1382306
0
votes
2 answers

alternative for Jetty Npn with OpenJdk

Do you guys know of an alternative that works with Sun Jvm? We cannot use Open Jdk so I am look for an alternative NPN library that can work with Sun Jvm.
Rag
  • 1,053
  • 2
  • 16
  • 31
0
votes
2 answers

SPDY on WebLogic 11g

Is there a way of getting SPDY on the WebLogic 11g server? I actually cannot imaging it but I at least had to ask.
Sven Malvik
  • 725
  • 2
  • 8
  • 16
0
votes
1 answer

SPDY client and server in java using netty

Server import java.util.concurrent.atomic.AtomicReference; import org.jboss.netty.channel.Channel; import org.jboss.netty.channel.ChannelHandlerContext; import org.jboss.netty.channel.ChannelStateEvent; import…
0
votes
2 answers

SPDY in context of mobile networks

This is a slightly orthogonal impediment for SPDY. I have been searching for suitable articles or research conducted around this specific concern in vain. Important prerequisite for SPDY is persistent-connection. All major sites which have very…
user1511595
  • 77
  • 1
  • 6
1 2 3
14
15