scheu       2002/10/15 10:13:57

  Modified:    java/src/org/apache/axis/wsdl/symbolTable SymbolTable.java
  Log:
  minor NPE fix
  
  Revision  Changes    Path
  1.49      +2 -2      
xml-axis/java/src/org/apache/axis/wsdl/symbolTable/SymbolTable.java
  
  Index: SymbolTable.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/wsdl/symbolTable/SymbolTable.java,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- SymbolTable.java  10 Oct 2002 20:58:47 -0000      1.48
  +++ SymbolTable.java  15 Oct 2002 17:13:57 -0000      1.49
  @@ -1062,7 +1062,7 @@
   
           // Collect all the input parameters
           Input input = operation.getInput();
  -        if (input != null) {
  +        if (input != null && input.getMessage() != null) {
               getParametersFromParts(inputs,
                                      input.getMessage().getOrderedParts(null),
                                      literalInput,
  @@ -1072,7 +1072,7 @@
   
           // Collect all the output parameters
           Output output = operation.getOutput();
  -        if (output != null) {
  +        if (output != null && output.getMessage() != null) {
               getParametersFromParts(outputs,
                                      output.getMessage().getOrderedParts(null),
                                      literalOutput,
  
  
  


Reply via email to