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 an...@apache.org on 2003/01/02 11:30:03 UTC

cvs commit: xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis WSIFOperation_ApacheAxis.java

antelder    2003/01/02 02:30:03

  Modified:    java/src/org/apache/wsif/providers/soap/apacheaxis
                        WSIFOperation_ApacheAxis.java
  Log:
  Update deep() method to include all the instance variables
  
  Revision  Changes    Path
  1.52      +16 -3     xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFOperation_ApacheAxis.java
  
  Index: WSIFOperation_ApacheAxis.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFOperation_ApacheAxis.java,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- WSIFOperation_ApacheAxis.java	31 Dec 2002 14:25:27 -0000	1.51
  +++ WSIFOperation_ApacheAxis.java	2 Jan 2003 10:30:02 -0000	1.52
  @@ -2210,8 +2210,21 @@
   		StringBuffer buff = new StringBuffer();
   		try {
   			buff.append(super.toString()).append(":\n");
  -			buff.append("portInstance:").append(wsifPort);
  -			buff.append(" operation:").append(Trc.brief(portTypeOperation));
  +			buff.append("wsifPort:").append(wsifPort);
  +			buff.append(" portTypeOperation:").append(Trc.brief(portTypeOperation));
  +			buff.append(" bindingOperation:").append(bindingOperation);
  +			buff.append(" soapOperation:").append(soapOperation);
  +			buff.append(" operationStyle:").append(operationStyle);
  +			buff.append(" inputSOAPParts:").append(inputSOAPParts);
  +			buff.append(" inputUnwrappedSOAPParts:").append(inputUnwrappedSOAPParts);
  +			buff.append(" inputMIMEParts:").append(inputMIMEParts);
  +			buff.append(" inputSOAPHeader:").append(inputSOAPHeader);
  +			buff.append(" inputSOAPHeaderFault:").append(inputSOAPHeaderFault);
  +			buff.append(" outputSOAPParts:").append(outputSOAPParts);
  +			buff.append(" outputUnwrappedSOAPParts:").append(outputUnwrappedSOAPParts);
  +			buff.append(" outputMIMEParts:").append(outputMIMEParts);
  +			buff.append(" outputSOAPHeader:").append(outputSOAPHeader);
  +			buff.append(" outputSOAPHeaderFault:").append(outputSOAPHeaderFault);
   			buff.append(" inputEncodingStyle:").append(inputEncodingStyle);
   			buff.append(" inputNamespace:").append(inputNamespace);
   			buff.append(" actionUri:").append(soapActionURI);
  @@ -2230,4 +2243,4 @@
   		}
   		return buff.toString();
   	}
  -}
  \ No newline at end of file
  +}