Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 41286 invoked from network); 7 Oct 2004 17:40:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 7 Oct 2004 17:40:01 -0000 Received: (qmail 24838 invoked by uid 500); 7 Oct 2004 17:39:57 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 24633 invoked by uid 500); 7 Oct 2004 17:39:55 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 24624 invoked by uid 99); 7 Oct 2004 17:39:55 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [192.18.33.10] (HELO exchange.sun.com) (192.18.33.10) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 07 Oct 2004 10:39:54 -0700 Received: (qmail 21484 invoked from network); 7 Oct 2004 17:41:51 -0000 Received: from localhost (HELO nagoya) (127.0.0.1) by nagoya.betaversion.org with SMTP; 7 Oct 2004 17:41:51 -0000 Message-ID: <335699816.1097170911244.JavaMail.apache@nagoya> Date: Thu, 7 Oct 2004 10:41:51 -0700 (PDT) From: axis-dev@ws.apache.org To: axis-dev@ws.apache.org Subject: [jira] Created: (AXIS-1595) Bug in generateWSDL() method. Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Message: A new issue has been created in JIRA. --------------------------------------------------------------------- View the issue: http://issues.apache.org/jira/browse/AXIS-1595 Here is an overview of the issue: --------------------------------------------------------------------- Key: AXIS-1595 Summary: Bug in generateWSDL() method. Type: Bug Status: Unassigned Priority: Critical Project: Axis Components: WSDL processing Versions: 1.2RC1 Assignee: Reporter: Sergio Bossa Created: Thu, 7 Oct 2004 10:41 AM Updated: Thu, 7 Oct 2004 10:41 AM Environment: JDK 1.4.2_04-b05 Tomcat 5.0.19 / 5.0.25 Linux Description: When I override the generateWSDL() method in my handlers, in order to modify the automatically generated WSDL, I get a java.lang.reflect.InvocationTargetException caused by a java.lang.IncompatibleClassChangeError. This is a code snippet from my handler: public class RemoteWSDLHook extends BasicHandler { private Map wsdlCache; public void init() { super.init(); wsdlCache=Collections.synchronizedMap(new HashMap()); } public void invoke(MessageContext ctx) {} public void generateWSDL(MessageContext ctx) throws AxisFault { if (wsdlCache.containsKey(ctx.getService().getServiceDescription().getName())) ... ... The exception is thrown in the if clause. The same code works fine with Axis 1.1 version. --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira