On Dec 19, 1:41 pm, "PaulS" <[EMAIL PROTECTED]> wrote:
> Connecting to a Linux server from XP pc using a telnet program, I run a
> report and convert it to a pdf document(using Reportlab) which I need to
> display.  The pdf is on the Linux server. Ideas how to display to the pc
> would be appreciated. thanks, paul

Some ideas, none tested:

1) Use Python to download the document and from the Windows box, do an
os.startfile(path)
2) Use a Python web framework (such as Turbogears, Pylons or Django)
to display the pdf in the browser if acrobat is installed
3) If the pdf is only accessible from a machine on your local network,
than you can do #1 without downloading it if you have samba running.
I've opened PDFs on our Debian boxes like this:
os.startfile(r'\\server\path\to\pdf')

HTH

Mike
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to