Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 18858 invoked from network); 29 Sep 2006 09:15:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 29 Sep 2006 09:15:08 -0000 Received: (qmail 59013 invoked by uid 500); 29 Sep 2006 09:15:05 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 58878 invoked by uid 500); 29 Sep 2006 09:15:04 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 58866 invoked by uid 500); 29 Sep 2006 09:15:03 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 58863 invoked by uid 99); 29 Sep 2006 09:15:03 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Sep 2006 02:15:03 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from [140.211.166.113] ([140.211.166.113:64515] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id E0/45-10102-114EC154 for ; Fri, 29 Sep 2006 02:14:57 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 22D0F1A984D; Fri, 29 Sep 2006 02:14:55 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r451183 - in /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description: OutInAxisOperation.java RobustOutOnlyAxisOperation.java Date: Fri, 29 Sep 2006 09:14:54 -0000 To: axis2-cvs@ws.apache.org From: pradine@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060929091455.22D0F1A984D@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: pradine Date: Fri Sep 29 02:14:53 2006 New Revision: 451183 URL: http://svn.apache.org/viewvc?view=rev&rev=451183 Log: Ensure that there are no faults on the client side due to the absence of a soapaction in response messages. Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/RobustOutOnlyAxisOperation.java Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java?view=diff&rev=451183&r1=451182&r2=451183 ============================================================================== --- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java (original) +++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java Fri Sep 29 02:14:53 2006 @@ -276,9 +276,6 @@ AxisEngine engine = new AxisEngine(cc); mc.getConfigurationContext().registerOperationContext(mc.getMessageID(), oc); engine.send(mc); - - // Options object reused so soapAction needs to be removed so - // that soapAction+wsa:Action on response don't conflict } else { if (block) { // Send the SOAP Message and receive a response Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/RobustOutOnlyAxisOperation.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/RobustOutOnlyAxisOperation.java?view=diff&rev=451183&r1=451182&r2=451183 ============================================================================== --- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/RobustOutOnlyAxisOperation.java (original) +++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/RobustOutOnlyAxisOperation.java Fri Sep 29 02:14:53 2006 @@ -77,6 +77,10 @@ responseMessageContext.setTransportIn(msgctx.getTransportIn()); responseMessageContext.setTransportOut(msgctx.getTransportOut()); + // Options object reused above so soapAction needs to be removed so + // that soapAction+wsa:Action on response don't conflict + responseMessageContext.setSoapAction(""); + SOAPEnvelope envelope = responseMessageContext.getEnvelope(); if (envelope == null) { // If request is REST we assume the responseMessageContext is REST, so --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org