trancexx Posted January 22, 2014 Author Share Posted January 22, 2014 (edited) Wouldn't your request miss post data that way? Maybe to do it like this:;... $sPostData = "targetUrl=%2Fcqweb%2Fmain%3Fcommand%3DGenerateMainFrame&ratl_userdb=A01%2CC01%2CD01%2CD02%2CF01%2CF02%2CG01%2CG02%2CGA01%2CGA02%2CH01%2CH02%2CI01%2CK01%2CK02%2CM01%2CN01%2CO01%2CU01%2CWEBUI%2CX01%2CZ02%2CZ03%2CZ04%2C&test=&clientServerAddress=https%3A%2F%2Fcqweb.server.address.com%2Fcqweb%2Flogin&username=user&password=password%21&schema=TN_MP3&userDb=D01" _WinHttpSendRequest($h_openRequest, Default, Default, StringLen($sPostData)) _WinHttpWriteData($h_openRequest, $sPostData) ;... Or even better:;... $sPostData = "targetUrl=%2Fcqweb%2Fmain%3Fcommand%3DGenerateMainFrame&ratl_userdb=A01%2CC01%2CD01%2CD02%2CF01%2CF02%2CG01%2CG02%2CGA01%2CGA02%2CH01%2CH02%2CI01%2CK01%2CK02%2CM01%2CN01%2CO01%2CU01%2CWEBUI%2CX01%2CZ02%2CZ03%2CZ04%2C&test=&clientServerAddress=https%3A%2F%2Fcqweb.server.address.com%2Fcqweb%2Flogin&username=user&password=password%21&schema=TN_MP3&userDb=D01" _WinHttpSendRequest($h_openRequest, Default, $sPostData) ;... You can also pass additional headers as second argument of _WinHttpSendRequest() instead of ten _WinHttpAddRequestHeaders() calls.edit:And remove 'Accept-Encoding: gzip, deflate' line unless you really want compressed data. Edited January 22, 2014 by trancexx ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
karlkar Posted January 23, 2014 Share Posted January 23, 2014 Still nothing :/ I've tried to shorten postData with curl to be as short as possible and finally managed to do something like this: expandcollapse popup#include "../udf/WinHttp.au3" $LocalIP = "cqweb.server.address.com" $hw_open = _WinHttpOpen() $hw_connect = _WinHttpConnect($hw_open, $LocalIP) $h_openRequest = _WinHttpOpenRequest($hw_connect, "POST", "cqweb/login") $headers = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' & @CRLF & _ 'Accept-Language: pl,en-us;q=0.7,en;q=0.3' & @CRLF & _ 'Connection: keep-alive' & @CRLF & _ 'Cookie: schemarepo=TN_MP3; userDb=D01; cqecytusid=Zjnh1Smbfl/MiWNLFGixNg==; JSESSIONID=0000F3DyGHdvfvfTMFHI_WA6q2I:-1' & @CRLF & _ 'Host: cqweb.server.address.com' & @CRLF & _ 'Referer: https://cqweb.server.address.com/cqweb/login' & @CRLF & _ 'User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0' & @CRLF & _ 'Content-Type: application/x-www-form-urlencoded' & @CRLF _WinHttpSendRequest($h_openRequest, $headers, "username=user&password=pass") _WinHttpReceiveResponse($h_openRequest) MsgBox(8192, "Headers", _WinHttpQueryHeaders($h_openRequest)) Local $response = _WinHttpReadData($h_openRequest) While @extended = 8192 $response &= _WinHttpReadData($h_openRequest) WEnd ConsoleWrite(@extended & @CRLF) MsgBox(8192, "resp", $response) _WinHttpCloseHandle($h_openRequest) _WinHttpCloseHandle($hw_connect) _WinHttpCloseHandle($hw_open) Headers of response: HTTP/1.1 200 OK Connection: Keep-Alive Date: Thu, 23 Jan 2014 09:28:48 GMT Keep-Alive: timeout=15, max=100 Content-Length: 15574 Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Set-Cookie: JSESSIONID=0000QEBn_rKDGIijUiOSyU-ugjo:-1; Path=/ Set-Cookie: cqweb_session=""; Expires=Thu, 01 Dec 1994 16:00:00 GMT; Path=/cqweb/ One thing that could matter - I get redirected from http://cqweb.server.address.com to https://cqweb.server.address.com, however using _WinHttpConnect($hw_open, $LocalIP, $INTERNET_DEFAULT_HTTPS_PORT) results in empty response from server (no headers, no data). Link to comment Share on other sites More sharing options...
trancexx Posted January 23, 2014 Author Share Posted January 23, 2014 Can't you simply do this: $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = _WinHttpConnect($hOpen, "https://cqweb.server.address.com") $sRead = _WinHttpSimpleFormFill($hConnect, "/cqweb/login", _ "index:0", _ ; first form on the page (is it?) "name:username", "user", _ "name:password", "pass") ConsoleWrite("!Error = " & @error & @CRLF) ConsoleWrite($sRead & @CRLF) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) You should really just try to explain what you want to do. What, first you login and then navigate to some other page? Is that it? I can help you with that, but you need to be more concrete. ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
karlkar Posted January 24, 2014 Share Posted January 24, 2014 (edited) Yes, it is the first (and the only) form on the page. Here's its code: expandcollapse popup<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Rational</title> <script type="text/javascript" src="/cqweb/view/browser/common/common.js" language="JavaScript"></script><link rel="stylesheet" type="text/css" href="/cqweb/view/browser/common/common_adv.css"><script type="text/javascript" src="/cqweb/view/browser/common/cqweb_xsl_strings_en.js" language="JavaScript"></script><script type="text/javascript" src="/cqweb/view/browser/common/javascript_utilities.js" language="JavaScript"></script><script type="text/javascript" src="/cqweb/view/browser/common/utility.js" language="JavaScript"></script><script src="/cqweb/view/browser/common/sniffer.js" type="text/javascript" language="JavaScript"></script><script type="text/javascript" language="JavaScript"> var schemaReposArr = new Array(); var dbArr = new Array(); var dbDescArr = new Array(); var testMode = ""; schemaReposArr[schemaReposArr.length]="TN_STANDARD"; dbArr["TN_STANDARD"] = new Array(); dbDescArr["TN_STANDARD"] = new Array(); dbArr["TN_STANDARD"][0] = "A01"; dbDescArr["TN_STANDARD"][0] = "Windows Mobile"; dbArr["TN_STANDARD"][1] = "C01"; dbDescArr["TN_STANDARD"][1] = "Overseas R&D Centre"; dbArr["TN_STANDARD"][2] = "D01"; dbDescArr["TN_STANDARD"][2] = "RnD_Europe"; dbArr["TN_STANDARD"][3] = "D02"; dbDescArr["TN_STANDARD"][3] = "G.GSM_Team"; dbArr["TN_STANDARD"][4] = "F01"; dbDescArr["TN_STANDARD"][4] = "RnD_China"; dbArr["TN_STANDARD"][5] = "F02"; dbDescArr["TN_STANDARD"][5] = "China_Team"; dbArr["TN_STANDARD"][6] = "G01"; dbDescArr["TN_STANDARD"][6] = "RnD_NAmerica"; dbArr["TN_STANDARD"][7] = "G02"; dbDescArr["TN_STANDARD"][7] = "Namerica_Team"; dbArr["TN_STANDARD"][8] = "GA01"; dbDescArr["TN_STANDARD"][8] = "RnD_Android"; dbArr["TN_STANDARD"][9] = "GA02"; dbDescArr["TN_STANDARD"][9] = "Andvanced_Team"; dbArr["TN_STANDARD"][10] = "H01"; dbDescArr["TN_STANDARD"][10] = "RnD_SLP"; dbArr["TN_STANDARD"][11] = "H02"; dbDescArr["TN_STANDARD"][11] = "SLP_Team"; dbArr["TN_STANDARD"][12] = "I01"; dbDescArr["TN_STANDARD"][12] = "RnD_Android_3G"; dbArr["TN_STANDARD"][13] = "K01"; dbDescArr["TN_STANDARD"][13] = "RnD_Korea"; dbArr["TN_STANDARD"][14] = "K02"; dbDescArr["TN_STANDARD"][14] = "Korea_Team"; dbArr["TN_STANDARD"][15] = "M01"; dbDescArr["TN_STANDARD"][15] = "Advanced Project DB"; dbArr["TN_STANDARD"][16] = "N01"; dbDescArr["TN_STANDARD"][16] = "Misc."; dbArr["TN_STANDARD"][17] = "O01"; dbDescArr["TN_STANDARD"][17] = "RnD_Latin_America"; dbArr["TN_STANDARD"][18] = "U01"; dbDescArr["TN_STANDARD"][18] = "RnD_Japan"; dbArr["TN_STANDARD"][19] = "WEBUI"; dbDescArr["TN_STANDARD"][19] = "PC DEV."; dbArr["TN_STANDARD"][20] = "X01"; dbDescArr["TN_STANDARD"][20] = "S/W Solution"; dbArr["TN_STANDARD"][21] = "Z02"; dbDescArr["TN_STANDARD"][21] = "Training DB"; dbArr["TN_STANDARD"][22] = "Z03"; dbDescArr["TN_STANDARD"][22] = "STAP"; dbArr["TN_STANDARD"][23] = "Z04"; dbDescArr["TN_STANDARD"][23] = "SE Group(Weekly Repo..."; var userNameVal = ""; var deptedUserName = ""; var schemaRepoVal = ""; var userDbVal = ""; var enableCookies = "true"; var ssoEnable = "false"; var ssoUserId = ""; var ssoLoginLocked = "false"; function setDbList(schemaRepoId) { var j = 1; document.formLogin.userDb.options.length = 0; document.formLogin.userDb.options[0] = new Option("Select a database"); for (i=1; i<=dbArr[schemaRepoId].length; i++) { document.formLogin.userDb.options[i] = new Option(dbArr[schemaRepoId][i-1]+ ' : ' +dbDescArr[schemaRepoId][i-1], dbArr[schemaRepoId][i-1]); } if (userDbVal.length == 0) { userDbVal = getCookie("userDb"); } if (userDbVal.length > 0) { var matchIndex = -1; for (var i=0; i < document.formLogin.userDb.options.length && matchIndex == -1; i++) { var optionVal = document.formLogin.userDb.options[i].value; if (userDbVal == optionVal) matchIndex = i; } if (matchIndex > -1) document.formLogin.userDb.selectedIndex = matchIndex; } else { document.formLogin.userDb.selectedIndex = 0; } } function onLoadForm() { if (!validBrowser()) { window.location.href='/cqweb/dct/html/wrongBrowser_en.html'; } if (ssoEnable == 'true') { if (ssoUserId != ''){ userNameVal = ssoUserId; document.formLogin.username.value = userNameVal; document.formLogin.password.value = ''; document.formLogin.schema.focus(); disableLoginCredentials(); enableLoginSelections(); enableLoginButton(); } if (ssoLoginLocked == 'true'){ disableLoginPage(); } } else { document.formLogin.username.focus(); enableLoginPage(); } if(enableCookies == 'true') { document.formLogin.username.value = deptedUserName; } if (schemaRepoVal.length == 0) schemaRepoVal = getCookie("schemarepo"); if (schemaRepoVal.length > 0) { var matchIndex = -1; var decodeSchema = decodeURIComponent(decodeURIComponent(schemaRepoVal)); for (var i=0; i < document.formLogin.schema.options.length && matchIndex == -1; i++) { var optionVal = document.formLogin.schema.options[i].text; if (decodeSchema == optionVal) matchIndex = i; } if (matchIndex > -1) document.formLogin.schema.selectedIndex = matchIndex; } if (testMode != '1') { setDbList(document.formLogin.schema.options[document.formLogin.schema.selectedIndex].text); } } function setCookie(Name, Value) { if (enableCookies != 'true') { return; } var nextYear = new Date(); nextYear.setFullYear(nextYear.getFullYear() + 1); var expiration = nextYear.toGMTString(); document.cookie = Name + "=" + encodeURIComponent(Value) + ";expires=" + expiration; } function getCookie(Name) { var value = ""; if (enableCookies != 'true') { return value; } if (navigator.cookieEnabled) { var search = Name + "=" if (document.cookie.length > 0) { offset = document.cookie.indexOf(search); if (offset != -1) { offset += search.length; end = document.cookie.indexOf(";", offset); if (end == -1) end = document.cookie.length; value = decodeURIComponent(document.cookie.substring(offset, end)) } } } return value; } function submitForm() { if ( document.getElementById("clientServerAddress") != null) document.getElementById("clientServerAddress").value = top.location.href; if (document.formLogin.schema.options.length <= 0) { alert(no_schemaResp_available); return false; } if (testMode != '1' && document.formLogin.userDb.selectedIndex <= 0) { alert(select_a_DB_Str); return false; } else if (testMode == '1' && document.formLogin.userDb.value.trim().length <=0) { alert(enter_a_DB_Str); return false; } var schemaRepoId = document.formLogin.schema.options[document.formLogin.schema.selectedIndex].text var userDbs = ""; for (var i = 0; i < dbArr[schemaRepoId].length; i++) { userDbs += (dbArr[schemaRepoId][i] + ","); } document.formLogin.ratl_userdb.value = userDbs; var trimmedUserName = document.formLogin.username.value.trim(); document.formLogin.username.value = trimmedUserName; setCookie("schemarepo", document.formLogin.schema.options[document.formLogin.schema.selectedIndex].text); if (testMode == '1') { setCookie("userDb", document.formLogin.userDb.value); } else { setCookie("userDb", document.formLogin.userDb.options[document.formLogin.userDb.selectedIndex].value); } checkURLParametersFormat(document); disableLoginButton(); return document.formLogin.submit(); } function disableLoginPage() { disableLoginCredentials(); disableLoginSelections(); disableLoginButton(); } function disableLoginSelections() { document.formLogin.schema.className = 'disabledControl'; document.formLogin.userDb.className = 'disabledControl'; document.formLogin.schema.disabled = 'disabled'; document.formLogin.userDb.disabled = 'disabled'; } function disableLoginCredentials() { document.formLogin.username.className = 'disabledControl'; document.formLogin.password.className = 'disabledControl'; document.formLogin.username.disabled = 'disabled'; document.formLogin.password.disabled = 'disabled'; } function disableLoginButton() { var loginButtonElem = document.getElementById("loginButtonInput"); loginButtonElem.className = 'disabledControl'; loginButtonElem.disabled = 'disabled'; } function enableLoginPage() { enableLoginCredentials(); enableLoginSelections(); enableLoginButton(); } function enableLoginCredentials() { document.formLogin.username.className = ''; document.formLogin.password.className = ''; document.formLogin.username.disabled = false; document.formLogin.password.disabled = false; } function enableLoginSelections() { document.formLogin.schema.className = ''; document.formLogin.userDb.className = ''; document.formLogin.schema.disabled = false; document.formLogin.userDb.disabled = false; } function enableLoginButton() { var loginButtonElem = document.getElementById("loginButtonInput"); loginButtonElem.className = 'tabactive1'; loginButtonElem.disabled = false; } NS4 = (document.layers) ? true : false; function checkEnter(event) { if (document.getElementById("loginButton").style.display == 'none') return; var code = 0; if (NS4) { code = event.which; } else { code = event.keyCode; } if (code == 13) { submitForm() } } </script> <style type="text/css" charset="utf-8">/* See license.txt for terms of usage */ /** reset styling **/ .firebugResetStyles { z-index: 2147483646 !important; top: 0 !important; left: 0 !important; display: block !important; border: 0 none !important; margin: 0 !important; padding: 0 !important; outline: 0 !important; min-width: 0 !important; max-width: none !important; min-height: 0 !important; max-height: none !important; position: fixed !important; transform: rotate(0deg) !important; transform-origin: 50% 50% !important; border-radius: 0 !important; box-shadow: none !important; background: transparent none !important; pointer-events: none !important; white-space: normal !important; } .firebugBlockBackgroundColor { background-color: transparent !important; } .firebugResetStyles:before, .firebugResetStyles:after { content: "" !important; } /**actual styling to be modified by firebug theme**/ .firebugCanvas { display: none !important; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ .firebugLayoutBox { width: auto !important; position: static !important; } .firebugLayoutBoxOffset { opacity: 0.8 !important; position: fixed !important; } .firebugLayoutLine { opacity: 0.4 !important; background-color: #000000 !important; } .firebugLayoutLineLeft, .firebugLayoutLineRight { width: 1px !important; height: 100% !important; } .firebugLayoutLineTop, .firebugLayoutLineBottom { width: 100% !important; height: 1px !important; } .firebugLayoutLineTop { margin-top: -1px !important; border-top: 1px solid #999999 !important; } .firebugLayoutLineRight { border-right: 1px solid #999999 !important; } .firebugLayoutLineBottom { border-bottom: 1px solid #999999 !important; } .firebugLayoutLineLeft { ; border-left: 1px solid #999999 !important; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ .firebugLayoutBoxParent { border-top: 0 none !important; border-right: 1px dashed #E00 !important; border-bottom: 1px dashed #E00 !important; border-left: 0 none !important; position: fixed !important; width: auto !important; } .firebugRuler{ position: absolute !important; } .firebugRulerH { top: -15px !important; left: 0 !important; width: 100% !important; height: 14px !important; background: url("data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%13%88%00%00%00%0E%08%02%00%00%00L%25a%0A%00%00%00%04gAMA%00%00%D6%D8%D4OX2%00%00%00%19tEXtSoftware%00Adobe%20ImageReadyq%C9e%3C%00%00%04%F8IDATx%DA%EC%DD%D1n%E2%3A%00E%D1%80%F8%FF%EF%E2%AF2%95%D0D4%0E%C1%14%B0%8Fa-%E9%3E%CC%9C%87n%B9%81%A6W0%1C%A6i%9A%E7y%0As8%1CT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AATE9%FE%FCw%3E%9F%AF%2B%2F%BA%97%FDT%1D~K(%5C%9D%D5%EA%1B%5C%86%B5%A9%BDU%B5y%80%ED%AB*%03%FAV9%AB%E1%CEj%E7%82%EF%FB%18%BC%AEJ8%AB%FA'%D2%BEU9%D7U%ECc0%E1%A2r%5DynwVi%CFW%7F%BB%17%7Dy%EACU%CD%0E%F0%FA%3BX%FEbV%FEM%9B%2B%AD%BE%AA%E5%95v%AB%AA%E3E5%DCu%15rV9%07%B5%7F%B5w%FCm%BA%BE%AA%FBY%3D%14%F0%EE%C7%60%0EU%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5JU%88%D3%F5%1F%AE%DF%3B%1B%F2%3E%DAUCNa%F92%D02%AC%7Dm%F9%3A%D4%F2%8B6%AE*%BF%5C%C2Ym~9g5%D0Y%95%17%7C%C8c%B0%7C%18%26%9CU%CD%13i%F7%AA%90%B3Z%7D%95%B4%C7%60%E6E%B5%BC%05%B4%FBY%95U%9E%DB%FD%1C%FC%E0%9F%83%7F%BE%17%7DkjMU%E3%03%AC%7CWj%DF%83%9An%BCG%AE%F1%95%96yQ%0Dq%5Dy%00%3Et%B5'%FC6%5DS%95pV%95%01%81%FF'%07%00%00%00%00%00%00%00%00%00%F8x%C7%F0%BE%9COp%5D%C9%7C%AD%E7%E6%EBV%FB%1E%E0(%07%E5%AC%C6%3A%ABi%9C%8F%C6%0E9%AB%C0'%D2%8E%9F%F99%D0E%B5%99%14%F5%0D%CD%7F%24%C6%DEH%B8%E9rV%DFs%DB%D0%F7%00k%FE%1D%84%84%83J%B8%E3%BA%FB%EF%20%84%1C%D7%AD%B0%8E%D7U%C8Y%05%1E%D4t%EF%AD%95Q%BF8w%BF%E9%0A%BF%EB%03%00%00%00%00%00%00%00%00%00%B8vJ%8E%BB%F5%B1u%8Cx%80%E1o%5E%CA9%AB%CB%CB%8E%03%DF%1D%B7T%25%9C%D5(%EFJM8%AB%CC'%D2%B2*%A4s%E7c6%FB%3E%FA%A2%1E%80~%0E%3E%DA%10x%5D%95Uig%15u%15%ED%7C%14%B6%87%A1%3B%FCo8%A8%D8o%D3%ADO%01%EDx%83%1A~%1B%9FpP%A3%DC%C6'%9C%95gK%00%00%00%00%00%00%00%00%00%20%D9%C9%11%D0%C0%40%AF%3F%EE%EE%92%94%D6%16X%B5%BCMH%15%2F%BF%D4%A7%C87%F1%8E%F2%81%AE%AAvzr%DA2%ABV%17%7C%E63%83%E7I%DC%C6%0Bs%1B%EF6%1E%00%00%00%00%00%00%00%00%00%80cr%9CW%FF%7F%C6%01%0E%F1%CE%A5%84%B3%CA%BC%E0%CB%AA%84%CE%F9%BF)%EC%13%08WU%AE%AB%B1%AE%2BO%EC%8E%CBYe%FE%8CN%ABr%5Dy%60~%CFA%0D%F4%AE%D4%BE%C75%CA%EDVB%EA(%B7%F1%09g%E5%D9%12%00%00%00%00%00%00%00%00%00H%F6%EB%13S%E7y%5E%5E%FB%98%F0%22%D1%B2'%A7%F0%92%B1%BC%24z3%AC%7Dm%60%D5%92%B4%7CEUO%5E%F0%AA*%3BU%B9%AE%3E%A0j%94%07%A0%C7%A0%AB%FD%B5%3F%A0%F7%03T%3Dy%D7%F7%D6%D4%C0%AAU%D2%E6%DFt%3F%A8%CC%AA%F2%86%B9%D7%F5%1F%18%E6%01%F8%CC%D5%9E%F0%F3z%88%AA%90%EF%20%00%00%00%00%00%00%00%00%00%C0%A6%D3%EA%CFi%AFb%2C%7BB%0A%2B%C3%1A%D7%06V%D5%07%A8r%5D%3D%D9%A6%CAu%F5%25%CF%A2%99%97zNX%60%95%AB%5DUZ%D5%FBR%03%AB%1C%D4k%9F%3F%BB%5C%FF%81a%AE%AB'%7F%F3%EA%FE%F3z%94%AA%D8%DF%5B%01%00%00%00%00%00%00%00%00%00%8E%FB%F3%F2%B1%1B%8DWU%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*UiU%C7%BBe%E7%F3%B9%CB%AAJ%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5J%95*U%AAT%A9R%A5*%AAj%FD%C6%D4%5Eo%90%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5%86%AF%1B%9F%98%DA%EBm%BBV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%ADV%AB%D5j%B5Z%AD%D6%E4%F58%01%00%00%00%00%00%00%00%00%00%00%00%00%00%40%85%7F%02%0C%008%C2%D0H%16j%8FX%00%00%00%00IEND%AEB%60%82") repeat-x !important; border-top: 1px solid #BBBBBB !important; border-right: 1px dashed #BBBBBB !important; border-bottom: 1px solid #000000 !important; } .firebugRulerV { top: 0 !important; left: -15px !important; width: 14px !important; height: 100% !important; background: url("data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%00%0E%00%00%13%88%08%02%00%00%00%0E%F5%CB%10%00%00%00%04gAMA%00%00%D6%D8%D4OX2%00%00%00%19tEXtSoftware%00Adobe%20ImageReadyq%C9e%3C%00%00%06~IDATx%DA%EC%DD%D1v%A20%14%40Qt%F1%FF%FF%E4%97%D9%07%3BT%19%92%DC%40(%90%EEy%9A5%CB%B6%E8%F6%9Ac%A4%CC0%84%FF%DC%9E%CF%E7%E3%F1%88%DE4%F8%5D%C7%9F%2F%BA%DD%5E%7FI%7D%F18%DDn%BA%C5%FB%DF%97%BFk%F2%10%FF%FD%B4%F2M%A7%FB%FD%FD%B3%22%07p%8F%3F%AE%E3%F4S%8A%8F%40%EEq%9D%BE8D%F0%0EY%A1Uq%B7%EA%1F%81%88V%E8X%3F%B4%CEy%B7h%D1%A2E%EBohU%FC%D9%AF2fO%8BBeD%BE%F7X%0C%97%A4%D6b7%2Ck%A5%12%E3%9B%60v%B7r%C7%1AI%8C%BD%2B%23r%00c0%B2v%9B%AD%CA%26%0C%1Ek%05A%FD%93%D0%2B%A1u%8B%16-%95q%5Ce%DCSO%8E%E4M%23%8B%F7%C2%FE%40%BB%BD%8C%FC%8A%B5V%EBu%40%F9%3B%A72%FA%AE%8C%D4%01%CC%B5%DA%13%9CB%AB%E2I%18%24%B0n%A9%0CZ*Ce%9C%A22%8E%D8NJ%1E%EB%FF%8F%AE%CAP%19*%C3%BAEKe%AC%D1%AAX%8C*%DEH%8F%C5W%A1e%AD%D4%B7%5C%5B%19%C5%DB%0D%EF%9F%19%1D%7B%5E%86%BD%0C%95%A12%AC%5B*%83%96%CAP%19%F62T%86%CAP%19*%83%96%CA%B8Xe%BC%FE)T%19%A1%17xg%7F%DA%CBP%19*%C3%BA%A52T%86%CAP%19%F62T%86%CA%B0n%A9%0CZ%1DV%C6%3D%F3%FCH%DE%B4%B8~%7F%5CZc%F1%D6%1F%AF%84%F9%0F6%E6%EBVt9%0E~%BEr%AF%23%B0%97%A12T%86%CAP%19%B4T%86%CA%B8Re%D8%CBP%19*%C3%BA%A52huX%19%AE%CA%E5%BC%0C%7B%19*CeX%B7h%A9%0C%95%E1%BC%0C%7B%19*CeX%B7T%06%AD%CB%5E%95%2B%BF.%8F%C5%97%D5%E4%7B%EE%82%D6%FB%CF-%9C%FD%B9%CF%3By%7B%19%F62T%86%CA%B0n%D1R%19*%A3%D3%CA%B0%97%A12T%86uKe%D0%EA%B02*%3F1%99%5DB%2B%A4%B5%F8%3A%7C%BA%2B%8Co%7D%5C%EDe%A8%0C%95a%DDR%19%B4T%C66%82fA%B2%ED%DA%9FC%FC%17GZ%06%C9%E1%B3%E5%2C%1A%9FoiB%EB%96%CA%A0%D5qe4%7B%7D%FD%85%F7%5B%ED_%E0s%07%F0k%951%ECr%0D%B5C%D7-g%D1%A8%0C%EB%96%CA%A0%A52T%C6)*%C3%5E%86%CAP%19%D6-%95A%EB*%95q%F8%BB%E3%F9%AB%F6%E21%ACZ%B7%22%B7%9B%3F%02%85%CB%A2%5B%B7%BA%5E%B7%9C%97%E1%BC%0C%EB%16-%95%A12z%AC%0C%BFc%A22T%86uKe%D0%EA%B02V%DD%AD%8A%2B%8CWhe%5E%AF%CF%F5%3B%26%CE%CBh%5C%19%CE%CB%B0%F3%A4%095%A1%CAP%19*Ce%A8%0C%3BO*Ce%A8%0C%95%A12%3A%AD%8C%0A%82%7B%F0v%1F%2FD%A9%5B%9F%EE%EA%26%AF%03%CA%DF9%7B%19*Ce%A8%0C%95%A12T%86%CA%B8Ze%D8%CBP%19*Ce%A8%0C%95%D1ae%EC%F7%89I%E1%B4%D7M%D7P%8BjU%5C%BB%3E%F2%20%D8%CBP%19*Ce%A8%0C%95%A12T%C6%D5*%C3%5E%86%CAP%19*Ce%B4O%07%7B%F0W%7Bw%1C%7C%1A%8C%B3%3B%D1%EE%AA%5C%D6-%EBV%83%80%5E%D0%CA%10%5CU%2BD%E07YU%86%CAP%19*%E3%9A%95%91%D9%A0%C8%AD%5B%EDv%9E%82%FFKOee%E4%8FUe%A8%0C%95%A12T%C6%1F%A9%8C%C8%3D%5B%A5%15%FD%14%22r%E7B%9F%17l%F8%BF%ED%EAf%2B%7F%CF%ECe%D8%CBP%19*Ce%A8%0C%95%E1%93~%7B%19%F62T%86%CAP%19*Ce%A8%0C%E7%13%DA%CBP%19*Ce%A8%0CZf%8B%16-Z%B4h%D1R%19f%8B%16-Z%B4h%D1R%19%B4%CC%16-Z%B4h%D1R%19%B4%CC%16-Z%B4h%D1%A2%A52%CC%16-Z%B4h%D1%A2%A52h%99-Z%B4h%D1%A2%A52h%99-Z%B4h%D1%A2EKe%98-Z%B4h%D1%A2EKe%D02%5B%B4h%D1%A2EKe%D02%5B%B4h%D1%A2E%8B%96%CA0%5B%B4h%D1%A2E%8B%96%CA%A0e%B6h%D1%A2E%8B%96%CA%A0e%B6h%D1%A2E%8B%16-%95a%B6h%D1%A2E%8B%16-%95A%CBl%D1%A2E%8B%16-%95A%CBl%D1%A2E%8B%16-Z*%C3l%D1%A2E%8B%16-Z*%83%96%D9%A2E%8B%16-Z*%83%96%D9%A2E%8B%16-Z%B4T%86%D9%A2E%8B%16-Z%B4T%06-%B3E%8B%16-Z%B4T%06-%B3E%8B%16-Z%B4h%A9%0C%B3E%8B%16-Z%B4h%A9%0CZf%8B%16-Z%B4h%A9%0CZf%8B%16-Z%B4h%D1R%19f%8B%16-Z%B4h%D1R%19%B4%CC%16-Z%B4h%D1R%19%B4%CC%16-Z%B4h%D1%A2%A52%CC%16-Z%B4h%D1%A2%A52h%99-Z%B4h%D1%A2%A52h%99-Z%B4h%D1%A2EKe%98-Z%B4h%D1%A2EKe%D02%5B%B4h%D1%A2EKe%D02%5B%B4h%D1%A2E%8B%96%CA0%5B%B4h%D1%A2E%8B%96%CA%A0e%B6h%D1%A2E%8B%96%CA%A0e%B6h%D1%A2E%8B%16-%95a%B6h%D1%A2E%8B%16-%95A%CBl%D1%A2E%8B%16-%95A%CBl%D1%A2E%8B%16-Z*%C3l%D1%A2E%8B%16-Z*%83%96%D9%A2E%8B%16-Z*%83%96%D9%A2E%8B%16-Z%B4T%86%D9%A2E%8B%16-Z%B4T%06-%B3E%8B%16-Z%B4T%06-%B3E%8B%16-Z%B4h%A9%0C%B3E%8B%16-Z%B4h%A9%0CZf%8B%16-Z%B4h%A9%0CZf%8B%16-Z%B4h%D1R%19f%8B%16-Z%B4h%D1R%19%B4%CC%16-Z%B4h%D1R%19%B4%CC%16-Z%B4h%D1%A2%A52%CC%16-Z%B4h%D1%A2%A52h%99-Z%B4h%D1%A2%A52h%99-Z%B4h%D1%A2EKe%98-Z%B4h%D1%A2EKe%D02%5B%B4h%D1%A2EKe%D02%5B%B4h%D1%A2E%8B%96%CA0%5B%B4h%D1%A2E%8B%96%CA%A0e%B6h%D1%A2E%8B%96%CA%A0e%B6h%D1%A2E%8B%16-%95a%B6h%D1%A2E%8B%16-%95A%CBl%D1%A2E%8B%16-%95A%CBl%D1%A2E%8B%16-Z*%C3l%D1%A2E%8B%16-Z*%83%96%D9%A2E%8B%16-Z*%83%96%D9%A2E%8B%16-Z%B4T%86%D9%A2E%8B%16-Z%B4T%06-%B3E%8B%16-Z%B4%AE%A4%F5%25%C0%00%DE%BF%5C'%0F%DA%B8q%00%00%00%00IEND%AEB%60%82") repeat-y !important; border-left: 1px solid #BBBBBB !important; border-right: 1px solid #000000 !important; border-bottom: 1px dashed #BBBBBB !important; } .overflowRulerX > .firebugRulerV { left: 0 !important; } .overflowRulerY > .firebugRulerH { top: 0 !important; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ .fbProxyElement { position: fixed !important; pointer-events: auto !important; } </style></head> <body onload="onLoadForm()" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"> <form action="/cqweb/login" method="post" name="formLogin"> <img alt="" src="/cqweb/view/browser/images/shim.gif" height="120" width="1"><input value="/cqweb/main?command=GenerateMainFrame" name="targetUrl" type="hidden"><input value="" name="ratl_userdb" type="hidden"><input value="" name="test" type="hidden"><input value="" id="clientServerAddress" name="clientServerAddress" type="hidden"> <table summary="Login" class="dialogueboxbg" align="center" border="0" cellpadding="0" cellspacing="0" width="355"> <tbody><tr> <td class="bgwhite"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="bgwhite"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="7"></td><td class="bgwhite"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="346"></td><td class="bgwhite"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="7"></td> </tr> <tr> <td class="dialogueboxborder" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialogueboxborder" rowspan="8"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td class="dialogueboxborder" rowspan="8"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialogueboxhighlight" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td colspan="4" align="center" height="24">Please enter your User Name and Password.</td> </tr> <tr> <td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td> <table summary="loginTableInner" border="0" cellpadding="0" cellspacing="0"> <tbody><tr> <td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="177"></td><td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="10"></td><td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="200"></td><td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td class="dialogueboxhighlight" rowspan="10"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialgbxshadow2" rowspan="10"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialgbxshadow2"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialgbxshadow2" rowspan="10"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialgbxshadow2" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialgbxshadow2" rowspan="10"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialogueboxhighlight" rowspan="10"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td class="dialogueboxhighlight"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialogueboxhighlight" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td class="bgwhite" rowspan="6" align="center" height="198" valign="top"><img alt="Welcome to Rational ClearQuest Web" src="/cqweb/htdocs/welcome.gif" border="0"></td><td colspan="2"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="2" width="1"></td><td rowspan="6"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td rowspan="7" class="dialogueboxhighlight"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td> </td><td valign="center">User Name: <br> <input class="" value="" onkeypress="checkEnter(event)" maxlength="50" name="username" type="text"></td> </tr> <tr> <td> </td><td valign="center">Password: <br> <input class="" onkeypress="checkEnter(event)" maxlength="50" name="password" type="password"></td> </tr> <tr> <td> </td><td valign="center">Schema Repository: <br> <select class="" onchange="if (testMode != '1') setDbList(this.options[this.selectedIndex].text);" name="schema"><option>TN_STANDARD</option></select></td> </tr> <tr> <td> </td><td valign="center">Database: <br> <select class="" name="userDb"><option>Select a database</option><option value="A01">A01 : Windows Mobile</option><option value="C01">C01 : Overseas R&D Centre</option><option value="D01">D01 : RnD_Europe</option><option value="D02">D02 : G.GSM_Team</option><option value="F01">F01 : RnD_China</option><option value="F02">F02 : China_Team</option><option value="G01">G01 : RnD_NAmerica</option><option value="G02">G02 : Namerica_Team</option><option value="GA01">GA01 : RnD_Android</option><option value="GA02">GA02 : Andvanced_Team</option><option value="H01">H01 : RnD_SLP</option><option value="H02">H02 : SLP_Team</option><option value="I01">I01 : RnD_Android_3G</option><option value="K01">K01 : RnD_Korea</option><option value="K02">K02 : Korea_Team</option><option value="M01">M01 : Advanced Project DB</option><option value="N01">N01 : Misc.</option><option value="O01">O01 : RnD_Latin_America</option><option value="U01">U01 : RnD_Japan</option><option value="WEBUI">WEBUI : PC DEV.</option><option value="X01">X01 : S/W Solution</option><option value="Z02">Z02 : Training DB</option><option value="Z03">Z03 : STAP</option><option value="Z04">Z04 : SE Group(Weekly Repo...</option></select></td> </tr> <tr> <td> </td><td id="loginButton" height="32"><input value=" Login " onclick="submitForm();" onmouseup="style.border='outset #fff 2px';" onmousedown="style.border='inset #fff 2px';" href="#" name="loginButtonInput" class="tabactive1" style="padding: 2px; height:24px; font-weight: bold;" id="loginButtonInput" type="button"></td> </tr> <tr> <td class="dialgbxshadow2"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialgbxshadow2" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td class="dialogueboxhighlight" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td><td class="dialogueboxhighlight" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> </tbody></table> </td> </tr> <tr> <td colspan="4" align="center" height="24"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td class="dialogueboxmedium" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> <tr> <td class="dialogueboxborder" colspan="4"><img alt="" src="/cqweb/view/browser/images/shim.gif" height="1" width="1"></td> </tr> </tbody></table> </form> </body> </html> Your script returns -1 - no form on the page... That is strange. After changing address to http - still the same. Sorry for not explaining, but I thought it is obvious. I have a code which using IE.au3 opens "https://cqweb.server.address.com", fills in login information and then submits the form. After submitting it changes sub pages available after login. I'd love to do the same using WinHttp.au3, as IE.au3 is not as fast and reliable. Edited January 24, 2014 by karlkar Link to comment Share on other sites More sharing options...
trancexx Posted January 24, 2014 Author Share Posted January 24, 2014 What version of the UDF you use? I'm regularly updating this UDF. Form filling function can add cookies (and all other things you want) like this:$sHeadersToAdd = "Host: cqweb.server.address.com" & @CRLF & _ "Referer: https://cqweb.server.address.com/cqweb/login" & @CRLF & _ "Cookie: schemarepo=TN_MP3; userDb=D01; cqecytusid=Zjnh1Smbfl/MiWNLFGixNg==; JSESSIONID=0000F3DyGHdvfvfTMFHI_WA6q2I:-1" $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = _WinHttpConnect($hOpen, "https://cqweb.server.address.com") $sRead = _WinHttpSimpleFormFill($hConnect, "/cqweb/login", _ "index:0", _ ; first form on the page "name:username", "user", _ "name:password", "pass", _ $sHeadersToAdd) ConsoleWrite("!Error = " & @error & @CRLF) ConsoleWrite($sRead & @CRLF) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
karlkar Posted January 24, 2014 Share Posted January 24, 2014 (edited) Ok, I've been using v 1.6.3.2. I've updated it now. After that operation there's no error. $sRead is however the same as source of cqweb/login, so redirect didn't work out. I've did all steps manually in FireFox, with Firebug enabled and here's the result: expandcollapse popupOpening of cqweb/server.address.com/cqweb/login Request headers: GET /cqweb/login HTTP/1.1 Host: cqweb.server.address.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: pl,en-us;q=0.7,en;q=0.3 Accept-Encoding: gzip, deflate Connection: keep-alive Response headers: HTTP/1.1 200 OK Date: Fri, 24 Jan 2014 08:50:08 GMT Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Content-Length: 15565 Set-Cookie: JSESSIONID=0000ODamLAZtOKLpqfe649tP_8b:-1; Path=/ cqweb_session=""; Expires=Thu, 01 Dec 1994 16:00:00 GMT; Path=/cqweb/ Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR ================================================================================ After submitting form: Request headers: POST /cqweb/login HTTP/1.1 Host: cqweb.server.address.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: pl,en-us;q=0.7,en;q=0.3 Accept-Encoding: gzip, deflate Referer: https://cqweb.server.address.com/cqweb/login Cookie: schemarepo=TN_STANDARD; userDb=D01; JSESSIONID=0000ODamLAZtOKLpqfe649tP_8b:-1 Connection: keep-alive Request data: clientServerAddress=https://cqweb.server.address.com/cqweb/login password=pass ratl_userdb=A01,C01,D01,D02,F01,F02,G01,G02,GA01,GA02,H01,H02,I01,K01,K02,M01,N01,O01,U01,WEBUI,X01,Z02,Z03,Z04, schema=TN_STANDARD targetUrl=/cqweb/main?command=GenerateMainFrame test= userDb=D01 username=user Response headers: HTTP/1.1 302 Found Date: Fri, 24 Jan 2014 08:51:00 GMT Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Location: https://cqweb.server.address.com/cqweb/main?command=GenerateMainFrame&rmsessionid=9e25e42f-e347-4944-9269-d32455752e45 Set-Cookie: cqecytusid=Zjnh1Smbfl/MiWNLFGixNg==; Expires=Sat, 24 Jan 2015 08:51:46 GMT; Path=/cqweb/; Secure cqweb_session=SNbi_T1GLZPzGTSR6sybkfsKeYwCZcldAdpTtacr; Path=/cqweb/; Secure Content-Length: 0 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR Working cUrl: curl 'https://cqweb.server.address.com/cqweb/login' -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' -H 'Accept-Encoding: gzip, deflate' -H 'Accept-Language: pl,en-us;q=0.7,en;q=0.3' -H 'Connection: keep-alive' -H 'Cookie: schemarepo=TN_STANDARD; userDb=D01; JSESSIONID=0000ODamLAZtOKLpqfe649tP_8b:-1' -H 'Host: cqweb.server.address.com' -H 'Referer: https://cqweb.server.address.com/cqweb/login' -H 'User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0' -H 'Content-Type: application/x-www-form-urlencoded' --data 'targetUrl=%2Fcqweb%2Fmain%3Fcommand%3DGenerateMainFrame&ratl_userdb=A01%2CC01%2CD01%2CD02%2CF01%2CF02%2CG01%2CG02%2CGA01%2CGA02%2CH01%2CH02%2CI01%2CK01%2CK02%2CM01%2CN01%2CO01%2CU01%2CWEBUI%2CX01%2CZ02%2CZ03%2CZ04%2C&test=&clientServerAddress=https%3A%2F%2Fcqweb.server.address.com%2Fcqweb%2Flogin&username=user&password=pass&schema=TN_STANDARD&userDb=D01' My code is now: #include "../udf/WinHttp.au3" $LocalIP = "cqweb.server.address.com" $sHeadersToAdd = "Host: cqweb.server.address.com" & @CRLF & _ "Referer: https://cqweb.server.address.com/cqweb/login" & @CRLF & _ "Cookie: schemarepo=TN_MP3; userDb=D01; cqecytusid=Zjnh1Smbfl/MiWNLFGixNg==; JSESSIONID=0000F3DyGHdvfvfTMFHI_WA6q2I:-1" & @CRLF & _ 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' & @CRLF & _ 'Content-Type: application/x-www-form-urlencoded' $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = _WinHttpConnect($hOpen, "https://cqweb.server.address.com") $sRead = _WinHttpSimpleFormFill($hConnect, "/cqweb/login", _ "index:0", _ ; first form on the page (is it?) "name:username", "user", _ "name:password", "pass", _ "name:targetUrl", "%2Fcqweb%2Fmain%3Fcommand%3DGenerateMainFrame", _ "name:clientServerAddress", "https://cqweb.server.address.com/cqweb/login", _ "name:schema", "TN_STANDARD", _ "name:userDb", "D01", _ "name:ratl_userdb", "A01%2CC01%2CD01%2CD02%2CF01%2CF02%2CG01%2CG02%2CGA01%2CGA02%2CH01%2CH02%2CI01%2CK01%2CK02%2CM01%2CN01%2CO01%2CU01%2CWEBUI%2CX01%2CZ02%2CZ03%2CZ04%2C", _ "name:test", "", _ "clientServerAddress", "https%3A%2F%2Fcqweb.server.address.com%2Fcqweb%2Flogin&username=user&password=windows98%21&schema=TN_STANDARD&userDb=D01", _ $sHeadersToAdd) ConsoleWrite("!Error = " & @error & @CRLF) ConsoleWrite($sRead & @CRLF) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) As a response still /cqweb/login ... Edited January 24, 2014 by karlkar Link to comment Share on other sites More sharing options...
trancexx Posted January 24, 2014 Author Share Posted January 24, 2014 (edited) That curl example looks more like this:$sHeadersToAdd = "Host: cqweb.server.address.com" & @CRLF & _ "Referer: https://cqweb.server.address.com/cqweb/login" & @CRLF & _ "Cookie: schemarepo=TN_STANDARD; userDb=D01; JSESSIONID=0000ODamLAZtOKLpqfe649tP_8b:-1" & @CRLF & _ "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = _WinHttpConnect($hOpen, "https://cqweb.server.address.com") $sRead = _WinHttpSimpleFormFill($hConnect, "/cqweb/login", _ "index:0", _ ; first form on the page "name:targetUrl", "/cqweb/main?command=GenerateMainFrame", _ ; this field is optional really "name:ratl_userdb", "A01,C01,D01,D02,F01,F02,G01,G02,GA01,GA02,H01,H02,I01,K01,K02,M01,N01,O01,U01,WEBUI,X01,Z02,Z03,Z04,", _ "name:test", "", _ "name:clientServerAddress", "https://cqweb.server.address.com/cqweb/login", _ "name:username", "user", _ "name:password", "pass", _ "name:schema", "TN_STANDARD", _ "name:userDb", "D01", _ $sHeadersToAdd) ConsoleWrite("!Error = " & @error & @CRLF) ConsoleWrite($sRead & @CRLF) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) Edited January 24, 2014 by trancexx ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
karlkar Posted January 24, 2014 Share Posted January 24, 2014 (edited) Yeah! Now response looks much better, as it is: HTTP/1.1 200 OK Connection: Keep-Alive Date: Fri, 24 Jan 2014 12:57:06 GMT Keep-Alive: timeout=15, max=99 Content-Length: 15313 Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Set-Cookie: cqecytusid=Zjnh1Smbfl/MiWNLFGixNg==; Expires=Sat, 24 Jan 2015 12:57:05 GMT; Path=/cqweb/; Secure However I still need rmsessionid parameter that is in given as GET parameter in redirection. (From my previous post): Response headers: HTTP/1.1 302 Found Date: Fri, 24 Jan 2014 08:51:00 GMT Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Location: https://cqweb.server.address.com/cqweb/main?command=GenerateMainFrame&rmsessionid=9e25e42f-e347-4944-9269-d32455752e45 Set-Cookie: cqecytusid=Zjnh1Smbfl/MiWNLFGixNg==; Expires=Sat, 24 Jan 2015 08:51:46 GMT; Path=/cqweb/; Secure cqweb_session=SNbi_T1GLZPzGTSR6sybkfsKeYwCZcldAdpTtacr; Path=/cqweb/; Secure Content-Length: 0 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR In Location: there's rmsessionid parameter, which I cannot obtain otherway then from address. Is there a way of getting that address? Or prevent your functions from redirecting automatically? There's one thing that is strange... If it is after redirect then /cqweb/main should be loaded, but $sRead contains /cqweb/login Edited January 24, 2014 by karlkar Link to comment Share on other sites More sharing options...
trancexx Posted January 24, 2014 Author Share Posted January 24, 2014 Why do you need that sessionid?You can disable redirections on request like this:_WinHttpSetOption($hRequest,$WINHTTP_OPTION_DISABLE_FEATURE,$WINHTTP_DISABLE_REDIRECTS) But before that what do you get if you navigate to /cqweb/main after logging in?$sHeadersToAdd = "Host: cqweb.server.address.com" & @CRLF & _ "Referer: https://cqweb.server.address.com/cqweb/login" & @CRLF & _ "Cookie: schemarepo=TN_STANDARD; userDb=D01; JSESSIONID=0000ODamLAZtOKLpqfe649tP_8b:-1" & @CRLF & _ "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = _WinHttpConnect($hOpen, "https://cqweb.server.address.com") $sRead = _WinHttpSimpleFormFill($hConnect, "/cqweb/login", _ "index:0", _ ; first form on the page "name:ratl_userdb", "A01,C01,D01,D02,F01,F02,G01,G02,GA01,GA02,H01,H02,I01,K01,K02,M01,N01,O01,U01,WEBUI,X01,Z02,Z03,Z04,", _ "name:test", "", _ "name:clientServerAddress", "https://cqweb.server.address.com/cqweb/login", _ "name:username", "user", _ "name:password", "pass", _ "name:schema", "TN_STANDARD", _ "name:userDb", "D01", _ $sHeadersToAdd) $hRequest = _WinHttpSimpleSendRequest($hConnect, Default, "/cqweb/main") $sRead = _WinHttpSimpleReadData($hRequest) ConsoleWrite($sRead & @CRLF) _WinHttpCloseHandle($hRequest) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen)$hConnect should have all the necessary cookies attached for user. ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
karlkar Posted January 24, 2014 Share Posted January 24, 2014 (edited) I'm getting sick of it... When I do it in FireFox: 1. Opening "/cqweb/login" 2. Filling in the form 3. Pressing submit button 4. Waiting for "/cqweb/main?command=GenerateMainFrame&rmsessionid=Whatever" to load When I will change url to "/cqweb/main" - empty page shows up. When I will change url to "/cqweb/main?GenerateMainFrame" (without rmsessionid) - "cqweb/login" shows up. Conclusion: rmsessionid is obligatory and not stored in cookies. When I do it in AutoIt with following script: #include "WinHttp.au3" $sHeadersToAdd = "Host: cqweb.server.address.com" & @CRLF & _ "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = _WinHttpConnect($hOpen, "https://cqweb.server.address.com") $sRead = _WinHttpSimpleFormFill($hConnect, "/cqweb/login", _ "index:0", _ ; first form on the page "name:ratl_userdb", "A01,C01,D01,D02,F01,F02,G01,G02,GA01,GA02,H01,H02,I01,K01,K02,M01,N01,O01,U01,WEBUI,X01,Z02,Z03,Z04,", _ "name:test", "", _ "name:clientServerAddress", "https://cqweb.server.address.com/cqweb/login", _ "name:username", "user", _ "name:password", "pass", _ "name:schema", "TN_STANDARD", _ "name:userDb", "D01", _ $sHeadersToAdd) $error = @error ConsoleWrite("!Error " & $error & @CRLF) ConsoleWrite(StringLeft($sRead, 1500) & @CRLF) If $error = 0 Then $hRequest = _WinHttpSimpleSendRequest($hConnect, "GET", "/cqweb/main?command=GetEntity&entityDefName=Defect&entityId=34381788") ConsoleWrite("Headers = " & _WinhttpQueryHeaders($hRequest) & @CRLF) $sRead = _WinHttpSimpleReadData($hRequest) ConsoleWrite("Error: " & @error & ", read: " & $sRead & @CRLF) _WinHttpCloseHandle($hRequest) EndIf _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) Output is: expandcollapse popup>"D:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "C:\Users\Karex\Desktop\autoit\cqTest.au3" /UserParams +>19:23:02 Starting AutoIt3Wrapper v.2.1.3.0 SciTE v.3.3.6.0 ; Keyboard:00000415 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64 Environment(Language:0415 Keyboard:00000415 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64) >Running AU3Check (1.54.22.0) from:D:\Program Files (x86)\AutoIt3 +>19:23:02 AU3Check ended.rc:0 >Running:(3.3.8.1):D:\Program Files (x86)\AutoIt3\autoit3.exe "C:\Users\Karex\Desktop\autoit\cqTest.au3" --> Press Ctrl+Alt+F5 to Restart or Ctrl+Break to Stop HTTP/1.1 200 OK Connection: Keep-Alive Date: Fri, 24 Jan 2014 18:23:02 GMT Keep-Alive: timeout=15, max=99 Content-Length: 15303 Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Set-Cookie: cqecytusid=Zjnh1Smbfl/MiWNLFGixNg==; Expires=Sat, 24 Jan 2015 18:23:02 GMT; Path=/cqweb/; Secure !Error 0 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"> <head> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Rational</title> <script type="text/javascript" src="/cqweb/view/browser/common/common.js" language="JavaScript"></script><script type="text/javascript" src="/cqweb/view/browser/common/cqweb_xsl_strings_en.js" language="JavaScript"></script><script type="text/javascript" src="/cqweb/view/browser/common/javascript_utilities.js" language="JavaScript"></script><script type="text/javascript" src="/cqweb/view/browser/common/utility.js" language="JavaScript"></script><script src="/cqweb/view/browser/common/sniffer.js" type="text/javascript" language="JavaScript"></script><script type="text/javascript" language="JavaScript"> var schemaReposArr = new Array(); var dbArr = new Array(); var dbDescArr = new Array(); var testMode = ""; schemaReposArr[schemaReposArr.length]="TN_MP3"; dbArr["TN_MP3"] = new Array(); dbDescArr["TN_MP3"] = new Array(); dbArr["TN_MP3"][0] = "A01"; dbDescArr["TN_MP3"][0] = "Windows Mobile"; dbArr["TN_MP3"][1] = "C01"; dbDescArr["TN_MP3"][1] = "Overseas R&D Centre"; dbArr["TN_MP3"][2] = "D01"; dbDescArr["TN_MP3"][2] = "RnD_Europe"; dbArr["TN_MP3"][3] = "D02"; dbDescArr["TN_MP3"][3] = "G.GSM_Team"; dbArr["TN_MP3"][4] = "F01"; dbDescArr["TN_MP3"][4] = "RnD_China"; db Headers = Error: 2, read: +>19:23:11 AutoIt3.exe ended.rc:0 >Exit code: 0 Time: 9.806 And one fun thing. I wanted to check what will happen when I will input wrong username and password. The result of the script is the same... When I've opened the response in FireFox I realised that there's always "Invalid login information" error. My login contains dot, and my password contains special characters like ! or ? maybe they cause some trouble? I've made another test using FireFox - I've opened cqweb/login, cleared cookies and submitted the form with correct login and password. "Invalid login credentials error appeared". So I have to open cqweb/login, and then send the post data... Here is new script: expandcollapse popup#include "WinHttp.au3" $sHeadersToAdd = "Host: cqweb.server.address.com" & @CRLF & _ "Connection: keep-alive" & @CRLF & _ "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = _WinHttpConnect($hOpen, "http://cqweb.server.address.com") ConsoleWrite("======================================" & @CRLF & @CRLF) $hRequest = _WinHttpSimpleSendRequest($hConnect, "GET", "/cqweb/login") _WinHttpReceiveResponse($hRequest) ConsoleWrite(_WinhttpQueryHeaders($hRequest) & @CRLF) $sRead = _WinHttpSimpleReadData($hRequest) ConsoleWrite("!Error " & @error & @CRLF) If StringInStr($sRead, "Please enter your User Name and Password.") <> 0 Then ConsoleWrite("Loaded /cqweb/login" & @CRLF) EndIf ConsoleWrite("======================================" & @CRLF & @CRLF) $hRequest = _WinHttpSimpleSendRequest($hConnect, "POST", "/cqweb/login", Default, "targetUrl%3D%2Fcqweb%2Fmain%3Fcommand%3DGenerateMainFrame%26ratl_userdb%3DA01%2CC01%2CD01%2CD02%2CF01%2CF02%2CG01%2CG02%2CGA01%2CGA02%2CH01%2CH02%2CI01%2CK01%2CK02%2CM01%2CN01%2CO01%2CU01%2CWEBUI%2CX01%2CZ02%2CZ03%2CZ04%2C%26test%3D%26clientServerAddress%3Dhttps%3A%2F%2Fcqweb.server.address.com%2Fcqweb%2Flogin%26username%3Duser%26password%3Dpass98%26schema%3DTN_MP3%26userDb%3DD01", $sHeadersToAdd) _WinHttpReceiveResponse($hRequest) ConsoleWrite(_WinhttpQueryHeaders($hRequest) & @CRLF) $sRead = _WinHttpSimpleReadData($hRequest) ConsoleWrite("!Error " & @error & @CRLF) If StringInStr($sRead, "Please enter your User Name and Password.") <> 0 Then ConsoleWrite("/cqweb/login" & @CRLF) EndIf If StringInStr($sRead, "Invalid") <> 0 Then ConsoleWrite("Invalid" & @CRLF) EndIf ConsoleWrite("======================================" & @CRLF & @CRLF) $hRequest = _WinHttpSimpleSendRequest($hConnect, "GET", "/cqweb/main?command=GetEntity&entityDefName=Defect&entityId=34381788") ConsoleWrite("Headers = " & _WinhttpQueryHeaders($hRequest) & @CRLF) $sRead = _WinHttpSimpleReadData($hRequest) ConsoleWrite("Error: " & @error & ", read: " & @CRLF & $sRead & @CRLF) _WinHttpCloseHandle($hRequest) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) and the response: expandcollapse popup>"D:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "C:\Users\Karex\Desktop\autoit\cqTest.au3" /UserParams +>20:39:56 Starting AutoIt3Wrapper v.2.1.3.0 SciTE v.3.3.6.0 ; Keyboard:00000415 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64 Environment(Language:0415 Keyboard:00000415 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64) >Running AU3Check (1.54.22.0) from:D:\Program Files (x86)\AutoIt3 +>20:39:56 AU3Check ended.rc:0 >Running:(3.3.8.1):D:\Program Files (x86)\AutoIt3\autoit3.exe "C:\Users\Karex\Desktop\autoit\cqTest.au3" --> Press Ctrl+Alt+F5 to Restart or Ctrl+Break to Stop ====================================== HTTP/1.1 200 OK Connection: Keep-Alive Date: Fri, 24 Jan 2014 19:39:53 GMT Keep-Alive: timeout=15, max=100 Content-Length: 15565 Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Set-Cookie: JSESSIONID=0000Bmpysmc9VPQszhIejYcAwok:-1; Path=/ Set-Cookie: cqweb_session=""; Expires=Thu, 01 Dec 1994 16:00:00 GMT; Path=/cqweb/ !Error 0 Loaded /cqweb/login ====================================== HTTP/1.1 200 OK Connection: Keep-Alive Date: Fri, 24 Jan 2014 19:39:57 GMT Keep-Alive: timeout=15, max=99 Content-Length: 15565 Content-Type: text/html; charset=UTF-8 Content-Language: ko-KR Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Set-Cookie: cqweb_session=""; Expires=Thu, 01 Dec 1994 16:00:00 GMT; Path=/cqweb/ !Error 0 /cqweb/login ====================================== Headers = HTTP/1.1 200 OK Connection: Keep-Alive Date: Fri, 24 Jan 2014 19:39:58 GMT Keep-Alive: timeout=15, max=98 Transfer-Encoding: chunked Content-Type: text/html;charset=ISO-8859-1 Content-Language: ko-KR Server: IBM_HTTP_Server/6.0.2.27 Apache/2.0.47 (Win32) Error: 0, read: <html> <body onLoad="top.window.location='/cqweb/login?/cqweb/main?command=GetEntity&entityDefName=Defect&entityId=34381788'" </body> </html> +>20:40:04 AutoIt3.exe ended.rc:0 >Exit code: 0 Time: 8.615 <body onLoad="top.window.location='/cqweb/login?/cqweb/main?command=GetEntity&entityDefName=Defect&entityId=34381788'" means redirect to cqweb/login... Note that I've set $hConnect = _WinHttpConnect($hOpen, "http://cqweb.server.address.com") because when I set it to $hConnect = _WinHttpConnect($hOpen, "https://cqweb.server.address.com") all I got was: >"D:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "C:\Users\Karex\Desktop\autoit\cqTest.au3" /UserParams +>20:42:06 Starting AutoIt3Wrapper v.2.1.3.0 SciTE v.3.3.6.0 ; Keyboard:00000415 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64 Environment(Language:0415 Keyboard:00000415 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64) >Running AU3Check (1.54.22.0) from:D:\Program Files (x86)\AutoIt3 +>20:42:06 AU3Check ended.rc:0 >Running:(3.3.8.1):D:\Program Files (x86)\AutoIt3\autoit3.exe "C:\Users\Karex\Desktop\autoit\cqTest.au3" --> Press Ctrl+Alt+F5 to Restart or Ctrl+Break to Stop ====================================== !Error 2 ====================================== !Error 2 ====================================== Headers = Error: 2, read: +>20:42:09 AutoIt3.exe ended.rc:0 >Exit code: 0 Time: 3.487 Edited January 24, 2014 by karlkar Link to comment Share on other sites More sharing options...
trancexx Posted January 24, 2014 Author Share Posted January 24, 2014 (edited) Well, I know the feeling. This code should do exactly the same thing your working curl example does. And I mean exactly exactly.expandcollapse popup#include "WinHttp.au3" $sUser = "user" $sPass = "pass" $sHeadersToAdd = "Host: cqweb.server.address.com" & @CRLF & _ "Referer: https://cqweb.server.address.com/cqweb/login" & @CRLF & _ "Cookie: schemarepo=TN_STANDARD; userDb=D01; JSESSIONID=0000ODamLAZtOKLpqfe649tP_8b:-1" $sAction = "https://cqweb.server.address.com/cqweb/login" Local $sForm = _ '<form action="' & $sAction & '" method="post">' & _ ' <input name="targetUrl"/>' & _ ' <input name="ratl_userdb"/>' & _ ' <input name="test"/>' & _ ' <input name="clientServerAddress" />' & _ ' <input name="username"/>' & _ ' <input name="password" />' & _ ' <input name="schema" />' & _ ' <input name="userDb" />' & _ '</form>' $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0") $hConnect = $sForm ; Fill form $sHTML = _WinHttpSimpleFormFill($hConnect, $hOpen, _ Default, _ "name:targetUrl", "/cqweb/main?command=GenerateMainFrame", _ "name:ratl_userdb", "A01,C01,D01,D02,F01,F02,G01,G02,GA01,GA02,H01,H02,I01,K01,K02,M01,N01,O01,U01,WEBUI,X01,Z02,Z03,Z04,", _ "name:test", "", _ "name:clientServerAddress", "https://cqweb.server.address.com/cqweb/login", _ "name:username", $sUser, _ "name:password", $sPass, _ "name:schema", "TN_STANDARD", _ "name:userDb", "D01", _ $sHeadersToAdd) If @error Then MsgBox(4096, "Error", "Error number = " & @error) Else ConsoleWrite($sHTML & @CRLF) EndIf If you get "wrong credentials" then I have no idea. Just set correct user name and password. Edited January 24, 2014 by trancexx ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
karlkar Posted January 24, 2014 Share Posted January 24, 2014 (edited) I had hope in that code, However... "Invalid login information"... Looks like this page is anti-WinHttp I've been looking for some test servers that couldallow you test it in real time, however I couldn't... It's IBM Rational ClearQuest v 7.0.1.10, it can be downloaded and installed locally if you do have time and feel like you can make it. I'm gonna give up... but only till Monday Thanks for your help! Edited January 24, 2014 by karlkar Link to comment Share on other sites More sharing options...
chipDE Posted February 7, 2014 Share Posted February 7, 2014 (edited) Hi, ich have a Problem. When i set $WINHTTP_FLAG_SECURE in _WinHttpOpenRequest then _WinHttpSendRequest dont work an @error = 1. Without $WINHTTP_FLAG_SECURE it works: #include "WinHttp.au3" Func _WinHTTP($sDomain) Local $hInternet = _WinHttpOpen() Local $hConnect = _WinHttpConnect($hInternet, $sDomain) Local $hRequest = _WinHttpOpenRequest($hConnect, "POST", "/index.php", Default, Default, Default, $WINHTTP_FLAG_ESCAPE_DISABLE) $data = "test"; $sHeader = "Content-Type: application/x-www-form-urlencoded" _WinHttpSendRequest($hRequest, $sHeader, $data) _WinHttpReceiveResponse($hRequest) Local $data = _WinHttpReadData($hRequest) _WinHttpCloseHandle($hRequest) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hInternet) MsgBox(1, "WinHTTP", $data) EndFunc ;==>_WinHTTP And with $WINHTTP_FLAG_SECURE it dont work: #include "WinHttp.au3" Func _WinHTTP($sDomain) Local $hInternet = _WinHttpOpen() Local $hConnect = _WinHttpConnect($hInternet, $sDomain) Local $hRequest = _WinHttpOpenRequest($hConnect, "POST", "/index.php", Default, Default, Default, BitOR($WINHTTP_FLAG_SECURE, $WINHTTP_FLAG_ESCAPE_DISABLE)) $data = "test"; $sHeader = "Content-Type: application/x-www-form-urlencoded" _WinHttpSendRequest($hRequest, $sHeader, $data) _WinHttpReceiveResponse($hRequest) Local $data = _WinHttpReadData($hRequest) _WinHttpCloseHandle($hRequest) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hInternet) MsgBox(1, "WinHTTP", $data) EndFunc ;==>_WinHTTP Edited February 7, 2014 by chipDE Link to comment Share on other sites More sharing options...
trancexx Posted February 8, 2014 Author Share Posted February 8, 2014 Check port number. ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
chipDE Posted February 10, 2014 Share Posted February 10, 2014 Hi, The problem was that the SSL certificate was not trusted signed. After manually adding to the local certificate store, it worked. trancexx 1 Link to comment Share on other sites More sharing options...
karlkar Posted February 14, 2014 Share Posted February 14, 2014 (edited) Hello! It's me again I was lucky, as admins updated ClearQuest to the next version, which supports REST However now I have a strange effect. When I call http://165.213.147.58/cqweb/oslc/repo/TN_STANDARD/db/D01/record/?rcm.name=550898&oslc_cm.properties=Headline,State,Project,Model,Module,Carrier,Severity,Detected_Version,Due_Date,Description,Extra_Info,Notes_Log,Owner&rcm.type=Carrier_Issue&rcm.contentType=application/json in Firefox, response comes in max 5s. When I do it with autoit, it very often fails after 60 second timeout, or takes about 30s when succeeds. (Yes - always when succeeds it takes about 30 seconds) This is strange, isn't it? The same machine, the same connection. Server supports both, basic and oauth authorization, however I'm using basic in both cases. Please take a look at what wireshark registers (first = request by Mozilla, second = request by AutoIt) Edited February 14, 2014 by karlkar Link to comment Share on other sites More sharing options...
ngskicker Posted February 26, 2014 Share Posted February 26, 2014 Hi trancexx, can you help me to send this WinHttpSimpleSSLRequest GET https://go.xero.com/Reports/ExcelReport.aspx?reportId=bb89fa34-4dd9-4cc4-ab9d-11e171502bdf&report=&statement=17e61be5-f96b-478c-8ef1-a41b0bbe33e6&attPage= HTTP/1.1 Accept: text/html, application/xhtml+xml, */* Referer: https://go.xero.com/Reports/report2.aspx?reportId=bb89fa34-4dd9-4cc4-ab9d-11e171502bdf&statement=AE21E0AE-C1B1-4450-A99F-89F13258F6A8&bankAccountID=B890BEF9-7347-4FBF-A539-9B492DDC7EF6&reportClass=BankReconciliation Accept-Language: en-US,en;q=0.7,id;q=0.3 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko Accept-Encoding: gzip, deflate Host: go.xero.com Connection: Keep-Alive Cookie: NETPROFIT_AUTH=btcajoktczelxoj1ug30t1re; .XeroSignIn=; XERO-LB=755243180.20736.0000; Akamai-UBB=5934112d.0a3a4ddf; .XeroSession=C6BE12EFDCF11CA0D8FF7BECB148E009A5AA32893EA90E16C25E3BFF85D1572141D9338367F9F3ABA0207167EC6D477FB459FF02D6DDC7F5FC795FC6A22048A53FAE65A56FBAFF9948AB8D5FF426FDED6D6B94AFEA794F67E9383C7E717B1A7C35F3809361180D1DB80007FE9B26FC7BA9E92176225136BF86546BBEC3395D9CFF3FF59833DB77AB3BA9712E5C69B5EE9ADA16A6DD06A1EB9E40860A8188CECBBA439DCE81F233DB190E4AA0F230E288F5E84690275B10162A92E6DF1654D163EB09E1B799E70CDBFA82A023DBA58AECFDD90ABDD5CD49E67325F585F181A4193C9B4E4BA64EBEE838474AA2730C09DDB65DD674; OG_TIP_STATE=ON; X-AK-XERO-ID=a2ca6ece-eaab-4b6b-b2f2-9d7972f5c961; X-XRO-FLAG= Link to comment Share on other sites More sharing options...
trancexx Posted February 27, 2014 Author Share Posted February 27, 2014 The easiest would probably be to use form filling function. Just open session and fill custom form. Also use last argument for the function to pass additional header data (including cookies). You can see example of using form filling function in such manner by following this link - ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
DW1 Posted March 7, 2014 Share Posted March 7, 2014 Hi, I am trying to use SetCredentials to pass current logged in user credentials without the user having to specify them. Any clues on how to accomplish this? This works fine: _WinHttpSetCredentials($hRequest, $WINHTTP_AUTH_TARGET_SERVER, $WINHTTP_AUTH_SCHEME_NEGOTIATE, "Domain\User_Name", "Password") But I'm hoping that there is a way to replace "DomainUser_Name" and "Password" based on the logged in user. Is there a way to tell it to just authenticate over the current logged in account? When I go to this site in a browser, it works without prompting for credentials and I can see in wireshark that it is passing the "DomainUser_Name" properly. AutoIt3 Online Help Link to comment Share on other sites More sharing options...
trancexx Posted March 7, 2014 Author Share Posted March 7, 2014 No, of course credentials can't be passed automatically. Your browser saved credentials somewhere and passes them for domain (or whatever). ♡♡♡ . eMyvnE Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now