from ExamplePage import ExamplePage class Forward(ExamplePage): def writeContent(self): trans = self.transaction() resp = self.response() resp.write("
This is the Forward servlet speaking. I am now" " going to include the output of the Welcome servlet" " via Application's includeURL() method:
") trans.application().includeURL(trans, 'Welcome.py')