The simplexmlrpcserver tag has no wiki summary.
7
votes
5answers
2k views
Using **kwargs with SimpleXMLRPCServer in python
I have a class that I wish to expose as a remote service using pythons SimpleXMLRPCServer. The server startup looks like this:
server = ...
3
votes
1answer
167 views
simpleXMLRPC server python
I have an issue with the simpleXMLRPC server.
I have a server in my program which can be reachable from another server. Let's call server the computer which has an instance of simpleXMLServer and ...
3
votes
1answer
162 views
SimpleXMLRPCServer request dispatching issue
We're developing client-server XML-RPC based application. Server part should know IP address of each client on per request basis.
To accomplish this we mix SocketServer.ThreadingMixIn into ...
1
vote
2answers
110 views
XML-RPC returning value before executing all function code
I have XML-RPC server:
import time
import xmlrpclib
from SimpleXMLRPCServer import SimpleXMLRPCServer
class Worker(object):
def start_work(self):
# is it possible do return value to ...
1
vote
1answer
305 views
How to fake a soap response in Python?
I am trying to test a function in company product. Our software will make a SOAP request like this:
Request Header
POST /testfunction.php HTTP/1.1
Accept: application/soap+xml, application/xml, ...
1
vote
1answer
324 views
How to see traceback on xmlrpc server, not client?
I have simple xmlrpc server code:
from SimpleXMLRPCServer import SimpleXMLRPCServer
port = 9999
def func():
print 'Hi!'
print x # error!
print 'Bye!'
if __name__ == '__main__':
...
1
vote
3answers
75 views
reading the first value using simplexml
I am using simplexml to read all the child nodes successfully. But how do I read the "NumCrds"?
<ACCOUNT NumCrds="1">
<ACCNO>some Bank</ACCNO>
<CURRCODE>CAD</CURRCODE>
...
1
vote
2answers
560 views
Non-valid Unicode/XML with Python SimpleXMLRPCServer?
I am getting the following error on the client side when I pass invalid XML characters to a Python SimpleXMLRPCServer:
Fault: <Fault 1: "<class 'xml.parsers.expat.ExpatError'>:not ...
1
vote
3answers
359 views
Combine SimpleXMLRPCServer and BaseHTTPRequestHandler in Python
Because cross-domain xmlrpc requests are not possible in JavaScript
I need to create a Python app which exposes both some HTML through HTTP and an XML-RPC service on the same domain.
Creating an HTTP ...
1
vote
1answer
747 views
SimpleXMLRPCServer, wxPython and Thread - Howto Stop?
Here is an example program that illustrates my problem. The program starts a wxPython application and starts a SimpleXMLRPCServer in a thread. This all works fine. My problem is that I can't shut ...
1
vote
3answers
756 views
IP address of client in Python SimpleXMLRPCServer?
I have a SimpleXMLRPCServer server (Python).
How can I get the IP address of the client in the request handler?
This information appears in the log. However, I am not sure how to access this ...
1
vote
1answer
1k views
Running SimpleXMLRPCServer in separate thread and shutting down
I have a class that I wish to test via SimpleXMLRPCServer in python. The way I have my unit test set up is that I create a new thread, and start SimpleXMLRPCServer in that. Then I run all the test, ...
0
votes
1answer
28 views
how to write python xml-rpc server-end code
client.py
import xmlrpclib
proxy = xmlrpclib.Server('http://localhost:9000')
print proxy.blogger.getUsersBlogs("23251","xx","xx")
server.py (not right)
#encoding=utf-8
#!/usr/bin/env python
from ...
0
votes
1answer
38 views
how to create the xml rpc server that handles xml rpc request in java?
In a java class,the Xml rpc webserver is listing to the client requests (by url like http://localhost:8056/) and the xml request is having multiple number of lines like
<methodCall>
...
0
votes
1answer
52 views
xml-rpc python doesn't print output
I'm trying to get an IBM tutorialworks example working but until now there hasn't been any luck
server:
import calendar, SimpleXMLRPCServer
#The server object
class Calendar:
def getMonth(self, ...
0
votes
1answer
120 views
How to handle multiple connections Abyss Server in XMLRPC - C++
The scenario is the next one:
I have a XMLRPC-C++ applcation, listening for connections on PORT=8081. It implements an Abyss Server, using the xmlrpc-c library as next:
xmlrpc_c::serverAbyss ...
0
votes
1answer
116 views
Client machine not able to connect with xmlrpc server, hosted on EC2 cloud Server
I have ubuntu instance on Ec2 cloud server and on same instance I have created xmlrpc server using simpleXMLRP. I'd like to access server methods from my local ubuntu machine.but when I tried to do ...
0
votes
2answers
166 views
Why can't xmlrpc client append item to list accessable via xmlrpc server procedure?
Server code (based on Python library reference):
from xmlrpc.server import SimpleXMLRPCServer
from xmlrpc.server import SimpleXMLRPCRequestHandler
class RequestHandler(SimpleXMLRPCRequestHandler):
...
0
votes
1answer
143 views
XMLRPC server compilation problem in linux
CC -Wall -g `xmlrpc-c-config client abyss-server --cflags` `xmlrpc-c-config client abyss-server --libs` xmlrpc_sample_add_server.c -o xmlrpc_sample_add_server
above is command line command I ...
0
votes
1answer
354 views
AS3 RemoteObject with XMLRPC Python Server : “NetConnection.Call.BadVersion” problem
I want to use XMLRPC mechanism between my Flex app and my XMLRPC Python Server.
My server :
class ServerMockUp(SimpleXMLRPCRequestHandler):
# Services path declaration
rpc_paths = ()
myServer = ...
0
votes
2answers
1k views
I want to ignore certificate verification, where and how to do it with XMLRPC web service?
I am accessing a web service and getting this error when trying to connect( web service is XMLRPC and I am using wordpress xmlrpc source code for request and handling repsonse):
Error ...
0
votes
1answer
297 views
How to get IP when using SimpleXMLRPCDispatcher in Django
Having a code inspired from http://code.djangoproject.com/wiki/XML-RPC :
from SimpleXMLRPCServer import SimpleXMLRPCDispatcher
from django.http import HttpResponse
dispatcher = ...
0
votes
2answers
124 views
SimpleXmlRpcServer _sock.rcv freezes after thousands of requests
I'm serving requests from several XMLRPC clients over WAN. The thing works great for, let's say, a period of one day (sometimes two), then freezes in socket.py:
data = self._sock.recv(self._rbufsize)
...
0
votes
1answer
472 views
How to debug Apache XML-RPC client with Python server
I am writing xmlrpc codes to communicate between Apache XML-RPC client and a Python SimpleXMLRPCServer. I have difficulty debugging it, because I can't find a way to see the request XML/response XML. ...
0
votes
1answer
133 views
can SimpleXMLRPCServer listen on multiple addresses?
I have two IPs mapping to the machine, and I was wondering how I can have one python xmlrpc server listening on both IPs (same port), like you could do with Apache.
Thank you,
0
votes
1answer
256 views
Sending an exception on the SimpleXMLRPCServer
I'm trying to raise an exception on the Server Side of an SimpleXMLRPCServer; however, all attempts get a "Fault 1" exception on the client side.
RPC_Server.AbortTest()
File ...