[jboss-svn-commits] JBL Code SVN: r25049 - labs/jbossesb/branches/JBESB_4_4_GA_CP/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/wise.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Feb 2 07:09:58 EST 2009


Author: kevin.conner at jboss.com
Date: 2009-02-02 07:09:58 -0500 (Mon, 02 Feb 2009)
New Revision: 25049

Modified:
   labs/jbossesb/branches/JBESB_4_4_GA_CP/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/wise/SOAPClient.java
Log:
Force JBossWS metadata generation: JBESB-2328

Modified: labs/jbossesb/branches/JBESB_4_4_GA_CP/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/wise/SOAPClient.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_4_GA_CP/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/wise/SOAPClient.java	2009-02-02 10:57:53 UTC (rev 25048)
+++ labs/jbossesb/branches/JBESB_4_4_GA_CP/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/wise/SOAPClient.java	2009-02-02 12:09:58 UTC (rev 25049)
@@ -248,6 +248,10 @@
         } 
         catch (final WiseException e) 
         {
+            if (logger.isDebugEnabled())
+            {
+                logger.debug("Exception thrown from wsMethod invocation", e) ;
+            }
             throw new ActionProcessingException("Could not call method" + operationName, e);
         }
         return mapResponseToMessage(message, result, smooksResponseMapper);
@@ -265,6 +269,8 @@
             {
                 throw new ActionProcessingException(e.getMessage(), e);
             }
+            // Force endpoints to prevent JBossWS concurrency issues
+            getEndpoints(client) ;
         }
         return client;
     }




More information about the jboss-svn-commits mailing list