This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Phil.Daintree
Recipients Phil.Daintree, amaury.forgeotdarc, ezio.melotti, loewis, santoso.wijaya, xrg
Date 2012-05-27.07:09:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338102583.71.0.742698098631.issue11804@psf.upfronthosting.co.za>
In-reply-to
Content
Well maybe this should be a different bug as it is clearly not xml 1.1 related as the linue in the xml gives away :-)

<?xml version="1.0"?>

To repeat the bug ... using the webERP demo data

#!/usr/bin/env python

import xmlrpclib

x_server = xmlrpclib.Server('http://www.weberp.org/weberp/api/api_xml-rpc.php',verbose=True)
#Get the stock items defined in the demo webERP installation
StockList = x_server.weberp.xmlrpc_SearchStockItems('discontinued','0','admin','weberp')

if StockList[0]==0:
	for StockID in StockList[1]:
		print str(StockID)

The webERP xml-rpc server uses XMLRPC for PHP http://phpxmlrpc.sourceforge.net/
History
Date User Action Args
2012-05-27 07:09:43Phil.Daintreesetrecipients: + Phil.Daintree, loewis, amaury.forgeotdarc, ezio.melotti, santoso.wijaya, xrg
2012-05-27 07:09:43Phil.Daintreesetmessageid: <1338102583.71.0.742698098631.issue11804@psf.upfronthosting.co.za>
2012-05-27 07:09:43Phil.Daintreelinkissue11804 messages
2012-05-27 07:09:42Phil.Daintreecreate