SOAPpy parameters in sequence

2007-05-07 Thread D Unit

Hi,

I am trying to send a message to a SOAP implementation where the parameters
must in sequence. I am creating a SOAPProxy and then sending the message
with:

proxy.methodName(paramName=value, paramName2=value2)

Is there a way to explicitly set the order of parameters?
If not, is there a way to manually set the SOAP message body and send the
message?

Thanks
-- 
View this message in context: 
http://www.nabble.com/SOAPpy-parameters-in-sequence-tf3705624.html#a10363179
Sent from the Python - python-list mailing list archive at Nabble.com.

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: SOAPpy parameters in sequence

2007-05-07 Thread D Unit

I figured it out.
The SOAPPRoxy class has an attribute 'SOAPPRoxy.config.argsOrdering'
You can set it to a dict. Each key is the name of a method, and the value is
a list with the attributes in the correct order.

-Dave


D Unit wrote:
> 
> Hi,
> 
> I am trying to send a message to a SOAP implementation where the
> parameters must in sequence. I am creating a SOAPProxy and then sending
> the message with:
> 
> proxy.methodName(paramName=value, paramName2=value2)
> 
> Is there a way to explicitly set the order of parameters?
> If not, is there a way to manually set the SOAP message body and send the
> message?
> 
> Thanks
> 

-- 
View this message in context: 
http://www.nabble.com/SOAPpy-parameters-in-sequence-tf3705624.html#a10363807
Sent from the Python - python-list mailing list archive at Nabble.com.

-- 
http://mail.python.org/mailman/listinfo/python-list