Hi Henrik
Okay - trying to connect now with web services but there doesn't seem to be any way to add the relevant connection string, for example, in Python, I need the following to connect via xml-rpc:
username = 'admin' #the user
pwd = 'maven' #the password of the user
dbname = 'andy1' #the database
# Get the uid
sock_common = xmlrpclib.ServerProxy ('http://localhost:8069/xmlrpc/common')
uid = sock_common.login(dbname, username, pwd)
#replace localhost with the address of the server
sock = xmlrpclib.ServerProxy('http://localhost:8069/xmlrpc/object')
How would I replicate that in a Web Service task - particularly the user/pwd and dbname?
Cheers
Andy