> On Friday 05 March 2010, Kamil Wasilewski wrote:
>> > server.doGetCountries(**{
>> > 'country-code': COUNTRYID, 'webapi-key': WEBAPIKEY
>> > })
>>
>> The above gives a syntax error...
> What kind of syntax error? I tested this approached on the interactive
> Python sh
On Friday 05 March 2010, Kamil Wasilewski wrote:
> > server.doGetCountries(**{
> > 'country-code': COUNTRYID, 'webapi-key': WEBAPIKEY
> > })
>
> The above gives a syntax error...
What kind of syntax error? I tested this approached on the interactive
Python shell and it
Hello Maarten,
Friday, March 5, 2010, 6:26:36 PM, you wrote:
> On Friday 05 March 2010, Kamil Wasilewski wrote:
>> from SOAPpy import WSDL
>> wsdlFile = "http://webapi.allegro.pl/uploader.php?wsdl";
>> server = WSDL.Proxy(wsdlFile)
>> server.soapproxy.config.argsOrdering = {'doGetCountries':
>>
On Friday 05 March 2010, Kamil Wasilewski wrote:
> from SOAPpy import WSDL
> wsdlFile = "http://webapi.allegro.pl/uploader.php?wsdl";
> server = WSDL.Proxy(wsdlFile)
> server.soapproxy.config.argsOrdering = {'doGetCountries':
> ['country-code', 'webapi-key'] }
> server.doGetCountries(country-code=
On Mar 5, 2010, at 12:15 PM, Kamil Wasilewski wrote:
> server.soapproxy.config.argsOrdering = {'doGetCountries': ['country-code',
> 'webapi-key'] }
> server.doGetCountries(country-code=COUNTRYID}, webapi-key=WEBAPIKEY)
>
> The above method allows me to specify the order and name of variables bein
Hi,
Ive got an issue where a variable name needs to have a minus sign (-) in it.
from SOAPpy import WSDL
wsdlFile = "http://webapi.allegro.pl/uploader.php?wsdl";
server = WSDL.Proxy(wsdlFile)
server.soapproxy.config.argsOrdering = {'doGetCountries': ['country-code',
'webapi-key'] }
server.doGetCo