473,386 Members | 1,715 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

xmlrpclib timeouts

Hello,

I'm using the xmlrpclib module to contact an XMLRPC
server that takes a long time to send results back. My
client timeouts.

The question is whether there is a way to have an
xmlrpclib client that never timeouts. I have been
searching for some code examples on how to do that,
but I could not find any in the xmlrpclib
documentation.

Thanks for any hints.

__________________________________
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster
http://search.yahoo.com

Jul 18 '05 #1
2 3266
"p2esp" <p2***@yahoo.com> wrote in message
news:ma*************************************@pytho n.org...
Hello,

I'm using the xmlrpclib module to contact an XMLRPC
server that takes a long time to send results back. My
client timeouts.

The question is whether there is a way to have an
xmlrpclib client that never timeouts. I have been
searching for some code examples on how to do that,
but I could not find any in the xmlrpclib
documentation.

Thanks for any hints.


"Client that never times out" is not a good idea, generally. Nothing in
life is certain, but even moreso in distributed systems. Timeouts are there
to protect you from all kinds of problem conditions (busy server, crashed
server, etc.). You really don't want your client to be in a position of
waiting for a response that is never going to come.

You are better off turning your synchronous "wait forever" client into an
asynchronous "wait for callback" client. Have your client create a listener
object, and pass a reference to this object as part of your long-running
method call. This allows the XMLRPC call to complete, since it is a brief
submission of work, instead of waiting for the work to complete. When the
server is finished, it uses the callback object to send the results back to
the client.

This does make things more complicated - the server has to save the callback
object so that it knows who to send the results to. The client is probably
going to be multithreaded, so that the client isn't blocked while waiting
for the response (although, given your initial design, this may not bother
you). AND, the server may have to do some exception recovery (or at least
logging), if the client has disconnected before it was able to send back
results.

Another alternative is the "job ticket" model. In this case, the client
calls the server just as you have it coded now, but the return value is some
form of job ticket, or job id. The client then uses this id to periodically
poll the server to see if the results are ready yet. Once the server
replies that results are ready, the client uses the job id as the argument
to a getResults() call on the server. This solution is simpler to code, but
may have implications for network loading (lots of extra polling messages,
as clients repeatedly check if their results are ready), and the server has
to handle the case of clients that disconnect and never pick up their
laundry, um, that is, results.

There are a number of good reference books about client/server programming.
One that I like is "Advanced CORBA Programming with C++" by Henning and
Vinoski. Although it uses CORBA and C++ as its implementation platform, so
you'll have to map the examples to Python and XMLRPC, the concepts are much
the same. And don't be too quick to skip the memory management
discussions - even though Python does its own memory management (in place of
C++'s new/delete model), it is easy to have distributed memory leaks between
client and server. (I have seen a Java memory leak happen this way, even
though Java uses a garbage collection memory management model too.) Another
good resource is Douglas Schmidt's set of web pages at Washington Univ of
St. Louis - see http://www.cs.wustl.edu/~schmidt/patterns.html for some
distributed system patterns papers.

Good luck - distributed systems can be nerve-wracking, but they are also
some of the really cool problems to solve.

-- Paul
Jul 18 '05 #2
p2esp <p2***@yahoo.com> wrote in message news:<ma*************************************@pyth on.org>...
Hello,

I'm using the xmlrpclib module to contact an XMLRPC
server that takes a long time to send results back. My
client timeouts.

The question is whether there is a way to have an
xmlrpclib client that never timeouts. I have been
searching for some code examples on how to do that,
but I could not find any in the xmlrpclib
documentation.

Thanks for any hints.


Hmm, I always thought that the XML-RPC client in the xmlrpclib
module was written already to do exactly that. Ie., it will block
until it gets a response. There is no timeout functionality within
it.

Is the server you are talking to within your own network, or are you
going through some sort of HTTP proxy either explicitly or
implicitly, or even some sort of router equipment that does special
things with HTTP requests. HTTP proxies often have timeouts
such that if a request takes too long to get back a response, it
will drop the connection. In other words, the problem may not be
with the XML-RPC client but some part of the intermediate network.

Also, what is the XML-RPC server written in? Could it perhaps be
dropping the connection if the server side code takes too long?
Jul 18 '05 #3

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

Similar topics

0
by: Larry | last post by:
I've had a production system running for a long time that uses xmlrpclib with timeoutsocket, and with my recent upgrade to 2.3 it's no longer able to use xmlrpclib with the xmlrpc servers I...
0
by: sashan | last post by:
Hi I'm having trouble using xmlrpclib. I register a function (or class) with the SimpleXMLRPCServer and initiate the server. I then create a ServerProxy object and connect to the xml-rpc...
1
by: Gabriel PASTOR | last post by:
I'm trying to send object using xmlrpclib, but it seems that classes inheriting from object cannot be marshalled. Here is an example: -------- server.py -------- import xmlrpclib,...
0
by: Alan Little | last post by:
I'm trying to write a generic weblog update notifier using xmlrpclib, starting with technorati. What I want to do is something like this : XML config file that would look like this: <server...
3
by: Rune Froysa | last post by:
Trying something like:: import xmlrpclib svr = xmlrpclib.Server("http://127.0.0.1:8000") svr.test("\x1btest") Failes on the server with:: xml.parsers.expat.ExpatError: not well-formed (invalid...
0
by: Willi Langenberger | last post by:
Hi! We have an application server (Zope) and make heavy use of xml-rpc. One problem arised, when we tried to return a zope.DateTime instance. xmlrpclib (naturally) knows nothing about...
5
by: Jonathan Ballet | last post by:
Hello, I have developped a XMLRPC server, which runs under Gnu/Linux with python2.3. This server receives method calls from Windows client. The server got some parameters which are string,...
2
by: squid | last post by:
First off, I'm a python neophyte, but I'm fairly experienced with Java, C and PHP. I've been trying to use the xmlrpclib to perform remote calls against a service, and it works nicely. However,...
0
by: Arno Stienen | last post by:
Perhaps I should be a bit more specific. When using this code to connect to a remote XML-RPC server (C++, xmlrpc++0.7 library): import xmlrpclib server =...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...

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.