Author: cfinck Date: Wed Jan 26 21:56:17 2011 New Revision: 50502
URL: http://svn.reactos.org/svn/reactos?rev=50502&view=rev Log: [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.
Modified: trunk/rostests/rosautotest/CConfiguration.cpp trunk/rostests/rosautotest/CWebService.cpp
Modified: trunk/rostests/rosautotest/CConfiguration.cpp URL: http://svn.reactos.org/svn/reactos/trunk/rostests/rosautotest/CConfiguration... ============================================================================== --- trunk/rostests/rosautotest/CConfiguration.cpp [iso-8859-1] (original) +++ trunk/rostests/rosautotest/CConfiguration.cpp [iso-8859-1] Wed Jan 26 21:56:17 2011 @@ -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 colin@reactos.org + * COPYRIGHT: Copyright 2009-2011 Colin Finck colin@reactos.org */
#include "precomp.h" @@ -183,11 +183,11 @@ 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);
Modified: trunk/rostests/rosautotest/CWebService.cpp URL: http://svn.reactos.org/svn/reactos/trunk/rostests/rosautotest/CWebService.cp... ============================================================================== --- trunk/rostests/rosautotest/CWebService.cpp [iso-8859-1] (original) +++ trunk/rostests/rosautotest/CWebService.cpp [iso-8859-1] Wed Jan 26 21:56:17 2011 @@ -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 colin@reactos.org + * COPYRIGHT: Copyright 2009-2011 Colin Finck colin@reactos.org */
#include "precomp.h"
-static const WCHAR szHostname[] = L"localhost"; +static const WCHAR szHostname[] = L"reactos.org"; static const WCHAR szServerFile[] = L"testman/webservice/";
/**