The simplexmlrpcserver tag has no wiki summary.
0
votes
3answers
82 views
QooxDoo FrontEnd + Python BackEnd ( SimpleXMLRPCServer) problems
I have tried Qooxdoo and I made a simple Python server with SimpleXMLRPCServer, with a Python test I get the data without problems, but can I get this data from Qooxdoo? I get lost, and I've searched ...
0
votes
1answer
46 views
Calling serve_forever on __init__ of a class that inherits from SimpleXMLRPCServer
Is this wrong?
from SimpleXMLRPCServer import SimpleXMLRPCServer
from random import randint
def TicTacServer(SimpleXMLRPCServer):
def __init__(self,host):
...
0
votes
1answer
220 views
How to get the output of XMLRPC server (Python 2.7.3)?
I got XMLRPC server/client from python website. When I run simple methods like pow(),add(),div() from Windows, the client gets the result correctly. However, when I run brocade() which gets the ...
3
votes
1answer
109 views
Injecting arbitrary code into a Python SimpleXMLRPC Server
In the python docs of python SimpleXMLRPC Server, it is mentioned:
Warning Enabling the allow_dotted_names option allows intruders to access your module’s global variables and may allow intruders to ...
0
votes
2answers
146 views
Python Multithreading XMLRPC server (?)
Basicly I want to run my xmlrpc server in separate thread or together with my other code, however, after server.serve_forever() there's no way that I can get my another code running after this ...
0
votes
1answer
151 views
Python's xmlrpc extremely slow: one second per call
I built an xml-rpc server in Python using SimpleXMLRPCServer, according to the example in the Python documentation. I'm calling it from a Python client on the same machine. The body of the server ...
0
votes
0answers
45 views
What does Jython need for SimpleXMLRPCServer to work?
I tried the first example from the python documentation for SimpleXMLRPCServer.
It works perfectly fine in python, but when I try it using jython I get the following
stacktrace:
Traceback (most ...
1
vote
1answer
203 views
python: httplib.CannotSendRequest when nesting threaded SimpleXMLRPCServers
I am intermittently receiving a httplib.CannotSendRequest exception when using a chain of SimpleXMLRPCServers that use the SocketServer.ThreadingMixin.
What I mean by 'chain' is the following:
I ...
0
votes
0answers
29 views
Returning xmlrpc_value in function parameter using xmlrpclib
I have encountered a strange problem in using xmlrpc library. I want to return a value of string from the function parameter. I have already tested other types of values such as xmlrpc_int or ...
0
votes
0answers
95 views
xmlrpc linking error in client program
I have a small problem in linking the xmlrpc client program. The server is configured correctly and running, waiting for the client request. I used this library, and here is a configuration guide.
...
0
votes
2answers
95 views
Python SimpleXMLRPC fails when starting from Crontab but not in local shell
I am really puzzled on this issue. I am using python's SimpleXMLRPC to provide services to a web application.
The problem is that when I start my xmlrpc server from the command line everything runs ...
0
votes
1answer
238 views
CORS XMLRPC via mimic.js
Scenario: I have a webpage that needs to make XMLRPC calls from Javascript, and uses mimic.js to do so. The XMLRPC server is written in python, based on SimpleXMLRPCServer.
When the webpage and the ...
2
votes
1answer
557 views
Python SimpleXMLRPCServer: get user IP and simple authentication
I am trying to make a very simple XML RPC Server with Python that provides basic authentication + ability to obtain the connected user's IP. Let's take the example provided in ...
0
votes
1answer
228 views
how to write python xml-rpc server-end code [closed]
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
174 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
117 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, ...
1
vote
1answer
267 views
XMLRPC c# client to python client - method does not exists
I've searched the web and seen the following question: XML-RPC C# and Python RPC Server
I'm trying for a while to do the same, but I fail. I get the exception "Method "HelloWorld" is not ...
1
vote
2answers
356 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 ...
3
votes
1answer
345 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 ...
0
votes
1answer
258 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 ...
3
votes
1answer
342 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 ...
0
votes
1answer
298 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 ...
1
vote
1answer
752 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, ...
0
votes
2answers
957 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):
...
4
votes
1answer
727 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
124 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>
...
2
votes
3answers
1k 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 ...
0
votes
1answer
285 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
611 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 = ...
1
vote
2answers
6k 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
434 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 = ...
2
votes
3answers
628 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 ...
2
votes
2answers
230 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)
...
3
votes
1answer
524 views
What could cause xmlrpclib.ResponseError: ResponseError()?
I am experimenting with XML-RPC.
I have the following server script (Python):
from SimpleXMLRPCServer import SimpleXMLRPCServer
server = SimpleXMLRPCServer(('localhost', 9000))
def ...
0
votes
1answer
638 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. ...
1
vote
1answer
1k 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 ...
2
votes
3answers
2k 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 ...
0
votes
1answer
249 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
327 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 ...
1
vote
1answer
2k 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, ...
9
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 = ...
