From: Colin Finck Date: Wed, 26 Jan 2011 21:56:17 +0000 (+0000) Subject: [ROSAUTOTEST] X-Git-Tag: backups/ros-branch-0_3_13@51035~91 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=736698d868604dd21023c21637077ed1df8da01c [ROSAUTOTEST] - Fix direct submission to Testman after the recent changes and finally change the location to "reactos.org" instead of "localhost". Makes Rosautotest ready for running tests on our upcoming Windows Server instance. svn path=/trunk/; revision=50502 --- diff --git a/rostests/rosautotest/CConfiguration.cpp b/rostests/rosautotest/CConfiguration.cpp index 9e577952b29..66e1bc33f58 100644 --- a/rostests/rosautotest/CConfiguration.cpp +++ b/rostests/rosautotest/CConfiguration.cpp @@ -2,7 +2,7 @@ * PROJECT: ReactOS Automatic Testing Utility * LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * PURPOSE: Class for managing all the configuration parameters - * COPYRIGHT: Copyright 2009 Colin Finck + * COPYRIGHT: Copyright 2009-2011 Colin Finck */ #include "precomp.h" @@ -183,11 +183,11 @@ CConfiguration::GetConfigurationFromFile() EXCEPTION("Missing \"" CONFIGURATION_FILENAMEA "\" configuration file!\n"); /* Get the user name */ - m_AuthenticationRequestString = "&username="; - Value = GetINIValue(L"Login", L"UserName", ConfigFile); + m_AuthenticationRequestString = "&sourceid="; + Value = GetINIValue(L"Login", L"SourceID", ConfigFile); if(Value.empty()) - EXCEPTION("UserName is missing in the configuration file\n"); + EXCEPTION("SourceID is missing in the configuration file\n"); m_AuthenticationRequestString += EscapeString(Value); diff --git a/rostests/rosautotest/CWebService.cpp b/rostests/rosautotest/CWebService.cpp index fbf4900ef27..c467f3b2309 100644 --- a/rostests/rosautotest/CWebService.cpp +++ b/rostests/rosautotest/CWebService.cpp @@ -2,12 +2,12 @@ * PROJECT: ReactOS Automatic Testing Utility * LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation * PURPOSE: Class implementing the interface to the "testman" Web Service - * COPYRIGHT: Copyright 2009 Colin Finck + * COPYRIGHT: Copyright 2009-2011 Colin Finck */ #include "precomp.h" -static const WCHAR szHostname[] = L"localhost"; +static const WCHAR szHostname[] = L"reactos.org"; static const WCHAR szServerFile[] = L"testman/webservice/"; /**