On Monday, December 05, 2011 11:26:59 PM srinivas thallapalli wrote: > Hi Dan, > > Could you please let me know whether the attached project is sufficient to > reproduce the problem or any other inputs needed from my side?.
This is due to the fixes put in place for: https://issues.apache.org/jira/browse/CXF-2907 Basically, 2.4.2 is generating the correct code from what we're expecting it to generate for the defaults of the DynamicFactory. However, due to the bug in CXF-2907, the older version of CXF was not enabling the simple binding. You can turn off the use of the simple binding by doing: JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance(); dcf.setSimpleBindingEnabled(false); That should generate the old code. Dan > > Thanks > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/CXF-Client-issue-with-upgrade-from-CXF-2-2- > 7-to-2-4-2-tp4845738p5051272.html Sent from the cxf-user mailing list > archive at Nabble.com. -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
