From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!newsfeed.xs3.de!io.xs3.de!news.jacob-sparre.dk!franka.jacob-sparre.dk!pnx.dk!.POSTED.rrsoftware.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: HTTP with Simple Components: Status.Kind always File Date: Wed, 19 Jul 2017 14:31:59 -0500 Organization: JSA Research & Innovation Message-ID: References: <2017071720305687401-contact@flyx.org> <2017071918093536089-contact@flyx.org> Injection-Date: Wed, 19 Jul 2017 19:31:59 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="26844"; mail-complaints-to="news@jacob-sparre.dk" X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Response X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Xref: news.eternal-september.org comp.lang.ada:47454 Date: 2017-07-19T14:31:59-05:00 List-Id: "Dmitry A. Kazakov" wrote in message news:oko1kk$1pf7$1@gioia.aioe.org... > On 2017-07-19 18:09, Felix Krause wrote: ... >> For example: >> >> curl http://localhost:8088/ >> >> This still yields a File as Status.Kind. > > I must see what is sent from the client in order to tell if it is a bug or > correct behavior. A command line tells nothing. Right, because many programs read the schema to determine how to contact the server, then remove it (because it was used). Indeed, it's a bit unusual to pass the schema to be passed to a GET command (although it happens enough that my code in Ada Server is prepared to deal with it); for HTTP 1.1, the domain ("host") is passed separately so one typically only passes the URI path (and not the domain or schema). Randy.