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 du...@apache.org on 2001/05/03 23:12:39 UTC

cvs commit: xml-axis/java/src/org/apache/axis/handlers RPCDispatchHandler.java

dug         01/05/03 14:12:38

  Modified:    java/src/org/apache/axis/handlers RPCDispatchHandler.java
  Log:
  Used the wrong method name variable
  
  Revision  Changes    Path
  1.32      +3 -1      xml-axis/java/src/org/apache/axis/handlers/RPCDispatchHandler.java
  
  Index: RPCDispatchHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/handlers/RPCDispatchHandler.java,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- RPCDispatchHandler.java	2001/05/02 23:19:20	1.31
  +++ RPCDispatchHandler.java	2001/05/03 21:12:35	1.32
  @@ -117,7 +117,9 @@
                                    "Service name=" + methodName,
                                  null, null );  // should they??
     
  -        Method       method = jc.getMethod(methodName, args.size());
  +        Debug.Print( 2, "mName: " + mName );
  +        Debug.Print( 2, "MethodName: " + methodName );
  +        Method       method = jc.getMethod(mName, args.size());
           if ( method == null )
             throw new AxisFault( "AxisServer.error", 
                                  "Method not found\n" +