Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 32121 invoked from network); 25 Oct 2007 09:12:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Oct 2007 09:12:59 -0000 Received: (qmail 1177 invoked by uid 500); 25 Oct 2007 09:12:46 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 1041 invoked by uid 500); 25 Oct 2007 09:12:45 -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 1030 invoked by uid 500); 25 Oct 2007 09:12:45 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 1027 invoked by uid 99); 25 Oct 2007 09:12:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Oct 2007 02:12:45 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Oct 2007 09:12:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 586861A9832; Thu, 25 Oct 2007 02:12:07 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r588172 - /webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/util/WSDLSerializationUtil.java Date: Thu, 25 Oct 2007 09:12:06 -0000 To: axis2-cvs@ws.apache.org From: keithc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071025091207.586861A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: keithc Date: Thu Oct 25 02:12:05 2007 New Revision: 588172 URL: http://svn.apache.org/viewvc?rev=588172&view=rev Log: Avoid inserting wsaw action when its empty Modified: webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/util/WSDLSerializationUtil.java Modified: webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/util/WSDLSerializationUtil.java URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/util/WSDLSerializationUtil.java?rev=588172&r1=588171&r2=588172&view=diff ============================================================================== --- webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/util/WSDLSerializationUtil.java (original) +++ webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/util/WSDLSerializationUtil.java Thu Oct 25 02:12:05 2007 @@ -421,7 +421,7 @@ public static void addWSAWActionAttribute(OMElement element, String action , OMNamespace wsaw) { - if (action == null || action.length() == 0) { + if (action == null || action.length() == 0 || "\\\"\\\"".equals(action)) { return; } element.addAttribute("Action", action, wsaw); --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org