Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 31635 invoked by uid 500); 10 Jul 2002 14:04:36 -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 31618 invoked by uid 500); 10 Jul 2002 14:04:36 -0000 Delivered-To: apmail-xml-axis-wsif-cvs@apache.org Date: 10 Jul 2002 14:04:36 -0000 Message-ID: <20020710140436.7972.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/jms WSIFOperation_Jms.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N antelder 2002/07/10 07:04:35 Modified: java/src/org/apache/wsif/providers/jms WSIFOperation_Jms.java Log: Remove accidentally left in performance testing code Revision Changes Path 1.11 +1 -7 xml-axis-wsif/java/src/org/apache/wsif/providers/jms/WSIFOperation_Jms.java Index: WSIFOperation_Jms.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/jms/WSIFOperation_Jms.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- WSIFOperation_Jms.java 9 Jul 2002 12:02:33 -0000 1.10 +++ WSIFOperation_Jms.java 10 Jul 2002 14:04:35 -0000 1.11 @@ -94,7 +94,7 @@ import org.apache.wsif.wsdl.extensions.jms.JMSProperty; import org.apache.wsif.wsdl.extensions.jms.JMSPropertyValue; import org.apache.wsif.wsdl.extensions.jms.JMSAddress; -import performance.Monitor; + /** * WSIFOperation_Jms * @@ -175,7 +175,6 @@ WSIFMessage fault) throws WSIFException { Tr.entry(this, input, output, fault); - Monitor.start( "njms.executeRROp" ); if (!fieldJmsPort.supportsSync()) throw new WSIFException("synchronous operations not available"); @@ -193,11 +192,7 @@ // send the jms message String correlId = sendJmsMessage(input, jmsDest); - Monitor.pause( "njms.executeRROp" ); - Monitor.start( "njms.jms.external" ); javax.jms.Message response = jmsDest.receive(correlId); - Monitor.stop( "njms.jms.external" ); - Monitor.resume( "njms.executeRROp" ); receiveJmsMessage(response, output, fault, jmsDest); } catch (Exception ex) { @@ -215,7 +210,6 @@ ex); } - Monitor.stop( "njms.executeRROp" ); Tr.exit(true); return true; }