You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2007/04/25 21:35:14 UTC

svn commit: r532450 - /incubator/tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/binding/axis2/Axis2TargetInvoker.java

Author: slaws
Date: Wed Apr 25 12:35:13 2007
New Revision: 532450

URL: http://svn.apache.org/viewvc?view=rev&rev=532450
Log:
Add call to complete after operationClient has executed. The change to REUSE_HTTP_CLIENT (TUSCANY-1218) had an adverse affect on databinding itest casuing it to lock up on the third call to a service operation. Adding this call cleans up the relationship between the operationClient and the connection. 

Modified:
    incubator/tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/binding/axis2/Axis2TargetInvoker.java

Modified: incubator/tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/binding/axis2/Axis2TargetInvoker.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/binding/axis2/Axis2TargetInvoker.java?view=diff&rev=532450&r1=532449&r2=532450
==============================================================================
--- incubator/tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/binding/axis2/Axis2TargetInvoker.java (original)
+++ incubator/tuscany/java/sca/modules/binding-ws-axis2/src/main/java/org/apache/tuscany/binding/axis2/Axis2TargetInvoker.java Wed Apr 25 12:35:13 2007
@@ -74,6 +74,8 @@
             operationClient.execute(true);
 
             MessageContext responseMC = operationClient.getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE);
+            
+            operationClient.complete(requestMC);
 
             return responseMC.getEnvelope().getBody().getFirstElement();
 



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org