Keith, can you explain this...? The soapAction really shouldn't be the output action server side. Cheers, David
On Mon, Apr 7, 2008 at 6:21 AM, <[EMAIL PROTECTED]> wrote: > Author: keithc > Date: Sun Apr 6 22:21:05 2008 > New Revision: 645377 > > URL: http://svn.apache.org/viewvc?rev=645377&view=rev > Log: > Fixing Axis2-3704 in trunk > > > Modified: > > webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java > > Modified: > webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java > URL: > http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java?rev=645377&r1=645376&r2=645377&view=diff > > ============================================================================== > --- > webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java > (original) > +++ > webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/WSDL11ToAxisServiceBuilder.java > Sun Apr 6 22:21:05 2008 > @@ -2340,10 +2340,7 @@ > axisBindingOperation > .setProperty(WSDL2Constants.ATTR_WSOAP_ACTION, > soapActionURI); > > axisBindingOperation.getAxisOperation().setSoapAction(soapActionURI); > - if (isServerSide) { > - > axisBindingOperation.getAxisOperation().setSoapAction(soapActionURI); > - } > - else { > + if (!isServerSide) { > > axisBindingOperation.getAxisOperation().setOutputAction(soapActionURI); > } > > @@ -2368,10 +2365,8 @@ > > if (soapAction != null && !soapAction.equals("")) { > > axisBindingOperation.setProperty(WSDL2Constants.ATTR_WSOAP_ACTION, > soapAction); > - if (isServerSide) { > - > axisBindingOperation.getAxisOperation().setSoapAction(soapAction); > - } > - else { > + > axisBindingOperation.getAxisOperation().setSoapAction(soapAction); > + if (!isServerSide) { > > axisBindingOperation.getAxisOperation().setOutputAction(soapAction); > } > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- David Illsley - IBM Web Services Development --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
