GNUe AppServer is GNUe's middleware for database access.
Python driver GNUe Application Server.
Home Page: http://www.gnuenterprise.org/tools/appserver/
POSIX Support: YES
Win32 Support: YES
Platforms Tested:
- Linux/Unix (Debian, RedHat, SuSe, etc)
- Windows NT/XP/2000
Connection Properties
The following properties can be specified in your connections.conf file:
- host -- This is the hostname/ip address of the host running AppServer (required)
- port -- The port that AppServer is running on (required)
- timeout -- Command timeout in seconds (optional)
- transport -- Transport used for network connections (http, https) (required)
- rpctype -- RPC driver used for network communication (xmlrpc, soap, etc.)
See GNUe Common's RPC documentation for a list of all RPC types. (required)
Examples
The following is an example of a connection.conf entry:
[appserver]
comment = Connection to the GNUe Application Server
provider = appserver
rpctype = xmlrpc
host = localhost
port = 8765
transport = http
Notes
- GNUe AppServer works natively in utf-8, so encoding= is not a valid property.
- This driver is fully functional with no known serious problems.