SOAPpy proxy through NTLM

2015-03-28 Thread pfaff . christopherj
bpage. I was unable to authenticate via soappy alone. If anyone cal help me it would great greatly appreciated. I can't seem the find the right example to follow, or a document that explains this well enough. import urllib2 from ntlm import HTTPNtlmAuthHandler user = &#x

Re: SOAPpy: Expected to find node type 'Element' with name 'CountriesFetchingRequest'; Found node type 'Element' with name 'FetchCountries'

2014-09-23 Thread Veek M
dieter wrote: > I have no experience with "SOAPpy", but with "suds" (another Python > SAOP client). A "suds" client exposes two attributes "factory" *miaows happily* -- https://mail.python.org/mailman/listinfo/python-list

Re: SOAPpy: Expected to find node type 'Element' with name 'CountriesFetchingRequest'; Found node type 'Element' with name 'FetchCountries'

2014-09-23 Thread ldanielburr
" /> > >wsaw:Action="http://ws.aramex.net/ShippingAPI/v1/Service_1_0/FetchCountriesResponse"; > name="CountriesFetchingResponse" message="tns:CountriesFetchingResponse" /> > > > > > > > > > >

Re: SOAPpy: Expected to find node type 'Element' with name 'CountriesFetchingRequest'; Found node type 'Element' with name 'FetchCountries'

2014-09-21 Thread dieter
> ignore it since I'll probably figure it out eventually. > ... > The trouble is I don't understand how to call 'CoutriesFetchingRequest' or > pass it to FetchCountries. Could someone clarify? I have no experience with "SOAPpy", but with "suds" (anoth

SOAPpy: Expected to find node type 'Element' with name 'CountriesFetchingRequest'; Found node type 'Element' with name 'FetchCountries'

2014-09-21 Thread vek . m1234
hCountriesResponse"; name="CountriesFetchingResponse" message="tns:CountriesFetchingResponse" /> My python code: #!/usr/bin/python import xml, fpconst, logging from SOAPpy import WSDL from suds.client import Client logging.basicConfig

Soappy: "Fault SOAP-ENV:Client: session_lifetime_syntax_incorrect"

2013-03-23 Thread Tamer Higazi
Hi people! I try to access the service of my provider through SOAP, with the credentials I received from my provider once before. Hier ist der 33 lines of code: from SOAPpy import WSDL from SOAPpy.Errors import HTTPError as SoapHTTPError from SOAPpy.Types import faultType import hashlib class

Asynchronous Soappy on AppEngine

2012-09-14 Thread Dennis
Hi, I've noticed that my Soappy calls get converted to URLFetch calls on Google AppEngine. There seems to be documentation that UrlFetch can do Asynchronous operations [1] but I'm not really sure how to make the soap operations asynchronous. Tried looking at the Soapproxy class and se

http-headers for soappy

2010-11-12 Thread Johann Spies
How do I pass the following header Header name: Cookie Header value: [SID="the session identifier"] to SOAP.HeaderHandler(): class HeaderHandler: # Initially fail out if there are any problems. def __init__(self, header, attrs): for i in header.__dict__.keys():

remove v1 tag using SOAPPy

2010-01-12 Thread Jennifer
I just wonder if there is anyway to remove v1 tag by using SOAPPy. ticketInfo = SOAPpy.structType() ticketInfo._addItem("ns1:mytag", stringType("test")) test How can I get rid of ? Many Thanks. - Jennifer -- http://mail.python.org/mailman/listinfo/python-list

Re: Help with SOAPpy and WSDL.

2009-11-02 Thread Simon Brunning
2009/11/2 Henrik Aagaard Sørensen : > I'll try to explain it here then: > > A small example on SOAPpy and WSDL. My code: > from SOAPpy import WSDL > wsdlFile = 'http://www.webservicex.net/country.asmx?wsdl' > server = WSDL.Proxy(wsdlFile) > server.GetCurre

Re: Help with SOAPpy and WSDL.

2009-11-02 Thread Henrik Aagaard Sørensen
I'll try to explain it here then: A small example on SOAPpy and WSDL. My code: from SOAPpy import WSDL wsdlFile = 'http://www.webservicex.net/country.asmx?wsdl' server = WSDL.Proxy(wsdlFile) server.GetCurrencyByCountry('Zimbabwe') returns: Traceback (most recent call las

Re: Help with SOAPpy and WSDL.

2009-11-02 Thread Simon Brunning
2009/11/2 Henrik Aagaard Sørensen : > I have a problem with SOAPpy and WSDL. It is explained here: > http://www.python-forum.org/pythonforum/viewtopic.php?f=3&t=15532 Why not explain it here? In any case, I imagine the advice is going to be to try Suds - <https://fedoraho

Help with SOAPpy and WSDL.

2009-11-02 Thread Henrik Aagaard Sørensen
I have a problem with SOAPpy and WSDL. It is explained here: http://www.python-forum.org/pythonforum/viewtopic.php?f=3&t=15532 Many regards, Henrik -- http://mail.python.org/mailman/listinfo/python-list

Re: SOAPpy(10060, 'Operation timed out')

2009-05-15 Thread Piet van Oostrum
>>>>> "Zhang, Ning" (ZN) wrote: >ZN> Hi all >ZN> I am working for a energy company, we currently want to use api to load >ZN> data into the database. >ZN> I am new for soappy package. I have done a bit research on >ZN> http://www

SOAPpy(10060, 'Operation timed out')

2009-05-09 Thread Zhang, Ning
Hi all I am working for a energy company, we currently want to use api to load data into the database. I am new for soappy package. I have done a bit research on http://www.ibm.com/developerworks/webse ... #resources <http://www.ibm.com/developerworks/webservices/library/ws-pyth16/#resour

SOAPpy serious problem

2009-04-03 Thread ozgur vatansever
Hi, I have a problem about soappy. I have a wsdl file located at http://212.175.81.30:/importWebService/services/ShippingOrderDispatcher?wsdl I want to call the function "dispatch" but that function takes an array of ShippingOrder objects. I couldn't manage to defin

Re: SOAPpy help needed

2009-03-18 Thread Piet van Oostrum
>>>>> somemilk (D) wrote: >D> Hi everyone. >D> I have a PHP script which works and i need to write the same in Python >D> but SOAPpy generates a slightly different request and i'm not sure how >D> to fix it so the server likes it. >D> The reques

SOAPpy help needed

2009-03-18 Thread somemilk
Hi everyone. I have a PHP script which works and i need to write the same in Python but SOAPpy generates a slightly different request and i'm not sure how to fix it so the server likes it. The request generated by php script looks like this (removed http's

Re: SOAPpy under Python 2.6

2009-01-14 Thread Terry Reedy
le...@leithalweapon.geek.nz wrote: I am having problems with SOAPpy after we upgraded to Python 2.6 Here is the exception I keep getting: File "C:\Dev\Phoenix\SAPI.py", line 2561, in getSystemInfo obj = self.soapProxy.getSystemInfo() File "c:\python26\Lib\site-packages\S

SOAPpy under Python 2.6

2009-01-14 Thread leith
I am having problems with SOAPpy after we upgraded to Python 2.6 Here is the exception I keep getting: File "C:\Dev\Phoenix\SAPI.py", line 2561, in getSystemInfo obj = self.soapProxy.getSystemInfo() File "c:\python26\Lib\site-packages\SOAPpy\Client.py", line 470, in

Re: Error with SOAPpy

2008-12-13 Thread Jeremiah Dodds
#x27;Light sensor value: ' + server._ns(namespace).readLSpercent > (int_1 = "1") > File "c:\Python24\Lib\site-packages\SOAPpy\Client.py", line 470, in > __call__ > return self.__r_call(*args, **kw) > File "c:\Python24\Lib\site-packages\SOAPpy\Client.p

Error with SOAPpy

2008-12-13 Thread Amit Goyal
) File "c:\Python24\Lib\site-packages\SOAPpy\Client.py", line 470, in __call__ return self.__r_call(*args, **kw) File "c:\Python24\Lib\site-packages\SOAPpy\Client.py", line 492, in __r_call self.__hd, self.__ma) File "c:\Python24\Lib\site-packages\SOAPpy\C

Re: SOAPpy SyntaxError

2008-11-20 Thread Jon-Pierre Gentil
[EMAIL PROTECTED] wrote: I'm going through the SOAP Web Services portion of Mark Pilgrim's tutorial and I'm getting this error when trying to build: File "/Users/username/Desktop/SOAPpy-0.12.0/SOAPpy/Client.py", line 46 from __future__ import nested_scopes Syn

SOAPpy SyntaxError

2008-11-20 Thread [EMAIL PROTECTED]
"/Users/username/Desktop/SOAPpy-0.12.0/SOAPpy/__init__.py", line 5, in from Client import * File "/Users/username/Desktop/SOAPpy-0.12.0/SOAPpy/Client.py", line 46 from __future__ import nested_scopes SyntaxError: from __future__ imports must occur at the beginning

RE: SOAPpy and ArrayOfString

2008-08-14 Thread Edwin . Madari
for someMethod(Field1 ArrayOf_xsd_string, other_parameters) a call someMethod( ['str1', 'str2', 'str3'], other_parameters) *works for me* with SOAPpy 0.12.0. yes sir it does. in PERL, let alone array types, even for simple types it was hard for me with all th

SOAPpy and ArrayOfString

2008-08-14 Thread annu miya
Hi,   In the article below you mention that you were succesful at doing this through perl. Would it be possible to send me the perl code?   http://mail.python.org/pipermail/python-list/2007-January/423311.html   Thank You   Regards   Sid -- http://mail.python.org/mailman/listinfo/python-l

SOAPpy how to

2008-08-06 Thread Edwin . Madari
unable to get past local proxy server with SOAPpy client. In the code below using 'thproxy' or 'httpproxy' variable for http_proxy fails. from SOAPpy import WSDL proxyuser='..' proxypass='.. httpproxy="a.b.c.com:1234" theproxy='ht

Re: SOAPpy WSDL problem: namespace of schema and import match error

2008-07-28 Thread Christof Winter
Christof Winter wrote, On 28.07.2008 12:32: I am trying to use a webservice with SOAPpy: import SOAPpy intact_wsdl = "http://www.ebi.ac.uk/intact/binary-search-ws/binarysearch?wsdl"; intact_serv = SOAPpy.WSDL.Proxy(intact_wsdl) [...] My question: - Is there a problem with the

SOAPpy WSDL problem: namespace of schema and import match error

2008-07-28 Thread Christof Winter
I am trying to use a webservice with SOAPpy: import SOAPpy intact_wsdl = "http://www.ebi.ac.uk/intact/binary-search-ws/binarysearch?wsdl"; intact_serv = SOAPpy.WSDL.Proxy(intact_wsdl) The resulting error message is posted below. If I understand it right, XMLSchema.py complains

Need help on Soappy

2008-05-22 Thread Shanmuga Rajan
I am developing a application using webservices. I am using Soappy. When i tried to start reading some wsdl files from web service server then i got the following error. Can any one please help me with this. >>> >>> >>> from SOAPpy import WSDL >>> wsdlFile

Re: How to build a body like this use SOAPPy?

2008-04-01 Thread John J. Lee
qgg <[EMAIL PROTECTED]> writes: [...] > [...] Heh, you may have picked an discouragingly spammish subject line. John -- http://mail.python.org/mailman/listinfo/python-list

How to build a body like this use SOAPPy?

2008-03-31 Thread qgg
repeat arrWords aa 11 bb 22 99 I try like this,but fail: WordsRequest(arrWords=[{'Name:u'aa','Num':u'11'}, {'Name:u'bb','Num':u'22'}],intActionId=99) W

Cannot install SOAPpy

2008-03-15 Thread shaq . koby
I installed SOAPpy on my server with Python 2.5. But now everytime I exit, I get the following error: Exception exceptions.AttributeError: '_shutdown' in ignored Here is the command line output: [EMAIL PROTECTED]:~$ python Python 2.5.1 (r251:54863, May 2 2007, 16:56:35) [GCC 4.1

Re: Adding a HTTP header to a SOAPpy request

2008-01-04 Thread r . grimm
On Jan 3, 5:43 pm, Matias Surdi <[EMAIL PROTECTED]> wrote: > Hi, > > Could anybody tell me which is the easier way to do a SOAP call to a web > service wich requires an http header to be present? > > I can't figure it out. > > Thanks a lot > > S

Adding a HTTP header to a SOAPpy request

2008-01-03 Thread Matias Surdi
Hi, Could anybody tell me which is the easier way to do a SOAP call to a web service wich requires an http header to be present? I can't figure it out. Thanks a lot Some code I'm using: import SOAPpy s = SOAPpy.SOAPProxy("http://10.3.5.128:10560/SERVICES",namespace=&

Re: Help Please - Need to make SOAPpy server multithreaded or handle problem some other way

2007-12-13 Thread sberry
On Dec 13, 12:38 pm, sberry <[EMAIL PROTECTED]> wrote: > I have a SOAP server running using SOAPpy. The problem I am having is > that it only handles a single request at a time. It needs to be able > to accept as many simultaneous requests as come in. > > What is the best wa

Help Please - Need to make SOAPpy server multithreaded or handle problem some other way

2007-12-13 Thread sberry
I have a SOAP server running using SOAPpy. The problem I am having is that it only handles a single request at a time. It needs to be able to accept as many simultaneous requests as come in. What is the best way to achieve this? I really appreciate any help here. -- http://mail.python.org

SOAPpy server shutting down?

2007-12-10 Thread sberry
I have a soap server I am running on an OS X Server using SOAPpy. To start the server I am running server = SOAPpy.SOAPServer(('IPADDRESS", PORT), namespace=NAMESPACE) server.serve_forever() I am starting the server manually in the background by running from the command line

Re: SOAPpy port reuse

2007-11-18 Thread Gabriel Genellina
En Sun, 18 Nov 2007 11:17:42 -0300, Maurice LING <[EMAIL PROTECTED]> escribi�: > Diez B. Roggisch wrote: >> Maurice LING schrieb: >>> My question is: How can I shutdown this server and reuse port 35021 >>> when my functionlist changes? >> >> Shutting down gracefully might speed up things I gues

Re: SOAPpy port reuse

2007-11-18 Thread Piet van Oostrum
>>>>> Maurice LING <[EMAIL PROTECTED]> (ML) wrote: >ML> Hi, >ML> I have a problem: >ML> 1. Assuming that my application is a SOAP server that uses SOAPpy, >ML> 2. I am given port 35021 for use. >ML> What I normally do (simply) is: &g

Re: SOAPpy port reuse

2007-11-18 Thread Maurice LING
Diez B. Roggisch wrote: > Maurice LING schrieb: >> Hi, >> >> I have a problem: >> >> 1. Assuming that my application is a SOAP server that uses SOAPpy, >> 2. I am given port 35021 for use. >> >> What I normally do (simply) is: >> >> f

Re: SOAPpy port reuse

2007-11-18 Thread Diez B. Roggisch
Maurice LING schrieb: > Hi, > > I have a problem: > > 1. Assuming that my application is a SOAP server that uses SOAPpy, > 2. I am given port 35021 for use. > > What I normally do (simply) is: > > functionlist = [] > import SOAPpy > server = SOAPpy

SOAPpy port reuse

2007-11-17 Thread Maurice LING
Hi, I have a problem: 1. Assuming that my application is a SOAP server that uses SOAPpy, 2. I am given port 35021 for use. What I normally do (simply) is: functionlist = [] import SOAPpy server = SOAPpy.SOAPServer((, 35021)) for func in functionlist: server.registerFunction(func

Re: SOAPpy / WSDL help... please

2007-10-30 Thread sberry
On Oct 30, 4:10 pm, sberry <[EMAIL PROTECTED]> wrote: > I have an Adobe InDesign server running that includes a built-in SOAP > server. The wsdl is located here:http://www.seanberry.com/IDSP.wsdl. > > I have a PHP example that looks like this for calling the SOAP > function runScriptParameters >

SOAPpy / WSDL help... please

2007-10-30 Thread sberry
e myVarName2myVarValue2 --- Now I am writing a client in Python and have tried the following: //-

Re: SOAPpy and ArrayOfKeyValue

2007-10-09 Thread Alex Ezell
list It's just a list of dictionaries with the actual words "key" and "value" as keys in the dictionary. I was making it much harder than it needed to be. SOAPpy is smart enough to handle the rest. Thanks SOAPpy! /alex On 10/9/07, Alex Ezell <[EMAIL PROTECTED]> wrote

SOAPpy and ArrayOfKeyValue

2007-10-09 Thread Alex Ezell
Can anyone offer any assistance as to how to convert a basic python dictionary, list, or even tuple into the SOAP type "ArrayOfKeyValue"? I am currently using SOAPpy, but would be willing to change to ZSI or something else if it made this conversion easier. I have tried with the arr

Re: SOAPpy Error

2007-09-24 Thread Steve Holden
linuxprog wrote: > linuxprog a écrit : [obscure soappy question] [...] >> wha's wrong ? >> >> Thanks >> > still no answer !? Four hours, and the Intarweb hasn't come up with the answer to your question?!?!?!?!?!?!?! I'd ask Al Gore for your

Re: SOAPpy Error

2007-09-24 Thread linuxprog
linuxprog a écrit : > hi all > > i'm building a webservice client with soappy > > when i send some informations it's returns an error > here is the informations that generates the error >var = SOAPpy.structType() >var._addItem("code", u"Xys

SOAPpy Error

2007-09-24 Thread linuxprog
hi all i'm building a webservice client with soappy when i send some informations it's returns an error here is the informations that generates the error var = SOAPpy.structType() var._addItem("code", u"XysZjd") var._addItem("value", 1) when i

Re: parsing response from SOAPpy request

2007-08-31 Thread Larry Bates
seancron wrote: > I'm using SOAPpy to access weather data from the NOAA National Digital > Forecast Database XML Web Service [1] and I've been having > trouble figuring out how to parse the data. > > The response comes back as XML document but when I check it with > t

parsing response from SOAPpy request

2007-08-31 Thread seancron
I'm using SOAPpy to access weather data from the NOAA National Digital Forecast Database XML Web Service [1] and I've been having trouble figuring out how to parse the data. The response comes back as XML document but when I check it with type(result) it shows the the response is a str

Re: Binary / SOAPpy

2007-06-08 Thread Tim Golden
Robert Rawlins - Think Blue wrote: > I have a WebService call which returns an array, the first element in > that array is the binary for a zip file, however I’m having trouble > writing that binary string into an actual file when it arrives, I’ve > tried the following method. > > Result = call

Binary / SOAPpy

2007-06-08 Thread Robert Rawlins - Think Blue
Hello Guys, I have a WebService call which returns an array, the first element in that array is the binary for a zip file, however I'm having trouble writing that binary string into an actual file when it arrives, I've tried the following method. Result = call to the webservice that returns

SOAPpy - send xml data

2007-05-23 Thread marcello . lussana
om/foo.asp?WSDL') print server.insertMessages(xmlRequest=xmldata) parsing the output I've got two problems, about the tag, that is the tag that contains my xml data: - soappy escape xmlRequest tag, in my output I've got _x_xmlRequest as xml is _x_ - I didn't find a wa

SOAPpy - send xml data

2007-05-23 Thread marcello lussana
stem.net/services/oeservice.asmx?WSDL') print server.insertMessages(xmlRequest=xmldata) parsing the output I've got two problems, about the tag, that is the tag that contains my xml data: - soappy escape xmlRequest tag, in my output I've got _x_xmlRequest as xml is _x_ - I didn't fi

SOAPpy My Class

2007-05-21 Thread Robert Rawlins - Think Blue
Hello Chaps, I've used SOAPpy in its very basic form for consuming web services on my web server, but I'm now looking to publish a web service from my application. Basically I'm looking to create a public 'proxy' of an object I have in the application. The idea being

Re: SOAPpy parameters in sequence

2007-05-07 Thread D Unit
y 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

SOAPpy parameters in sequence

2007-05-07 Thread D Unit
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

Re: wx and SOAPpy interaction

2007-04-17 Thread alf
Amaury Forgeot d'Arc wrote: > alf a écrit : > >> Hi, >> >> there is problem when I import (python 2.4) wx and SOAPpy at the same >> time. I narrowed the problem to following (on Linux): >> >> >>import wx >> >>import pyexpat

Re: wx and SOAPpy interaction

2007-04-14 Thread Amaury Forgeot d'Arc
alf a écrit : > Hi, > > there is problem when I import (python 2.4) wx and SOAPpy at the same > time. I narrowed the problem to following (on Linux): > > >>import wx > >>import pyexpat > > Traceback (most recent call last): > File "", lin

wx and SOAPpy interaction

2007-04-12 Thread alf
Hi, there is problem when I import (python 2.4) wx and SOAPpy at the same time. I narrowed the problem to following (on Linux): >>import wx >>import pyexpat Traceback (most recent call last): File "", line 1, in ? ImportError: /apps/public/python_2.4.4/lib/python2.4/

SOAPPY Install Issues

2007-04-11 Thread Robert Rawlins - Think Blue
Hi Guys, I've been trying hopelessly -ALL- afternoon to get python-xml and python-soappy working nicely, but for the -LIFE- of me I keep running into the same brick wall over and over. I'm running Debian and I've installed the latest stable builds of Python, Python-XML an

Re: Setting Up SOAPpy for Python v2.5 on Windows?

2007-03-14 Thread Waldemar Osuch
On Mar 14, 10:22 am, "Steve" <[EMAIL PROTECTED]> wrote: > All, > > Thanks for the suggestions! > > I think that I will move forward with elementsoap instead of soappy... > Maybe worth checking out the new kid on the block too: http://trac.optio.webfactional.com

Re: Setting Up SOAPpy for Python v2.5 on Windows?

2007-03-14 Thread Steve
All, Thanks for the suggestions! I think that I will move forward with elementsoap instead of soappy... Steve On Mar 13, 11:53 am, "Steve" <[EMAIL PROTECTED]> wrote: > Hi All, > > What are the required version of the SOAPpy, PyXML, fpconst that are > needed

Re: Setting Up SOAPpy for Python v2.5 on Windows?

2007-03-14 Thread Simon Brunning
On 13 Mar 2007 11:53:24 -0700, Steve <[EMAIL PROTECTED]> wrote: > What are the required version of the SOAPpy, PyXML, fpconst that are > needed to run under the Python 2.5 environment on Windows? SOAPpy doesn't install under Python 2.5 as-is. You'll need to add source cod

Re: Setting Up SOAPpy for Python v2.5 on Windows?

2007-03-13 Thread Steven Bethard
Steve wrote: > What are the required version of the SOAPpy, PyXML, fpconst that are > needed to run under the Python 2.5 environment on Windows? If you're not married to SOAPpy, you can use elementsoap which has just a single download and works with ElementTree from the 2.5 stdlib:

Setting Up SOAPpy for Python v2.5 on Windows?

2007-03-13 Thread Steve
Hi All, What are the required version of the SOAPpy, PyXML, fpconst that are needed to run under the Python 2.5 environment on Windows? Locations for the downloads? Thanks! Steve -- http://mail.python.org/mailman/listinfo/python-list

Re: SOAPpy and ArrayOfString

2007-01-21 Thread icius
Figured it out. This works: #!/usr/bin/python import SOAPpy wsdlFile = 'http://localhost:8080/axis/services/USD_R11_WebService?WSDL' server = SOAPpy.WSDL.Proxy(wsdlFile) server.soapproxy.config.dumpSOAPOut = 1 server.soapproxy.config.dumpSOAPIn = 1 SID = server.login('srvcde

SOAPpy and ArrayOfString

2007-01-21 Thread icius
Hello all, I am trying to use a web services API with Python and SOAPpy as a client. Some of the method paramters in this web service's WSDL are asking for an "ArrayOfString" type. Here is my code so far: #!/usr/bin/python from SOAPpy import WSDL wsdlFile = 'http:/

SOAPpy - Getting info about the __init__ method

2006-12-06 Thread Steve
Hi All, I have a Python script that uses SOAPpy and I'm outputting all of the methods and info about the parameters... I'm having trouble getting information out of the __init__ parameter. My code : from SOAPpy import WSDL def GetWebServicesMethods(url): # requires import : #f

Re: Help with installing soappy module on Python 2.4.3 (windows machine)

2006-11-08 Thread Chris Lambacher
On Tue, Nov 07, 2006 at 07:30:49AM -0800, [EMAIL PROTECTED] wrote: > Hi Folks, > > > I want to install the SOAPpy module on my windows box. I have python > 2.4.3 > > Can you help me with the steps and the URL from where can I get the > download..?? http://pywebsvcs.so

Help with installing soappy module on Python 2.4.3 (windows machine)

2006-11-07 Thread [EMAIL PROTECTED]
Hi Folks, I want to install the SOAPpy module on my windows box. I have python 2.4.3 Can you help me with the steps and the URL from where can I get the download..?? TIA. Regards, Asrarahmed -- http://mail.python.org/mailman/listinfo/python-list

Re: Python crashed when importing SOAPpy, printing out 'usage:copy source destination'

2006-10-28 Thread [EMAIL PROTECTED]
> import copy > >>> copy.__file__ > > I know, the copy module is imported by the SOAPpy module. But SOAPpy imported an un-proper one from the CWD. Thank you very much :) >Regards, >jiang.haiyun -- http://mail.python.org/mailman/listinfo/python-list

Re: Python crashed when importing SOAPpy, printing out 'usage:copy source destination'

2006-10-28 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > I still can't understand it. If i rename the 'copy.py' to 'a.py', > there will be no problem. hint: when it works, try typing the following into the interpreter: >>> import copy >>> copy.__file__ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python crashed when importing SOAPpy, printing out 'usage:copy source destination'

2006-10-28 Thread [EMAIL PROTECTED]
2006, 21:00:14) [GCC 3.4.2 [FreeBSD] 20040728] on freebsd5 Type "help", "copyright", "credits" or "license" for more information. >>> import SOAPpy usage:copy source destination haiyun# ls copy.py copy.pyc ## it seems tha

Re: Python crashed when importing SOAPpy, printing out 'usage:copy source destination'

2006-10-28 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > when i import SOAPpy, the python crashed and print out 'usage:copy > source destination'. > As follows: > > haiyun# python > Python 2.4.1 (#2, Mar 28 2006, 21:00:14) > [GCC 3.4.2 [FreeBSD] 20040728] on fre

Python crashed when importing SOAPpy, printing out 'usage:copy source destination'

2006-10-28 Thread [EMAIL PROTECTED]
Hello all, when i import SOAPpy, the python crashed and print out 'usage:copy source destination'. As follows: haiyun# python Python 2.4.1 (#2, Mar 28 2006, 21:00:14) [GCC 3.4.2 [FreeBSD] 20040728] on freebsd5 Type "help", "copyright", &

Re: SOAPpy and callback

2006-10-15 Thread fabien . benard
Ok guys, thanks for the lesson! I'm probably not going to try to implement this solution. However, I've learned a lot! -- http://mail.python.org/mailman/listinfo/python-list

Re: SOAPpy and callback

2006-10-14 Thread Paul McGuire
files that can be crunched to build implementation bindings for C#, Boo, Java, etc. (Unfortunately, not Python - there is some issue with SOAPpy that will not handle the input WSDL.) These bindings do model the remote interface bindings as objects, and stateful connections and sessions are ve

Re: SOAPpy and callback

2006-10-13 Thread Diez B. Roggisch
> I like your term "standard-wise". Although there is nothing in the SOAP > "standard" that prevents this architecture, it is probably open for > discussion whether it is "wise." Might stem from "standardweise", the german word for something that is part of a standard, or e.g. something always

Re: SOAPpy and callback

2006-10-13 Thread Paul McGuire
Hello, >>>> >>>> I'm trying to find how to use a callback in a SOAP client using SOAPpy. >>>> Does SOAPpy have to manage it, or does Python include some API to do >>>> it? >>> I've never seen any callback mentioned in SOAP. Are you

Re: SOAPpy and callback

2006-10-13 Thread Diez B. Roggisch
Paul McGuire schrieb: > "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >> [EMAIL PROTECTED] schrieb: >>> Hello, >>> >>> I'm trying to find how to use a callback in a SOAP client using SOAPpy. >>&

Re: SOAPpy and callback

2006-10-13 Thread Paul McGuire
"Diez B. Roggisch" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > [EMAIL PROTECTED] schrieb: >> Hello, >> >> I'm trying to find how to use a callback in a SOAP client using SOAPpy. >> Does SOAPpy have to manage it, or does Python i

Re: SOAPpy and callback

2006-10-13 Thread Diez B. Roggisch
[EMAIL PROTECTED] schrieb: > SOAP standard doesn't provide any callback, and it looks like SOAPpy > doesn't too. > I remember using callbacks with Javascript and SOAP in Web pages. I was > just wondering if there could be the same with Python. How that? I seriously doubt th

Re: SOAPpy and callback

2006-10-13 Thread fabien . benard
SOAP standard doesn't provide any callback, and it looks like SOAPpy doesn't too. I remember using callbacks with Javascript and SOAP in Web pages. I was just wondering if there could be the same with Python. Thanks for your answer. -- http://mail.python.org/mailman/listinfo/python-list

Re: SOAPpy and callback

2006-10-13 Thread Diez B. Roggisch
[EMAIL PROTECTED] schrieb: > Hello, > > I'm trying to find how to use a callback in a SOAP client using SOAPpy. > Does SOAPpy have to manage it, or does Python include some API to do > it? I've never seen any callback mentioned in SOAP. Are you sure this is possible wit

SOAPpy and callback

2006-10-12 Thread fabien . benard
Hello, I'm trying to find how to use a callback in a SOAP client using SOAPpy. Does SOAPpy have to manage it, or does Python include some API to do it? Thanks a lot. Fabien -- http://mail.python.org/mailman/listinfo/python-list

SOAPpy

2006-10-04 Thread Jonathan Morgan
Hi, I'm just started playing around with Python to trigger a method in a web service. I've been using SOAPpy and it's incredibly badly documented so i'm not getting very far. What I need to do is create the following in my SOAP body: http://www.

Need help with SOAPpy -- how to supply user credentials?

2006-09-04 Thread Roy Smith
I just got SOAPpy 0.11.6 running under Python 2.3.5. I can do some simple stuff like: from SOAPpy import WSDL wsdlFile = 'http://myserver/soap/XPlanner?wsdl' server = WSDL.Proxy(wsdlFile) print server.methods.keys() The problem is, this (not surprisingly) prompts for a username and p

Re: question about SOAPpy

2006-08-30 Thread Daniel O'Brien
estrictions on ints and longs. Besides, often with doc-lit services the type information is redundant. - SOAPpy attempts to reference redundant values, possibly for efficiency purposes. It does a poor job of this, often referencing the wrong IDs, or attempting to link values recursively (i.e. dies

question about SOAPpy

2006-08-29 Thread m.banaouas
Hello Pythoneers: I would like to ask you a simple question: Are you satisfied by SOAPpy module? Actually, I use this module since a year and i immediately found it very well-implemented, corresponding to dynamic "meta-data" discovering nature of SOAP/WSDL. BUT i read sometimes thre

SOAPpy question

2006-08-29 Thread Yusnel Rojas
hello ,I'm wondering if SOAPpy doesn't have something to generate a wsdl for a specific application.Let's say, I wrote a web service with SOAPpy, is there any way to generate the wsdl for it. If there aren't can someone give a little example of both. thanks -- http://mai

SOAPpy question

2006-08-28 Thread Yusnel Rojas
hello ,I'm wondering if SOAPpy doesn't have something to generate a wsdl for a specific application.Let's say, I wrote a web service with SOAPpy, is there any way to generate the wsdl for it.If there aren't can someone give a little example of both. thanks -- http://mai

SSL support in SOAPpy to build a SOAP server

2006-05-11 Thread [EMAIL PROTECTED]
Can some one get me started with a working SOAP server that works over https. (SSL)? I have M2Crypto installed and found the following sample, but something is wrong in ssl_context = SSL.Context() Any help or tutorial appreciated? from SOAPpy import SOAPServer from M2Crypto import

Re: need SOAPpy help

2006-03-22 Thread Ravi Teja
Did you read http://diveintopython.org/soap_web_services/index.html ? and specifically http://diveintopython.org/soap_web_services/introspection.html ? These docs are slightly dated but I doubt much has changed. If there is a problem, you can always try the older version from the site. -- http:/

need SOAPpy help

2006-03-22 Thread Sells, Fred
I've just been asked to do a soap client for some vendor software. I'm able to load the WSDL and discover the methods, but when I go to call a method it doesn't see it. I should be passing in a string that is named "testValue" I've been working from the soap de

Re: SOAPpy, WSDL and objects

2006-03-08 Thread Dieter Maurer
[EMAIL PROTECTED] writes on 7 Mar 2006 08:14:47 -0800: > > > FirstName > LastName > > > > I am trying to do this with the following code: > > from SOAPpy import WSDL > server = WSDL.Proxy(m_url) > request = {'firstname': Fir

SOAPpy, WSDL and objects

2006-03-07 Thread Bob . Capa
Hi, I am trying to access a webservice which needs a login request of the following form: FirstName LastName I am trying to do this with the following code: from SOAPpy import WSDL server = WSDL.Proxy(m_url) request = {'firstname': FirstName,

SOAPpy

2006-01-27 Thread Skink
hi, there is a soap service: http://waluty.k2.pl/ws/NBPRates.asmx the question is why when i call GetRateValue method i always get '0' result? >>> import SOAPpy >>> srv = SOAPpy.WSDL.Proxy("http://waluty.k2.pl/ws/NBPRates.asmx?WSDL";) >>> srv.Get

  1   2   >