Re: [Webware-discuss] continuations in web programming (Correct mail)

2005-01-08 Thread Enrique Arizón
Thanks for the link. Staying in touch with all the available python software and solutions around it is ussually the most difficult of the language ;) > > basically we back to procedural programming. :) > > the guys behind nevow[1] are writing a module > called wolf that allows this type of ap

Re: [Webware-discuss] continuations in web programming (Correct mail)

2005-01-06 Thread Enrique Arizón
I was thinking about an alternative design that works similar to the continuations usage but that (I think) is more intuitive from a software developer's point while keeping the same ideas. Basically it consist of developing what I call a "Web Virtual Machine". The WVM will consists of a set of

Re: [Webware-discuss] continuations in web programming

2005-01-05 Thread Enrique Arizón
--- Nick Murtagh <[EMAIL PROTECTED]> escribió: > Tom Schwaller wrote: > > and after reading > > > > http://www.ds9a.nl/webcoding.html > > > > even template engines seem questionable ;-) > > Interesting, I recently came across this: > > > http://www-106.ibm.com/developerworks/library/j-cont

Re: Re: [Webware-discuss] Session Riding

2004-12-22 Thread Enrique Arizón
> I assume you attach this number to the urls in the > final HTML response? > Passing it back as cookie is useless, AFAIS. > Of course, I send it back and for embedded in the form as a hidden input field, so I can't imagine a general way to use it in Webware (or any other framework) Regards!

Re: [Webware-discuss] Session Riding

2004-12-22 Thread Enrique Arizón
I use "sequence numbers" to avoid the problem. It's basically a similar solution to the "secrets" mentioned in the article. An increasing integer number is send back to client with every request. The client must put it back to the server with each new request. It has the added advantage (that was r

[Webware-discuss] Coding newcomer doubt [Correction]

2004-11-07 Thread Enrique Arizón
Where I wrote: self._fields I write: self._request._fields --- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best database on Linux. http://ads.o

[Webware-discuss] Coding newcomer doubt

2004-11-07 Thread Enrique Arizón
Hi, I'm new to Webware and practicing with my first lines of code. I would like to map HTTPRequest._fields keys names to some other values before forwarding to a new servlet so that I can make forms/servlets much more reusable. I think there is no problem with an micro-code like next one: def

Re: [Webware-discuss] Application monitoring

2004-11-06 Thread Enrique Arizón
Maybe you are also interested in some tool like HTTPUnit(http://httpunit.sourceforge.net/) that simulates a user browsing a Web. It has utilities to interpret the HTML server response, make assertions and even support for embedded JavaScript. So you can program it to test for things like: """ 1