Re: SOAP Server with WSDL?

2006-12-08 Thread vasudevram
Ravi Teja wrote: tobiah wrote: Actually, do I have to make a WSDL? Do people hand write these, or are there tools? I don't really need to publish an interface. I just want some in house apps to communicate. Java and .NET based tools can auto-generate WSDL from code. Python does not

SOAP Server with WSDL?

2006-12-07 Thread tobiah
I'm having trouble finding information about writing a SOAP server. I get the client part. There is much information about writing a client, but not so much about writing the server. Are there some good tutorials? I'm checking out: http://pywebsvcs.sourceforge.net/ But I'm a little confused.

Re: SOAP Server with WSDL?

2006-12-07 Thread Chris Lambacher
On Thu, Dec 07, 2006 at 12:49:09PM -0800, tobiah wrote: I'm having trouble finding information about writing a SOAP server. I get the client part. There is much information about writing a client, but not so much about writing the server. Are there some good tutorials? I'm checking out:

Re: SOAP Server with WSDL?

2006-12-07 Thread tobiah
You want ZSI. If you already have a wsdl you then use wsdl2py and wsdl2dispatch to create your server classes. The server classes get used with ZSI.ServiceContainer. Unfortunately there is not much documentation about this. Actually, do I have to make a WSDL? Do people hand write

Re: SOAP Server with WSDL?

2006-12-07 Thread gagsl-py
On 7 dic, 18:52, tobiah [EMAIL PROTECTED] wrote: Actually, do I have to make a WSDL? Do people hand write these, or are there tools? I don't really need to publish an interface. I just want some in house apps to communicate. I can't figure out if I want SOAP, or CORBA, or would it just be

Re: SOAP Server with WSDL?

2006-12-07 Thread Chris Lambacher
On Thu, Dec 07, 2006 at 01:52:59PM -0800, tobiah wrote: You want ZSI. If you already have a wsdl you then use wsdl2py and wsdl2dispatch to create your server classes. The server classes get used with ZSI.ServiceContainer. Unfortunately there is not much documentation about this.

Re: SOAP Server with WSDL?

2006-12-07 Thread Diez B. Roggisch
I can't figure out if I want SOAP, or CORBA, or would it just be Unless you are talking to an existing CORBA interface, don't go there. Can't agree to that. CORBA is by far better than SOAP. And writing an IDL is actually a easy and straightforward thing to do - no tools needed, as when

Re: SOAP Server with WSDL?

2006-12-07 Thread Ravi Teja
tobiah wrote: Actually, do I have to make a WSDL? Do people hand write these, or are there tools? I don't really need to publish an interface. I just want some in house apps to communicate. Java and .NET based tools can auto-generate WSDL from code. Python does not have such because

SOAP server with WSDL?

2006-04-24 Thread Lonnie Princehouse
Does anyone know of a Python SOAP package that will publish a SOAP service /and/ generate a corresponding WSDL file? Looking at SOAPpy and ZSI, it seems that their WSDL support is limited to client-side stuff. -- http://mail.python.org/mailman/listinfo/python-list