Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vspiewak/httptrace.x
Vert.x server dumping requests
https://github.com/vspiewak/httptrace.x
dumper http-server vertx
Last synced: 28 days ago
JSON representation
Vert.x server dumping requests
- Host: GitHub
- URL: https://github.com/vspiewak/httptrace.x
- Owner: vspiewak
- Created: 2014-03-04T19:17:44.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-04T23:17:02.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T20:04:59.648Z (9 months ago)
- Topics: dumper, http-server, vertx
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
HTTP Trace (Vert).x
===================Vert.x HTTP trace tool
vertx run server.coffee
# Sample-- Received PUT /api/persons?param1=value1 /0:0:0:0:0:0:0:1:59783 (57 bytes) --
Header | Accept: application/json
Header | Accept-Encoding: gzip,deflate,sdch
Header | Accept-Language: fr-FR,fr;q=0.8,en-US;q=0.6,en;q=0.4
Header | Authorization: Basic ************************
Header | Cache-Control: no-cache
Header | Connection: keep-alive
Header | Content-Length: 57
Header | Content-Type: text/plain;charset=UTF-8
Header | Cookie: SPRING_SECURITY_REMEMBER_ME_COOKIE=************************
Header | Host: localhost:7777
Header | Origin: chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm
Header | User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.146 Safari/537.36
Method | PUT
URI | /api/persons?param1=value1
Path | /api/persons
Query | param1=value1
Length | 57 bytes
Datas | "person": {
"firstname": "john",
"lastname": "doe"
}
-- End --