Question involving a Python app...

2007-08-31 Thread sberry
I am a Flash developer (also a Python dev) and I use an editor called SEPY Actionscript Editor. The latest release version does not support Flash CS3, so I downloaded the source from subversion, edited it, and recompiled to get a version that worked with CS3. Right now, in order to run the progra

Re: Question involving a Python app...

2007-08-31 Thread sberry
On Aug 31, 8:25 am, [EMAIL PROTECTED] wrote: > On Aug 31, 9:52 am, sberry <[EMAIL PROTECTED]> wrote: > > > > > I am a Flash developer (also a Python dev) and I use an editor called > > SEPY Actionscript Editor. The latest release version does not support > > F

Re: Question involving a Python app...

2007-08-31 Thread sberry
On Aug 31, 8:43 am, sberry <[EMAIL PROTECTED]> wrote: > On Aug 31, 8:25 am, [EMAIL PROTECTED] wrote: > > > > > On Aug 31, 9:52 am, sberry <[EMAIL PROTECTED]> wrote: > > > > I am a Flash developer (also a Python dev) and I use an editor called > >

SOAPpy / WSDL help... please

2007-10-30 Thread sberry
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 //--

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 > functio

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 as follows: ./mySOAPS

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/mai

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