Mam problem z zalogowaniem sie na Mbox poprzez delphi. Wykorzystuje do tego IdHttp,TIdSSLIOHandlerSocket i cookie manager oraz zewnetne biblioteki SSL znalezione na tym forum. Moglibysci zerknac na kod i powiedziec co tutaj wpisuje zle?? z gory serdecznie dziekuje. Oto procedura logowania:

procedure loguj;
     var
     add1,add2,add3,add4:string;
begin
//zmiene zaimportowane w glownych zmiennych programu
input:=tstringstream.Create('');
output:=tstringstream.Create('');

try
//input.WriteString('/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.login='+'511596903'+'&'+'/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.password='+'');
form1.idhttp1.Request.Accept:='text/html, */*';
form1.idhttp1.Request.ContentType:='application/x-www-form-urlencoded';
form1.idhttp1.Request.UserAgent:='Mozilla/3.0 (compatible; Indy Library)';
add1:='_dyncharset=UTF-8&/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.loginErrorURL=/portal/map/map/signin&';
add2:='/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.loginSuccessURL=http://www.orange.pl/portal/map/map/pim&/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.login=';
add3:='511596903'+'/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.password'+'maaasssaa';
add4:='&_DARGS=/gear/static/login.jsp';
input.WriteString(add1+add2+add3+add4);
//form1.IdHTTP1.Intercept
//form1.IdHTTP1.Port:=443;
form1.idhttp1.Post('https://www.orange.pl/portal/map/map/homep?_DARGS=/gear/static/login.jsp',input,output);
//form1.IdHTTP1.get('http://www.orange.pl/portal/map/map/pim?_requestid=56402',output);
if pos('Jesteś zalogowany jako',output.DataString)<>0 then form1.StatusBar1.Panels[0].Text:='Jestes zalogowany' else form1.StatusBar1.Panels[0].Text:='Nie jestes zalogowany'
finally
input.Free;
//wylaczone dla opcji debug
//output.Free;
end;

oraz procedura ze strony a raczej jej forma logowania:

<form  action="https://www.orange.pl/portal/map/map/homep?_DARGS=/gear/static/login.jsp" name="loginForm" method="post"><input value="UTF-8" type="hidden" name="_dyncharset">
<input value="/portal/map/map/signin" type="hidden" name="/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.loginErrorURL"><input value=" " type="hidden" name="_D:/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.loginErrorURL">
                      <input value="http://www.orange.pl/portal/map/map/pim" type="hidden" name="/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.loginSuccessURL"><input value=" " type="hidden" name="_D:/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.loginSuccessURL">
  <div class="item">
	<label for="login">login</label><input value="511596903" type="text" class="in" name="/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.login" id="login"><input value=" " type="hidden" name="_D:/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.login">
 </div>
<div class="item">
<label for="password">hasło</label><input value="" type="password" class="in" name="/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.password" id="password"><input value=" " type="hidden" name="_D:/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.value.password">
</div>
<div class="item">
<input type="image" onclick="return checkForm(this.form)" src="/binaries/o/button/zaloguj-strz.gif" alt="Zaloguj" name="/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.login" id="go"><input value=" " type="hidden" name="_D:/amg/ptk/map/core/formhandlers/AdvancedProfileFormHandler.login">
</div>								
<script language="javascript">
<!--
if (document.getElementById("login").value!="")
{document.getElementById("password").focus();}
else
{document.getElementById("login").focus();}
//-->
</script>							
<input value="/gear/static/login.jsp" type="hidden" name="_DARGS"></form>