Home Server

Feature request: WebModuleURI

edited October 2003 in Server
Whenever you set the WebModuleURI in code, it tacks on 'http://' if it's not
already included. This isn't too good when your URI starts with 'https://'!
I'd really prefer it if it didn't do this to 'https' URI's.

The workaround involves lots of calls to this function:
StringReplace( Result, 'http://https://', 'https://', [rfReplaceAll,
rfIgnoreCase] );

--
Nathan Sutcliffe
nsutcliffe at speedlinesolutions period com

Comments

  • edited October 2003

    Set WebTier.HTTPPrefix prior to setting WebModuleURI or WebCachePath. The
    value that you specify for HTTPPrefix will be prepended to by the property
    setter methods (unless the value is already present).

    Example:


    WebTier.HTTPPrefix := 'https://';
    WebTier.WebModuleURI := 'www.myCompany.com/rbWebPub/myReport.dll';
    WebTier.WebCachePath := 'www.myCompany.com/rbWebPub/Cache';




    --
    Nard Moseley
    Digital Metaphors
    http://www.digital-metaphors.com

    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
This discussion has been closed.