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 2002/11/04 17:50:46 UTC

cvs commit: xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apachesoap WSIFOperation_ApacheSOAP.java

antelder    2002/11/04 08:50:45

  Modified:    java/src/org/apache/wsif/providers/soap/apacheaxis Tag:
                        pre1_2_0-patches WSIFOperation_ApacheAxis.java
               java/src/org/apache/wsif/providers/soap/apachesoap Tag:
                        pre1_2_0-patches WSIFOperation_ApacheSOAP.java
  Log:
  Correct the order the jms properties are set by properties defined in the wsif context message
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.28.2.1  +1 -2      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.28
  retrieving revision 1.28.2.1
  diff -u -r1.28 -r1.28.2.1
  --- WSIFOperation_ApacheAxis.java	24 Oct 2002 17:24:09 -0000	1.28
  +++ WSIFOperation_ApacheAxis.java	4 Nov 2002 16:50:45 -0000	1.28.2.1
  @@ -620,8 +620,6 @@
   			dest.setProperties(inJmsPropVals);
   		}
   
  -		setDestinationContext(dest); // TODO WSDL props override context???
  -
   		ArrayList objects = new ArrayList();
   		for (int i = 0; i < names.length; i++) {
   			Object obj;
  @@ -657,6 +655,7 @@
   			}
   		}
   
  +		setDestinationContext(dest);
   		setCallContext(call);
   		call.setSOAPActionURI(getSoapActionURI());
   
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.30.2.1  +2 -2      xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apachesoap/WSIFOperation_ApacheSOAP.java
  
  Index: WSIFOperation_ApacheSOAP.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apachesoap/WSIFOperation_ApacheSOAP.java,v
  retrieving revision 1.30
  retrieving revision 1.30.2.1
  diff -u -r1.30 -r1.30.2.1
  --- WSIFOperation_ApacheSOAP.java	24 Oct 2002 16:09:08 -0000	1.30
  +++ WSIFOperation_ApacheSOAP.java	4 Nov 2002 16:50:45 -0000	1.30.2.1
  @@ -601,8 +601,6 @@
               ((SOAPJMSConnection) st).setJmsProperties(inJmsPropVals);
   		}
   
  -        setTransportContext(st); // TODO WSDL props override context???
  -
           Vector params = new Vector();
           Object partInst;
           for (int i = 0; i < names.length; ++i) {
  @@ -646,6 +644,8 @@
           }
   
           call.setParams(params);
  +
  +        setTransportContext(st);
   
           setCallContext(call);