Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 13533 invoked by uid 500); 18 Nov 2002 16:45:12 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 13524 invoked by uid 500); 18 Nov 2002 16:45:12 -0000 Delivered-To: apmail-xml-axis-wsif-cvs@apache.org Date: 18 Nov 2002 16:45:11 -0000 Message-ID: <20021118164511.83530.qmail@icarus.apache.org> From: antelder@apache.org To: xml-axis-wsif-cvs@apache.org Subject: cvs commit: xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apachesoap WSIFOperation_ApacheSOAP.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N antelder 2002/11/18 08:45:11 Modified: java/src/org/apache/wsif/providers/soap/apachesoap WSIFOperation_ApacheSOAP.java Log: Correct the order of setting the conext message properties in the transport for the SOAP provider. Revision Changes Path 1.31 +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.31 diff -u -r1.30 -r1.31 --- WSIFOperation_ApacheSOAP.java 24 Oct 2002 16:09:08 -0000 1.30 +++ WSIFOperation_ApacheSOAP.java 18 Nov 2002 16:45:11 -0000 1.31 @@ -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);