Re: java servlets, jsp and python

2010-05-11 Thread Pid
légalement obligatoire. Étant donné que les email > peuvent facilement être sujets à la manipulation, nous ne pouvons accepter > aucune responsabilité pour le contenu fourni. > > > > > >> Date: Tue, 11 May 2010 13:20:02 +0200 >> Subject: Re: java servlets,

RE: java servlets, jsp and python

2010-05-11 Thread Martin Gainty
accepter aucune responsabilité pour le contenu fourni. > Date: Tue, 11 May 2010 13:20:02 +0200 > Subject: Re: java servlets, jsp and python > From: silvio.tscha...@googlemail.com > To: users@tomcat.apache.org > > I have searched for jython and implemented some examples ho

Re: java servlets, jsp and python

2010-05-11 Thread Konstantin Kolinko
2010/5/11 anoop singh khimani : > how to unsubscribe this mailing list?? > http://tomcat.apache.org/lists.html#tomcat-users 1. Send a short e-mail to users-unsubscr...@tomcat.apache.org Make sure, that the mail has a subject and non-empty body, so that it is not rejected by spam filter. 2. A confi

Re: java servlets, jsp and python

2010-05-11 Thread anoop singh khimani
how to unsubscribe this mailing list?? On Tue, May 11, 2010 at 4:50 PM, Silvio Tschapke < silvio.tscha...@googlemail.com> wrote: > I have searched for jython and implemented some examples how to access > jython code from java classes (e.g. with the ObjectFactory Pattern). > Everything works fine

Re: java servlets, jsp and python

2010-05-11 Thread Silvio Tschapke
I have searched for jython and implemented some examples how to access jython code from java classes (e.g. with the ObjectFactory Pattern). Everything works fine outside the server. But if I create a Dynamic Web Project to access jython code from a java servlet, eclipse cannot find the org.python.u

RE: java servlets, jsp and python

2010-05-05 Thread Martin Gainty
you can implement a Jython (Python for Java) solution http://www.jython.org/ Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger se

Re: java servlets, jsp and python

2010-05-05 Thread Xie Xiaodong
Hello, Maybe you could google about Jython for some hint. On Wed, May 5, 2010 at 6:50 PM, Silvio Tschapke < silvio.tscha...@googlemail.com> wrote: > Hi all, > > I am new to Web-Programming and maybe my question is trivial. I want to > build a dynamic webpage and want to use a python script with

Re: Java servlets

2007-08-29 Thread samk
See Thread at: http://www.techienuggets.com/Detail?tx=11489 Posted on behalf of a User Hi see this for an explanation: http://www.techienuggets.com/Detail?tx=24 In Response To: Hi all, This is not a question specific to tomcat but more about servlets. I am using a dispatcher forward t

Re: Java servlets

2007-08-29 Thread David Smith
Well... has anything been written to the response before the forward? If so, that'll do it. If what you really want is to include the output of various servlets and jsps in one response, you really need an aggrigator servlet that pulls together the output of various servlets. In jsp land, th

Re: Java servlets

2007-08-29 Thread Glenn McCall
In a nutshell, once you forward you should ensure nothing else is sent to the output. Similarly once you start outputing a page, don't change your mind and forward. Thus your code should look something like this: if (errorMessage != null) { response.sendRedirect (request.get