----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

how does the html page know that it was displayed because of a doGet or 
doPost. can I alter this somewhere in the response portion so that it always 
thinks it was displayed because of doGet even though it is doPost sometimes?
Why I am asking this because in my doGet I show a blank form and when user 
enter data submit then with a doPost it process data and shows the next 
page; down the line if somebody clicks back button on the browser I want to 
have this page set so that it thinks it happned due to doGet(so that I will 
show a clear form) and not because of submit in form by doPost method; 
unless ofcourse if somebdy goes through clicking the sbumit button 
explicitly; any help will ge greatly appreciated

I tried noCache in response header but when somedy clicks back button on  
the browse eventhough it says cache expired user can click refresh and post 
from old data

basically i would like to have a clear form ONLY;  anytime user pressed back 
button; there should not be any way for the user to refresh and post data 
from the cache etc
Thanx
DPanda

>From: "Java Apache Users" <[EMAIL PROTECTED]>
>To: "Java Apache Users" <[EMAIL PROTECTED]>
>Subject: java-apache-users Digest #602 - 11/28/99
>Date: Sun, 28 Nov 1999 20:00:03 -0800
>
>----------------------------------------------------------------
>BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
>WHEN YOU POST, include all relevant version numbers, log files,
>and configuration files.  Don't make us guess your problem!!!
>----------------------------------------------------------------
>
>java-apache-users Digest #602 - Sunday, November 28, 1999
>
>   Re: JServ 1.1b3/mod_ssl
>           by "Stuart Fraser" <[EMAIL PROTECTED]>
>   RE: JServ 1.1b3/mod_ssl
>           by "Stuart Fraser" <[EMAIL PROTECTED]>
>   sorry guys
>           by "Stuart Fraser" <[EMAIL PROTECTED]>
>   Re: JServ 1.1b3/mod_ssl
>           by "Mike Engelhart" <[EMAIL PROTECTED]>
>
>
>----------------------------------------------------------------------
>
>Subject: Re: JServ 1.1b3/mod_ssl
>From: "Stuart Fraser" <[EMAIL PROTECTED]>
>Date: Mon, 29 Nov 1999 12:38:35 +1000
>
>You may have seen these two emails, but these are the most relevant to
>getting JServ ans SSL to work together.
>
>Stu..
>
>
>
>At 02:42  23/11/99 -0800, you wrote:
> >----------------------------------------------------------------
> >BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
> >WHEN YOU POST, include all relevant version numbers, log files,
> >and configuration files.  Don't make us guess your problem!!!
> >----------------------------------------------------------------
> >
> >on 11/23/99 2:31 PM, Mike Engelhart <[EMAIL PROTECTED]> wrote:
> >
> >> My thoughts exactly :-)
> >>
> >> Any idea what order of operations I need to do this to get both SSL and
> >> JServ statically compiled?  I tried it a few different ways and both
> >> configure scripts (ssl and jserv) work fine but when I try and run make 
>in
> >> the JServ source directory I get recursive errors (missing header
>files).  I
> >> also tried configuring apache first and then configuring ssl and jserv 
>and
> >> the same problem occurred.
> >>
> >> mike
> >
> >Note that I'm using the latest CVS of Apache JServ. I highly recommend 
>it.
> >Everything builds without errors on my systems.
> >
> >This is my apache build script:
> >
> >#!/bin/sh
> >
> >PRODUCT=/products/apache/src/apache_1.3.9
> >
> >cd $PRODUCT
> >
> >SSL_BASE=../openssl-0.9.4 \
> >RSA_BASE=../rsaref-2.0/local \
> >EAPI_MM=../mm-1.0.9 \
> >./configure \
> >"--with-layout=Apache" \
> >"--prefix=/products/apache/sol" \
> >"--includedir=/products/apache/sol/include/apache" \
> >"--enable-module=rewrite" \
> >"--enable-module=auth_dbm" \
> >"--enable-module=headers" \
> >"--enable-module=info" \
> >"--enable-module=log_agent" \
> >"--enable-module=log_referer" \
> >"--enable-module=mmap_static" \
> >"--enable-module=unique_id" \
> >"--activate-module=src/modules/auth_mysql/libauth_mysql.a" \
> >"--activate-module=src/modules/jserv/libjserv.a" \
> >"--activate-module=src/modules/php3/libphp3.a" \
> >"--activate-module=src/modules/ssl/libssl.a" \
> >"$@"
> >make install
> >
> >this is my jserv build script:
> >
> >#!/bin/sh
> >
> >PACKAGE=/products/jserv/src/ApacheJServ-1.1b3
> >
> >PREFIX=/products/jserv/sol
> >APACHE_SRC=../../../apache/src/apache_1.3.9
> >
> >CURR=`pwd`
> >
> >cd $PACKAGE
> >aclocal
> >automake
> >autoconf
> >
> >./configure \
> >--prefix=$PREFIX \
> >--with-apache-src=$APACHE_SRC \
> >--with-jdk-home=/usr/java1.2 \
> >--with-javac=/products/jikes/sol/bin/jikes \
> >--with-JSDK=/products/classes/jsdk/jsdk.jar \
> >--disable-debugging \
> >--enable-apache-config=no
> >
> >
> >
> >--
> >--------------------------------------------------------------
> >Please read the FAQ! <http://java.apache.org/faq/>
> >To subscribe:        [EMAIL PROTECTED]
> >To unsubscribe:      [EMAIL PROTECTED]
> >Archives and Other:  <http://java.apache.org/main/mail.html>
> >Problems?:           [EMAIL PROTECTED]
> >
> >
> >
>==================//==================
>Stuart Fraser
>Email: [EMAIL PROTECTED]
>Phone: +61 7 38127010
>==================//==================
>
>
>----------------------------------------------------------------------
>
>Subject: RE: JServ 1.1b3/mod_ssl
>From: "Stuart Fraser" <[EMAIL PROTECTED]>
>Date: Mon, 29 Nov 1999 12:38:52 +1000
>
>
>Second one..
>
>At 09:38  24/11/99 -0000, you wrote:
> >----------------------------------------------------------------
> >BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
> >WHEN YOU POST, include all relevant version numbers, log files,
> >and configuration files.  Don't make us guess your problem!!!
> >----------------------------------------------------------------
> >
> >It works if you don't use DSO - I got exactly the same error
> >as Mike did about the EAPI.  Doing the static compile using.
> >
> >./configure --prefix=/usr/local/jserv
> >            --with-apache-src=blah/apache_1.3.9(note: not the src dir -
> >misleading)
> >             --with-jdk-home=blah
> >             --with-jsdk=blah
> >make
> >make install
> >
> >And then into apache directory and type:
> >./config.status --active-module=src/modules/jserv/mod_jserv
> >make
> >make install
> >
> >By the way when I went to load apache up I got errors after this:
> >Syntax error in /usr/local/apache/conf/httpd.conf
> >Cannot add module via name 'mod_jserv': not in list of loaded modules
> >
> >To fix it I just changed the instance of  mod_jserv to mod_jserv.c in
> >httpd.conf.  Also make sure all your logs are accessible or your engine
> >will give major errors.
> >
> >Got this stuff going yesterday so it's fresh in my head and I'm still
> >on a buzz :)
> >
> >Dave Molloy
> >
> >
> >-----Original Message-----
> >From: [EMAIL PROTECTED]
> >[mailto:[EMAIL PROTECTED]]On Behalf Of jon *
> >Sent: Tuesday, November 23, 1999 9:36 PM
> >To: Java Apache Users
> >Subject: Re: JServ 1.1b3/mod_ssl
> >
> >
> >----------------------------------------------------------------
> >BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
> >WHEN YOU POST, include all relevant version numbers, log files,
> >and configuration files.  Don't make us guess your problem!!!
> >----------------------------------------------------------------
> >
> >on 11/23/99 1:21 PM, Mike Engelhart <[EMAIL PROTECTED]> wrote:
> >
> >> I completely deleted the old /usr/local/apache directory as well before 
>I
> >> tried building it again and still was getting that warning when I ran
> >> apache. I can try removing the apache_old directory but I'm not sure 
>why I
> >> would have to.
> >>
> >> mike
> >
> >How about this...don't use DSO. ;-)
> >
> >-jon
> >
> >
> >
> >--
> >--------------------------------------------------------------
> >Please read the FAQ! <http://java.apache.org/faq/>
> >To subscribe:        [EMAIL PROTECTED]
> >To unsubscribe:      [EMAIL PROTECTED]
> >Archives and Other:  <http://java.apache.org/main/mail.html>
> >Problems?:           [EMAIL PROTECTED]
> >
> >
> >
> >--
> >--------------------------------------------------------------
> >Please read the FAQ! <http://java.apache.org/faq/>
> >To subscribe:        [EMAIL PROTECTED]
> >To unsubscribe:      [EMAIL PROTECTED]
> >Archives and Other:  <http://java.apache.org/main/mail.html>
> >Problems?:           [EMAIL PROTECTED]
> >
> >
> >
>==================//==================
>Stuart Fraser
>Email: [EMAIL PROTECTED]
>Phone: +61 7 38127010
>==================//==================
>
>
>----------------------------------------------------------------------
>
>Subject: sorry guys
>From: "Stuart Fraser" <[EMAIL PROTECTED]>
>Date: Mon, 29 Nov 1999 12:42:00 +1000
>
>I tried to forward not reply to with these last two
>==================//==================
>Stuart Fraser
>Email: [EMAIL PROTECTED]
>Phone: +61 7 38127010
>==================//==================
>
>
>----------------------------------------------------------------------
>
>Subject: Re: JServ 1.1b3/mod_ssl
>From: "Mike Engelhart" <[EMAIL PROTECTED]>
>Date: Sun, 28 Nov 1999 21:10:51 -0600
>
>Stuart Fraser wrote:
>
> > You may have seen these two emails, but these are the most relevant to
> > getting JServ ans SSL to work together.
> >
> > Stu..
>Thanks - yeah, I got it working finally...
>
>mike
>
>
>----------------------------------------------------------------------
>End of java-apache-users Digest
>
>
>--
>--------------------------------------------------------------
>Please read the FAQ! <http://java.apache.org/faq/>
>To subscribe:        [EMAIL PROTECTED]
>To unsubscribe:      [EMAIL PROTECTED]
>Archives and Other:  <http
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com



--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to