On Oct 9, 2012, at 1:38 PM, sachin2713 <[email protected]> wrote:
> Hi Glen, > > I debugged the CXF code and found out the cause. > > As CXF 2.4 ( SoapTransportFactory class) only supposrts below namespaces. > > "http://schemas.xmlsoap.org/wsdl/soap/" > "http://schemas.xmlsoap.org/wsdl/http" > "http://schemas.xmlsoap.org/wsdl/soap/http" > "http://schemas.xmlsoap.org/wsdl/soap/http/" > "http://schemas.xmlsoap.org/wsdl/http/". > > But i have http://schemas.xmlsoap.org/soap/http/ namespace in my wsdl > binding , hence no match found, causing recursion. > Is this namespace not supported by CXF?? It's not really a valid namespace. The proper string should be http://schemas.xmlsoap.org/soap/http (without the trailing slash). You should find where you are setting that and get that updated. That said, it shouldn't stack overflow. Dan > > > > -- > View this message in context: > http://cxf.547215.n5.nabble.com/StackOverflowError-while-creating-webservices-tp5716168p5716186.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
