| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
This bug was triggered when using the mod_wsgi platform, where you are
not placed in the root directory by default.
|
|
|
|
|
|
| |
This can be used to check if the XML-RPC service have access to the database
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
|
|
|
|
|
|
|
|
|
| |
Enhanced rteval with trying to access the Hello() method. If the
server responds (even if Hello() is not available), rteval will
continue to run. If the server is not accessible, rteval will abort.
In a future version, rteval should expect a proper response to the
XML-RPC Hello() call.
|
| |
|
|
|
|
|
|
| |
This is to avoid overloading the Apache process doing XML parsing and database
inserts on bigger XML reports. A separate parser process will need to pick files
from the submission queue and parse them in separate thread(s).
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Introduced a new rteval.conf section for configuring the xmlrpc server.
[xmlrpc_server]
datadir: <path to where to save copy of summary.xml report>
xsltpath: <path to where xmlparser.xsl can be found>
db_server: <hostname of PostgreSQL server to connect to>
db_port: <port number of PostgreSQL>
database: <database to use>
db_username: <connect to database as this user>
db_password: <password for the db account>
The default values of these parameters are:
datadir: /var/lib/rteval
xsltpath: /usr/share/rteval
db_server: localhost
db_port: 5432
database: rteval
db_username: xmlrpc
db_password: rtevaldb
The xmlrpc_server section in the /etc/rteval.conf file only need those
parameters which are different from the default values.
|
| |
|
|
|
|
| |
It had inverse boolean logic than what was expected
|
|
|
|
| |
executing SQL queries
|
|
|
|
|
|
| |
report)
Also fixed XML-RPC URL path for requests, to match the production environment
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The apache-htaccess is the needed .htaccess file for the
Apache web server. It should be located in the directory where
also rteval_xmlrpc.py and xmlrpc_API1.py should reside. This
directory must be available from a HTTP request. Please make
sure that this directory are allowed to use .htaccess files by
the Apache config.
In addition, the rtevald.py was adjusted to work as a local
test server, to avoid to configure a Apache + mod_python locally
Also added some copyright information into the touched files
as well
|
|
|
|
|
|
|
| |
Could not run the same XML-RPC function twice if it involved decompression
of the data on the server side. Also implemented saving of report files
for the SendReport() function, as a starter. This function should parse the
file and insert the data into a database
|
|
|
|
| |
progress
|
|
|