> I have a problem. > servletName = 'myServlet.py' > self.application().forward(self.transaction(), servletName)
> works. > servletName = 'myServlet.py?myParam=maValue' > self.application().forward(self.transaction(), servletName) The problem gone. I only needed extra URL path in called servlet. self.application().forward(self.transaction(), servletName + self.transaction().request().extraURLPath()) Thanx to Webware/WebKit/Testing examples. -- JZ ------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
