IOS上的Delphi XE4中的Idhttpserver错误

时间:2013-08-01 16:01:04

标签: ios delphi indy delphi-xe4

我正在使用Delphi Xe4(试用版)和Indy 10.5025重新编译。 我使用三个组件:

  1. Twebbrowser

  2. TIdHttpServer使用OnCommandGet收听8088:

    if (ARequestInfo.Document = '/map.htm') then
    begin
        str2 := ' '
            +'<!DOCTYPE html>'
            +' <html>'
            +' '
            +' <head>'
            +' </head>' 
            +' <body>'
            +' TEST PAGE 1'
            +' </body>'
            +' </html>'
            ;
    
        AResponseInfo.ContentText := str2;
    end;
    
  3. TButton

    OnClick:
        IdHTTPServer1.Active := True;
        WebBrowser1.Navigate('http://[mylocalhost]:8088/map.htm');
    
  4. 当我点击按钮时,在调试中我有消息:

      

    项目引发异常类EAccessViolation,并显示消息'地址00519D86访问冲突,访问地址0000000CC'。

    不在调试中只是不运行。

    如何找到并解决此问题?

    提前致谢

0 个答案:

没有答案