Re: Running a second wsgi script from within the first wsgi script

2018-09-12 Thread tienrua
Actualy only one wsgi script can run(mean apache handler redirector), your server got "superhost.gr" name but this outer namespace(on apache.conf virtual server *:80), you need call local name for internal accessing. Replace "http://superhost.gr/clientele"; to ["http://127.0.0.1/clientele";, o

Re: (new try) - Running a second wsgi script from within the first wsgi script

2018-09-10 Thread Alister via Python-list
On Sun, 09 Sep 2018 18:47:49 -0700, Νίκος Βέργος wrote: > I have 3 wsgi scripts listening on 3 locations. What i'm trying to run > an wsgi script from within another wsgi script with the following > statement. > > page = 'clientele' > pdata = requests.get( 'http://superhost.gr/' + page ) > pdata