I’m pretty sure none of us have access to WAS. Thus, this is something you will need to dig into and debug. This LOOKS like the service is not returning a proper WSDL or the is junk before the WSDL or something. For the most part, CXF is just using an HttpURLConnection in this case. Thus, you could try a simple client that does something like:
HttpURLConnection connect = new URL(“http://…….?wsdl).openConnection(); InputStream ins = connect.getInputStream(); XMLInputFactory factory = XMLInputFactory.newInstance(); factory.setProperty(XMLInputFactory.IS_NAMESPACE_AWARE, true); XMLStreamReader r = factory.createXMLStreamReader(ins); //loop through to make sure we can parse while (r.hasNext()) { r.next(); } and then run that within the “client” applications container that is having issues and see what happens. Dan On Dec 16, 2013, at 5:43 AM, Shailendra Singh <[email protected]> wrote: > Hi, > > Please somebody respond if below issue is fixed in CXF and if so then in > which version it is fixed. > > 1. CXF-5444<https://issues.apache.org/jira/browse/CXF-5444> > > Issue on webservice call from a CXF application client(deployed on > WAS6.1/Jboss 5.1) to an application deployed on websphere 7.1 > > I am facing Issue on webservice call from a CXF application client(deployed > on Jboss 5.1) to an application deployed on websphere 7.1. > > SystemErr R Caused by: com.ctc.wstx.exc.WstxEOFException: Unexpected EOF in > prolog > at [row,col,system-id]: > [1,0,"http://ipaddress:port/xyzz/RequestStatusUpdateService?wsdl"] > > > Thanks and Regards, > Shailendra Singh > > > ________________________________ > -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
