fs2-http icon indicating copy to clipboard operation
fs2-http copied to clipboard

Http Server and client using fs2

Results 15 fs2-http issues
Sort by recently updated
recently updated
newest added

Can't seem to make the little client example from the README to work.

@marko-asplund and @jhnsmth I have taken pieces of your work and updated the fs2-http to the newest fs2, while dropping the dependency on fs2-crypto as we now have implmentaion in...

Awaiting for Spinoco/protocol#62 I tried it locally and all the tests passed

I'd need to use fs2-http with fs2 v2.0.0, but I'm getting the following runtime error: ``` Exception in thread "specs2.user-14" java.lang.NoSuchMethodError: fs2.io.tcp.package$.client$default$2()Z at spinoco.fs2.http.websocket.WebSocket$.$anonfun$client$1(WebSocket.scala:98) at spinoco.fs2.http.websocket.WebSocket$.$anonfun$client$1$adapted(WebSocket.scala:97) at fs2.Stream$.$anonfun$flatMap$1(Stream.scala:1091) at fs2.internal.FreeC$$anon$1.cont(FreeC.scala:31)...

I'll start a PR on this once #37 is merged and #38 is closed.

Implemented by #37

Hi, It looks, that WebSocket client is unable to handle SSL errors, when initial connection has been established. For example, when we connect to non-ssl host with wss:// protocol, client...

Hi, guys! I want add this feature to your project. That is my plan: 1. Add `multipart/form-data` codec to [headers package](https://github.com/Spinoco/protocol/tree/master/http/src/main/scala/spinoco/protocol/http/header) 2. Add `FormData` type and codec to [http protocol...