You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ax...@ws.apache.org on 2004/10/07 20:31:51 UTC

[jira] Commented: (AXIS-1595) Bug in generateWSDL() method.

The following comment has been added to this issue:

     Author: Davanum Srinivas
    Created: Thu, 7 Oct 2004 11:30 AM
       Body:
please post a stack trace.
---------------------------------------------------------------------
View this comment:
  http://issues.apache.org/jira/browse/AXIS-1595?page=comments#action_53815

---------------------------------------------------------------------
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 11:30 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