actix-web
actix-web copied to clipboard
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
I was creating a test for a case where a client sends an invalid multipart request without a closing boundary: ```rs use actix_multipart::{ form::{tempfile::TempFile, FieldReader}, Multipart, }; use actix_web::{ dev::{self,...
I was trying to make an https server that would auto-generate ssl certificate with TLS-ALPN-01. There is a crate available that implements it: [rustls-acme](https://github.com/FlorianUekermann/rustls-acme), but it seems [impossible to use...
## Current Behavior When uploading an image or some other kind of file, but a custom extractor returns an error, the next request runs into a timeout. ## Expected Behavior...
As suggested in issue https://github.com/actix/actix-web/issues/340, I'm opening a new request. In the past years WASM started to gain popularity and now it is possible to easily build a WASM executable...
This behaviour was added for issue https://github.com/actix/actix-web/issues/1947 and in PR https://github.com/actix/actix-web/pull/2451 or https://github.com/actix/actix-web/pull/2090 but i believe the claims about it being mandatory in the original issue are a misconception. so...
## Expected Behavior Serving static HTML files via actix-files should allow viewing these files in a web browser. ## Current Behavior Serving static HTML files via actix-files works partially, but...
## Expected Behavior INSERT statements succeed insert confirmation even if the RDBMS uses replication and serves standalone SELECT queries from a secondary replica. ## Current Behavior Presumably a separate SELECT...
Per conversations on the discord, the most idiomatic way to spawn multiple services over multiple sockets is by following the current [actix-http example](https://github.com/actix/actix-web/blob/03456b8/actix-http/examples/actix-web.rs) using `actix_server::Server`. This is preferred over the...
## PR Type CI ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] ~Documentation comments have been added / updated.~ - [x] ~A...
## PR Type Refactor ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...