473,804 Members | 3,745 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SOAP and XMLRPC

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.SOAPServ er(("localhost" , 8080))
server.register Function(sum)
server.serve_fo rever()


#client.py
import SOAPpy

server = SOAPpy.SOAPProx y("http://localhost:8080" )
print server.sum(5,6)

#This should print: 11

These programs work perfect. The thing is that I need to access the
server from VB (like does SOAPpy accessing google's services)

Many thanks

Daniel

Aug 15 '05 #1
12 2253
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 access the
server from VB (like does SOAPpy accessing google's services)

Many thanks

Daniel

A student whom I helped recently did a project on the various web service
protocols. Interoperabilit y for SOAP was not very good. XMLRPC was much better
and he got java -- python etc etc pretty easily.
--
Robin Becker

Aug 15 '05 #2
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.

Aug 15 '05 #3
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 Becker

Aug 15 '05 #4
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 vanished into the real world.

On the other hand there are resources available via Google eg

http://www.wwwcoder.com/main/parenti...8/default.aspx

--
Robin Becker

Aug 15 '05 #5
I'm looking for code under VB6 :(... I'm looking everywhere. I hope I
get luck.

Aug 15 '05 #6
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.

Aug 15 '05 #7
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 language. This is the wrong
forum to learn how to do that though. May I suggest that you
google for "visual basic xml-rpc client"
Aug 15 '05 #8
On Mon, 15 Aug 2005 20:04:55 +0200, Magnus Lycka <ly***@carmen.s e> 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 write an XML-RPC client in VB, it will work with
XML-RPC servers written in any language. This is the wrong
forum to learn how to do that though. May I suggest that you
google for "visual basic xml-rpc client"


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?

--
Email: zen19725 at zen dot co dot uk
Aug 16 '05 #9
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 that he tried though. Every time I tried to find info
about VB on the net, the discussions were on the "Hello World"
level...

Aug 16 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1838
by: glin | last post by:
Hi I am trying to integrate the xmlrpc server into a class, does anyone know how to get it working? test.html: <html> <head> <title>XMLRPC Test</title> <script src="jsolait/init.js"></script> <script src="jsolait/lib/urllib.js"></script> <script src="jsolait/lib/xml.js"></script>
0
1743
by: Juan Carlos CORUÑA | last post by:
Hello all, I'm trying to create a COM Server with an embedded xmlrpc server. Here is way it must work: - The client application (programmed with a COM capable language) instantiates my COM server (programmed with python). - The COM server must have a connect interface in order to let the client application process the xmlrpc request. - After executing a "serveforever" method on the COM server it begins
2
2855
by: Tomislav Lepusic | last post by:
Hello, I don't know if this is the right group (I'm more in Perl, know nothing about Python), so if you can help me thanks, if not, sorry to bother you. I'm working on my student project and I'm totally lost and don't have any idea how to continue, and the deadline is 1.9.2004. Please help, 'couse i'm loosing myself in this XML/SOAP/RPC/WSDL things......
15
6529
by: The Fumigator | last post by:
Hi. I want to be able to create a persistent connection between an XML-RPC client and server... i.e. I want to be able to login once, carry out a number of calls and then logout rather than send login info for every call. Is there a way to do this with the xml-rpc code in the standard library? Thanks in advance
3
2017
by: Johan Segernäs | last post by:
I'm put on building a system in Python and I haven't used either webservices, SOAP or Python so I'm a bit lost. This system will require callback functions, should I use Python thru Apache for this or build my own listening daemon? Use module for Apache or do I make some kind of CGI script in Python? Where do I start? What lib do I use for XML? SOAP? Webservices? Is there any nice project/tutorial for this so I can give it a taste...
3
2930
by: | last post by:
Whats the difference and what is standard?
3
1469
by: Mark Harrison | last post by:
So I'm investigating doing some SOAP work... Any concensus on what the best python libraries are for doing this? Too bad, xmlrpc is choking on our long longs. :-( Many TIA, Mark -- Mark Harrison
7
5015
by: tobiah | last post by:
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/
0
2753
by: Benjamin Grieshaber | last post by:
Hi, I´m on SuSE 9.3 with xmlrpc-c and xmlrpc-c-devel installed (ver. 0.9.10) I tried to compile php with xmlrpc support and got the following errors: ext/xmlrpc/.libs/xmlrpc-epi-php.o(.text+0x359): In function `set_zval_xmlrpc_type': /php-5.2.5/ext/xmlrpc/xmlrpc-epi-php.c:1313: undefined reference to `XMLRPC_CreateValueDateTime_ISO8601'
0
9584
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10337
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10082
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9160
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5525
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5654
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4301
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3822
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2995
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.