Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 68204 invoked from network); 17 Apr 2007 19:19:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Apr 2007 19:19:41 -0000 Received: (qmail 28058 invoked by uid 500); 17 Apr 2007 19:19:45 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 27984 invoked by uid 500); 17 Apr 2007 19:19:45 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 27973 invoked by uid 99); 17 Apr 2007 19:19:44 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Apr 2007 12:19:44 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [209.181.65.237] (HELO sun.savoirtech.com) (209.181.65.237) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 17 Apr 2007 12:19:37 -0700 Received: from [206.197.197.22] ([206.197.197.22]) (authenticated bits=0) by sun.savoirtech.com (8.13.8/8.13.8) with ESMTP id l3HJJF3w019242 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 17 Apr 2007 13:19:15 -0600 Message-ID: <46251DC4.4070002@apache.org> Date: Tue, 17 Apr 2007 13:19:32 -0600 From: Jeff Genender Reply-To: jgenender@apache.org Organization: Apache Geronimo User-Agent: Thunderbird 1.5.0.8 (Macintosh/20061025) MIME-Version: 1.0 To: dev@geronimo.apache.org Subject: Re: need help on Tomcat and EJB web services References: <47FE1AE3-29F6-40C5-B8E5-62FB398592BD@gmail.com> <6241CD4E-5A1F-4751-BAA9-16CF3241A80F@yahoo.com> <4624EDF5.3020408@apache.org> <462503B0.8070808@apache.org> <3B58B7E7-0EC5-4C08-A75D-1C693A896853@gmail.com> In-Reply-To: <3B58B7E7-0EC5-4C08-A75D-1C693A896853@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on sun.savoirtech.com X-Virus-Scanned: ClamAV 0.88.7/3110/Tue Apr 17 05:57:27 2007 on sun.savoirtech.com X-Virus-Status: Clean X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-104.0 required=5.6 tests=ALL_TRUSTED,AWL,BAYES_00, USER_IN_WHITELIST autolearn=failed version=3.1.8 Yup...thats a problem. Jeff Paul McMahan wrote: > On Apr 17, 2007, at 1:28 PM, Jeff Genender wrote: > >> Can you step through it and see where its occurring? We did a special >> >> trick with the DefaultSubject vlave IIRC that had to inject it before >> >> everything else. I recall we did something funky. If you can find >> >> where it occurs, I may be able to help you get around this ;-) >> Hopefully ;-) >> >> >> Jeff >> > > Bummer. Stepping through the CoyoteAdapter source I found that the > redirect occurs just before the first valve is called: > > // Parse and set Catalina and configuration specific > // request parameters > if (postParseRequest(req, request, res, response)) { > // Calling the container > connector.getContainer().getPipeline().getFirst().invoke(request, > response); > > > The redirect occurs during postParseRequest() > > Best wishes, > Paul