Jump to content

dison

Members
  • Posts

    6
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by dison

  1. I resolve this editing the isstar.htm of my IIS 7 server, i just edit this file to redirect to my .dll

     

    <META HTTP-EQUIV="REFRESH" CONTENT="0;URL=http://http://dpsoftwares.no-ip...nagementWeb.dll">

     

    This work fine for me :D

  2. I have a function to calculate MD5 hash of a string that work fine in a win32 app but this same function fail on unigui return a empty string

     

    function TFLogin.MD5(const text: string): string;

    var

    md5 : TIdHashMessageDigest5;

    begin

    md5 := TIdHashMessageDigest5.Create;

    Result := LowerCase(md5.HashStringAsHex(text, TEncoding.ASCII));

    md5.Free;

    end;

    • Upvote 1
  3. Good Evening

     

    I just configured IIS 7 + ISAPI on my pc to run my unigui app, on my PC all work fine in this address http://localhost/mywebapps/RealtyManagementWeb.dll

     

    but now i want exposed my app outside to the internet, i used no.ip as DNS i have this domain configured http://dpsoftwares.no-ip.org

     

    i try this http://dpsoftwares.no-ip.org/mywebapps/RealtyManagementWeb.dll but dont work

     

    what other thing im missing, do i have forward port 80?

     

    Regard

    post-550-0-83327300-1353978018.jpg

×
×
  • Create New...