Re: SOAP and XMLRPC

2005-08-21 Thread Sybren Stuvel
phil hunt enlightened us with: > I thought it was the whole point of XMLRPC that the server can be > written in one language and the client in another. Am I wrong? It is, but not all SOAP libs really support the standard. Sybren -- The problem with the world is stupidity. Not saying there should

Re: SOAP and XMLRPC

2005-08-17 Thread Holger Duerer
> "Daniel" == dcrespo <[EMAIL PROTECTED]> writes: Daniel> Someone knows if is there possible to have a Python SOAP Daniel> or XMLRPC server that works with VB? Sure, why not? What have you tried that didn't work? Getting SOAP libraries to interoperate is often a pain but usually pos

Re: SOAP and XMLRPC

2005-08-17 Thread Adriaan Renting
import SOAPpy client = SOAPpy.SOAPProxy('http://localhost:80/Webservice') server = SOAPpy.SOAPServer(('localhost', 81), ) server.registerFunction(self.somefunction, 'urn:webservice') Adriaan Renting| Email: [EMAIL PROTECTED] ASTRON | Phone: +31 521 595 217 P.O. Bo

Re: SOAP and XMLRPC

2005-08-16 Thread Magnus Lycka
phil hunt wrote: > I thought it was the whole point of XMLRPC that the server can be > written in one language and the client in another. Yes. > Am I wrong? No. That's what I said. The OP wanted to write a VB client, and I don't think this is the forum for questions about that. I can understand

Re: SOAP and XMLRPC

2005-08-15 Thread phil hunt
On Mon, 15 Aug 2005 20:04:55 +0200, Magnus Lycka <[EMAIL PROTECTED]> wrote: >dcrespo wrote: >> Hi to all... >> Someone knows if is there possible to have a Python SOAP or XMLRPC >> server that works with VB? I would like you to include the examples >> clients and server programs. > >If you can writ

Re: SOAP and XMLRPC

2005-08-15 Thread Magnus Lycka
dcrespo wrote: > Hi to all... > Someone knows if is there possible to have a Python SOAP or XMLRPC > server that works with VB? I would like you to include the examples > clients and server programs. If you can write an XML-RPC client in VB, it will work with XML-RPC servers written in any languag

Re: SOAP and XMLRPC

2005-08-15 Thread jean-marc
why isn't this good? http://www.enappsys.com/backend.jsp Seems to be what you're looking for... (second entry of a googled 'xml-rpc visual basic' search!) JM PS Tell us why the refered *.dll don't do, so I won't refer to it again if it's of no value. -- http://mail.python.org/mailman/listinfo/p

Re: SOAP and XMLRPC

2005-08-15 Thread dcrespo
I'm looking for code under VB6 :(... I'm looking everywhere. I hope I get luck. -- http://mail.python.org/mailman/listinfo/python-list

Re: SOAP and XMLRPC

2005-08-15 Thread Robin Becker
Robin Becker wrote: > dcrespo wrote: > >>Hi... Thanks for your answer, but can you give me his contact or tell >>him to post here the answer I'm looking for? I'm needing it seriously. >> > > Well I'm not a VB person so perhaps you need to ask on a VB list. > Unfortunately > the student has vani

Re: SOAP and XMLRPC

2005-08-15 Thread Robin Becker
dcrespo wrote: > Hi... Thanks for your answer, but can you give me his contact or tell > him to post here the answer I'm looking for? I'm needing it seriously. > Well I'm not a VB person so perhaps you need to ask on a VB list. Unfortunately the student has vanished into the real world. -- Robin

Re: SOAP and XMLRPC

2005-08-15 Thread dcrespo
Hi... Thanks for your answer, but can you give me his contact or tell him to post here the answer I'm looking for? I'm needing it seriously. -- http://mail.python.org/mailman/listinfo/python-list

Re: SOAP and XMLRPC

2005-08-15 Thread Robin Becker
dcrespo wrote: > Hi to all... > Someone knows if is there possible to have a Python SOAP or XMLRPC > server that works with VB? I would like you to include the examples > clients and server programs. > > My examples are: > .. > > These programs work perfect. The thing is that I need to acces

SOAP and XMLRPC

2005-08-15 Thread dcrespo
Hi to all... Someone knows if is there possible to have a Python SOAP or XMLRPC server that works with VB? I would like you to include the examples clients and server programs. My examples are: #Server.py import SOAPpy def sum(x,y): return x+y server = SOAPpy.SOAPServer(("localhost", 8080))