Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Web transaction server in Python

Reply
Thread Tools

Web transaction server in Python

 
 
Philippe Martin
Guest
Posts: n/a
 
      06-29-2006
Hi,

I know a bit Python as application programming, but very little as a web
server.

I need to get one server to accept connection requests from many devices
(not all PC-Based) and then have a bi-lateral "conversation" with those
devices prior to closing the connection.

The said devices have at least a tcp-ip stack (socket level).

Is Zope something for me ? what else ?

Thanks,

Philippe

 
Reply With Quote
 
 
 
 
Dennis Lee Bieber
Guest
Posts: n/a
 
      06-29-2006
On Wed, 28 Jun 2006 21:02:47 -0500, Philippe Martin
<> declaimed the following in comp.lang.python:

> I need to get one server to accept connection requests from many devices
> (not all PC-Based) and then have a bi-lateral "conversation" with those
> devices prior to closing the connection.
>

Question 1: Are these requests HTTP? If not, then any "web server"
specific solution is not usable -- you need something lower level... a
generic server process (remember: telnet, ftp, nntp, smtp, pop3, etc.
are ALL server based protocols).

Also remember that pure HTTP is stateless -- the client specifies a
URL (page) and the server returns that page... at that point the
"interaction" is over. Anything that requires more than single
URL/response needs to add stuff like cookies in order to carry state
information.

> Is Zope something for me ? what else ?
>

Zope is a low-level webserver framework typically used as the root
of a Content Management system (CMF being one such, and CMF itself is
the basis of Plone). It is designed to handle things like "consistent"
presentation of content (snippets of news, etc.) along with login
control, and change management (author edits a news clip, submits,
"editor" reviews and either rejects it [send back to author] or
publishes [approves it] it... anonymous uses can only see published
content).

Given the vagueness of your requirements, I suspect Twisted may be
closer to something you could use.


> Thanks,
>
> Philippe

--
Wulfraed Dennis Lee Bieber KD6MOG

HTTP://wlfraed.home.netcom.com/
(Bestiaria Support Staff: web-)
HTTP://www.bestiaria.com/
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Win2003 SP1 error: "New transaction cannot enlist in the specified transaction coordinator" Vencz Istv?n ASP General 2 05-02-2005 05:53 AM
Microsoft Transaction Server =?Utf-8?B?TmFjaG8=?= MCSD 2 12-21-2004 12:12 AM
Re: How to Install Microsot Transaction Server in Win2k Pro or Server ajay MCSE 0 08-23-2003 07:09 PM
Re: How to Install Microsot Transaction Server in Win2k Pro or Server Roger Abell MCSE 0 08-21-2003 11:45 PM
Re: How to Install Microsot Transaction Server in Win2k Pro or Server Consultant MCSE 0 08-18-2003 09:56 PM



Advertisments