Re: [PythonCE] SimpleHTTPServer

2006-08-02 Thread Luke Dunstan
]>; Sent: Thursday, August 03, 2006 1:57 AM Subject: Re[2]: [PythonCE] SimpleHTTPServer > Hello, Luke Dunstan > > I'm using > Python 2.4.3 (#0, Apr 29 2006, 20:58:35)[MSC v.1201 32bit (Unknown)] on > Pocket PC > on iPAQ hx2110, Windows Mobile 2003 Second Edition, Versi

Re: [PythonCE] SimpleHTTPServer

2006-08-02 Thread Belyaev Dmitry
: "Belyaev Dmitry" <[EMAIL PROTECTED]> LD>> To: LD>> Sent: Tuesday, August 01, 2006 2:40 AM LD>> Subject: [PythonCE] SimpleHTTPServer LD>> LD>> LD>> >I tried to write simple http server on my PDA. LD>> > --

Re: [PythonCE] SimpleHTTPServer

2006-08-02 Thread Belyaev Dmitry
gt; LD> To: LD> Sent: Tuesday, August 01, 2006 2:40 AM LD> Subject: [PythonCE] SimpleHTTPServer LD> LD> LD> >I tried to write simple http server on my PDA. LD> > -- LD> > import SimpleHTTPServer as Handler LD> > import BaseHTT

Re: [PythonCE] SimpleHTTPServer

2006-08-02 Thread Luke Dunstan
- Original Message - From: "Belyaev Dmitry" <[EMAIL PROTECTED]> To: Sent: Tuesday, August 01, 2006 2:40 AM Subject: [PythonCE] SimpleHTTPServer >I tried to write simple http server on my PDA. > -- > import SimpleHTTPServer as Handle

Re: [PythonCE] SimpleHTTPServer

2006-08-02 Thread Belyaev Dmitry
Sorry, but your server failes with the error I described earlier. Did you try to use Internet Explorer on PDA to connect to your server? My opinion is that Internet Explorer on WinCE doesn't work like SimpleHTTPServer expects. Hello, Орехов Антон Ср, 02.08.2006 08:37:05 you wrote: ОА> See http:

[PythonCE] SimpleHTTPServer

2006-07-31 Thread Belyaev Dmitry
I tried to write simple http server on my PDA. -- import SimpleHTTPServer as Handler import BaseHTTPServer as Server h = Handler.SimpleHTTPRequestHandler s = Server.HTTPServer(('localhost', 80), h) s.serve_forever() -- It works on Desktop, bu