On Monday, July 11, 2011 3:10:57 PM UTC-4, Valter Foresto wrote: > When I run web2py and my app/controller inside a Python console I have all > the environment available ... but the web server is not running in the > background. > I think this is the difference with using web2py Web Shell.
The reason the Rocket web server is running when you use the web shell is that you access the web shell via the admin app, which requires a server to run. I don't think the web shell itself is simulating regular requests passed via the server -- it just allows you to execute statements in your app's environment (of course, the statements you enter and the output returned are submitted as requests through the admin app, but those are admin requests, not shell requests). > > I'm trying to interact from 'console' with a web2py running app/controller > ... but I'm not sure it is possible. Can you be more specific regarding what you are trying to achieve? Anthony

