Hi all,
I am relatively weak in Python and I need some help with this. I have built
a series of SOAP client functions that ping, authenticate (password
username), and query a SOAP server. All works well but I cannt figure out
on part of the download SOAP outgoing message. I also tried WSDL a
Hi,
Im a Python newbie and am trying to get the data out of a series of XML
files. So for example the xml is:
http://schemas.xmlsoap.org/soap/envelope/";
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:tns="http://www.ExchangeNetwork.net/schema/v1.0/node.wsdl";
xmlns:types="
Thanks for the help
This was a SOAP Webservice message. I used httplib instead of SOAPpy or ZSI
because SOAPpy cann't do arrays of complex type and ZSI was confusing.
Thanks again
"Rodney" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
Hi again, thanks for the help with figuring out how to parse a SOAP return
message. I know have a return message that has an embedded ZIP file in it.
Can anyone help me figure out how to extract this file from the SOAP return
message. The message looks as following:
'\x0c
\x00\x00\x00)\x00)\
I actually tried both SOAPpy and ZSI but both return a error message with
the incoming SOAP message that basicly said it was not a proper SOAP
message.
"Diez B. Roggisch" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Rodney schrieb:
>> Hi again,
Hey I recently created a contracts library for python and was wondering if
anyone finds it useful or wants to have additional features added ? Feel free
to open new issues on the github project.
https://github.com/rlgomes/contracts
This is just a v0.1 and I welcome any and all suggestions to m
cann't figure out how to do this. I have tried SOAPpy
and httplib and I cann't send the correct XML outgoing message. Any help
with this would be greatly appreciated. Following is the needed outgoing
XML file and my successful SOAPpy code.
Thank you,
Rodney ([EMAIL PROTECTED])
Thanks :-)
"Diez B. Roggisch" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>> I wanted to attach these - however, taht didn't work for NNTP, so I mail
>> them to you.
>
> Didn't work - my mail server won't let me send these to you. So you're on
> your own here. Shouldn't be too
Was doing some string formatting, noticed the following:
>>> x = None
>>> "%s" % x
'None'
Is there a reason it maps to 'None'? I had expected ''.
--
http://mail.python.org/mailman/listinfo/python-list
> c = None (result of an assignment after the os.environ.get()
returned a KeyError).
Why not trap the KeyError?
--
http://mail.python.org/mailman/listinfo/python-list
Greetz!
Recently I started creating a CGI application for my gf that
she would use for indexing and keeping track of her video
collection.
I am relatively new to python so I started with the basics.
I figured out how to extract the form field values in a
script and how to save to a file.
My ques
I did a source code build of Python 2.4.1 on OS X (10.3.8) and the
executable produced was 'python.exe'. Can someone tell me whether this
is a bug, feature, or UserError?
% ./configure
% make
% ./python.exe
Python 2.4.1 (#1, Apr 17 2005, 12:14:12)
[GCC 3.3 20030304 (Apple Computer, Inc. build 14
>> executable produced was 'python.exe'. Can someone tell me whether
this
>> is a bug, feature, or UserError?
> I'm not sure. Why don't you grab the binary?
> http://www.python.org/ftp/python/2.4.1/MacPython-OSX-2.4.1-1 .dmg
Because I need to keep multiple versions of Python on this machine, and
> The default file system on MacOSX is case insensitive. As a result
the .exe
> extension is required to disambiguate the generated executable from
the
> Python directory in the source distro.
OK. I got it.
--
http://mail.python.org/mailman/listinfo/python-list
In Python 2.4.1:
>>> None = 99
SyntaxError: assignment to None
>>> True = 99
>>> False = 99
>>> True == False
True
---
So why is 'None' special?
--
http://mail.python.org/mailman/listinfo/python-list
>>> l[...]
Traceback (most recent call last):
File "", line 1, in
TypeError: list indices must be integers
So where is this extended slicing used?
--
Rodney
--
http://mail.python.org/mailman/listinfo/python-list
On Sep 13, 5:50 pm, James Stroud <[EMAIL PROTECTED]> wrote:
> Rodney Maxwell wrote:
> > The following are apparently legal Python syntactically:
> >L[1:3, 8:10]
> >L[1, ..., 5:-2]
>
> > But they don't seem to work on lists:
> >>>>
On Sep 13, 5:50 pm, James Stroud <[EMAIL PROTECTED]> wrote:
> Rodney Maxwell wrote:
> > The following are apparently legal Python syntactically:
> >L[1:3, 8:10]
> >L[1, ..., 5:-2]
>
> > But they don't seem to work on lists:
> >>>>
18 matches
Mail list logo