Understanding URL Syntax (and Arguments to Http.SynchronousRequest)

URL’s have this general format: <scheme>://<domain>:<port>/<path>?<query_string>#<fragment_id> The URL parts are summarized below.  Comments about how each part relates to the SynchronousRequest method are included.  The SynchronousRequest method has the following signature (C# syntax) HttpResponse SynchronousRequest(string domain, int port, bool ssl, HttpRequest req); The URL parts: scheme:  This can be “http” or “https”.   If “https”, then SSL/TLS is used and the […]