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 sa...@apache.org on 2007/12/06 06:26:50 UTC

svn commit: r601619 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/POJODeployer.java

Author: sandakith
Date: Wed Dec  5 21:26:48 2007
New Revision: 601619

URL: http://svn.apache.org/viewvc?rev=601619&view=rev
Log:
Fixing the JAXWS and other deployments to include its default Message Receiver when its deployed as a POJO Service. 
The issue was that due to this part of the code that exits in the deployer it was always again swiched to the RPC MR.

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/POJODeployer.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/POJODeployer.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/POJODeployer.java?rev=601619&r1=601618&r2=601619&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/POJODeployer.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/deployment/POJODeployer.java Wed Dec  5 21:26:48 2007
@@ -269,8 +269,9 @@
                                   configCtx.getAxisConfiguration(),
                                   new ArrayList(),
                                   new ArrayList());
-            setMessageReceivers(axisService);
-
+            //Not needed at this case, the message receivers always set to RPC if this executes
+            //setMessageReceivers(axisService);
+            
         } catch (Exception e) {
             // Seems like the jax-ws jars missin in the class path .
             // lets tryu annogen



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