I'm upgrading from Delphi 2005 to Delphi 2010. I'm having this problem : the following procedure works well on D2005 but on D2010 I got always the result :

<HTML><HEAD><TITLE>401 Unauthorized</TITLE></HEAD>
<BODY><H1>401 Unauthorized</H1>
Your client does not have permission to get URL /axis-cgi/date.cgi from this server.
</BODY></HTML>

On the procedure, I try to connect twice because on D2005, sometimes I got an Unauthorized answer at my first try, and then I can connect at the second time with no problem. With D2010 I always get the Unauthorized answer.

The Url = 'http://user:pass@xxx.xxx.xxx.xxx/axis-cgi/date.cgi?action=get'

function TViewCameraForm.HttpGet(idHTTP : TidHTTP; Url : AnsiString): AnsiString;
Var
  Res : AnsiString;
Begin
  idHTTP1.Disconnect;
  try
    Res := idHTTP1.Get(Url);
    If Pos('Unauthorized', Res) > 0 Then
        Res := idHTTP1.Get(Url);
    Result := Res;
  except
    on E: EIdHTTPProtocolException do begin
        Result := E.ErrorMessage
    end;
    on E: Exception do begin
        Result := E.message;
    end;
  end;

End;    

Thanks Sam

link|improve this question
1  
I guess this is a Unicode-related issue. – TOndrej Jul 18 '11 at 12:45
2  
Is there any reason you're using AnsiString? – TOndrej Jul 18 '11 at 12:47
3  
Funny, scanning message for magic string instead of using status code. – Premature Optimization Jul 18 '11 at 12:53
feedback

1 Answer

up vote 6 down vote accepted

Did you try to authenticate using Basic Auth?

  ...
  idHTTP1.Request.BasicAuthentication := True;
  idHTTP1.Request.Username := 'user';
  idHTTP1.Request.Password := 'pass';
  Res := idHTTP1.Get(Url);

(using user:pass@website does not conform to the HTTP specification btw)

link|improve this answer
It worked. Thanks – Samuel Jul 18 '11 at 14:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.