You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by ash <ja...@gmail.com> on 2013/09/23 18:43:44 UTC

Re: javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Failed to create service.

Hi Glan / Freeman

I am getting similar error while accessing the webservice(digest auth
protected) through a java client. I am able to see the wsdl from browser but
when running the client I am getting below error.
Could you please assist ?

javax.xml.ws.WebServiceException:
org.apache.cxf.service.factory.ServiceConstructionException: Failed to
create service.
	at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:149)
	at
org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:97)
	at javax.xml.ws.Service.<init>(Unknown Source)
	at
biz.my.interfaces.ws.my.OrderNumber.OrderNumberService.<init>(OrderNumberService.java:41)
	at
com.wallstreetsystems.ws.clients.OrderNumberServiceJettyTest.testOrderNumberDigestSecurity(OrderNumberServiceJettyTest.java:109)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at junit.framework.TestCase.runTest(TestCase.java:164)
	at junit.framework.TestCase.runBare(TestCase.java:130)
	at junit.framework.TestResult$1.protect(TestResult.java:106)
	at junit.framework.TestResult.runProtected(TestResult.java:124)
	at junit.framework.TestResult.run(TestResult.java:109)
	at junit.framework.TestCase.run(TestCase.java:120)
	at junit.framework.TestSuite.runTest(TestSuite.java:230)
	at junit.framework.TestSuite.run(TestSuite.java:225)
	at
org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
	at
org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
	at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
	at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
	at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
	at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: org.apache.cxf.service.factory.ServiceConstructionException:
Failed to create service.
	at
org.apache.cxf.wsdl11.WSDLServiceFactory.<init>(WSDLServiceFactory.java:94)
	at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:203)
	at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:147)
	... 22 more
Caused by: javax.wsdl.WSDLException: WSDLException: faultCode=PARSER_ERROR:
Problem parsing 'http://localhost:5050/ws/OrderNumberService?wsdl'.:
java.net.ConnectException: Connection refused: connect
	at com.ibm.wsdl.xml.WSDLReaderImpl.getDocument(Unknown Source)
	at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
	at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
	at
org.apache.cxf.wsdl11.WSDLManagerImpl.loadDefinition(WSDLManagerImpl.java:244)
	at
org.apache.cxf.wsdl11.WSDLManagerImpl.getDefinition(WSDLManagerImpl.java:191)
	at
org.apache.cxf.wsdl11.WSDLServiceFactory.<init>(WSDLServiceFactory.java:92)
	... 24 more
Caused by: java.net.ConnectException: Connection refused: connect
	at java.net.PlainSocketImpl.socketConnect(Native Method)
	at java.net.PlainSocketImpl.doConnect(Unknown Source)
	at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
	at java.net.PlainSocketImpl.connect(Unknown Source)
	at java.net.SocksSocketImpl.connect(Unknown Source)
	at java.net.Socket.connect(Unknown Source)
	at java.net.Socket.connect(Unknown Source)
	at sun.net.NetworkClient.doConnect(Unknown Source)
	at sun.net.www.http.HttpClient.openServer(Unknown Source)
	at sun.net.www.http.HttpClient.openServer(Unknown Source)
	at sun.net.www.http.HttpClient.<init>(Unknown Source)
	at sun.net.www.http.HttpClient.New(Unknown Source)
	at sun.net.www.http.HttpClient.New(Unknown Source)
	at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown
Source)
	at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
	at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
	at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown
Source)
	at
com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity(Unknown
Source)
	at
com.sun.org.apache.xerces.internal.impl.XMLVersionDetector.determineDocVersion(Unknown
Source)
	at
com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown
Source)
	at
com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown
Source)
	at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown
Source)
	at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown
Source)
	at
com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unknown
Source)
	... 30 more




--
View this message in context: http://cxf.547215.n5.nabble.com/javax-xml-ws-WebServiceException-org-apache-cxf-service-factory-ServiceConstructionException-Failed--tp5678385p5734383.html
Sent from the cxf-user mailing list archive at Nabble.com.

Re: javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Failed to create service.

Posted by Manoj <mp...@gmail.com>.
It seems it is firewall problem. Use the dongle(Any other network other than
your office network). Problem will be solved.





RE: javax.xml.ws.WebServiceException: org.apache.cxf.service.factory.ServiceConstructionException: Failed to create service.

Posted by Andrei Shakirin <as...@talend.com>.
Hi,

Seems that the endpoint 'http://localhost:5050 from which you ask the wsdl is not active:

...
Problem parsing 'http://localhost:5050/ws/OrderNumberService?wsdl'.:
java.net.ConnectException: Connection refused: connect
..

Regards,
Andrei.

> -----Original Message-----
> From: ash [mailto:jainashwini@gmail.com]
> Sent: Montag, 23. September 2013 18:44
> To: users@cxf.apache.org
> Subject: Re: javax.xml.ws.WebServiceException:
> org.apache.cxf.service.factory.ServiceConstructionException: Failed to
> create service.
> 
> Hi Glan / Freeman
> 
> I am getting similar error while accessing the webservice(digest auth
> protected) through a java client. I am able to see the wsdl from browser but
> when running the client I am getting below error.
> Could you please assist ?
> 
> javax.xml.ws.WebServiceException:
> org.apache.cxf.service.factory.ServiceConstructionException: Failed to
> create service.
> 	at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:149)
> 	at
> org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.j
> ava:97)
> 	at javax.xml.ws.Service.<init>(Unknown Source)
> 	at
> biz.my.interfaces.ws.my.OrderNumber.OrderNumberService.<init>(OrderN
> umberService.java:41)
> 	at
> com.wallstreetsystems.ws.clients.OrderNumberServiceJettyTest.testOrderN
> umberDigestSecurity(OrderNumberServiceJettyTest.java:109)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
> Source)
> 	at java.lang.reflect.Method.invoke(Unknown Source)
> 	at junit.framework.TestCase.runTest(TestCase.java:164)
> 	at junit.framework.TestCase.runBare(TestCase.java:130)
> 	at junit.framework.TestResult$1.protect(TestResult.java:106)
> 	at junit.framework.TestResult.runProtected(TestResult.java:124)
> 	at junit.framework.TestResult.run(TestResult.java:109)
> 	at junit.framework.TestCase.run(TestCase.java:120)
> 	at junit.framework.TestSuite.runTest(TestSuite.java:230)
> 	at junit.framework.TestSuite.run(TestSuite.java:225)
> 	at
> org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3Te
> stReference.java:130)
> 	at
> org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38
> )
> 	at
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTe
> stRunner.java:467)
> 	at
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTe
> stRunner.java:683)
> 	at
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRun
> ner.java:390)
> 	at
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRu
> nner.java:197)
> Caused by: org.apache.cxf.service.factory.ServiceConstructionException:
> Failed to create service.
> 	at
> org.apache.cxf.wsdl11.WSDLServiceFactory.<init>(WSDLServiceFactory.java:
> 94)
> 	at
> org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:203)
> 	at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:147)
> 	... 22 more
> Caused by: javax.wsdl.WSDLException: WSDLException:
> faultCode=PARSER_ERROR:
> Problem parsing 'http://localhost:5050/ws/OrderNumberService?wsdl'.:
> java.net.ConnectException: Connection refused: connect
> 	at com.ibm.wsdl.xml.WSDLReaderImpl.getDocument(Unknown
> Source)
> 	at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
> 	at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
> 	at
> org.apache.cxf.wsdl11.WSDLManagerImpl.loadDefinition(WSDLManagerImpl
> .java:244)
> 	at
> org.apache.cxf.wsdl11.WSDLManagerImpl.getDefinition(WSDLManagerImpl.
> java:191)
> 	at
> org.apache.cxf.wsdl11.WSDLServiceFactory.<init>(WSDLServiceFactory.java:
> 92)
> 	... 24 more
> Caused by: java.net.ConnectException: Connection refused: connect
> 	at java.net.PlainSocketImpl.socketConnect(Native Method)
> 	at java.net.PlainSocketImpl.doConnect(Unknown Source)
> 	at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
> 	at java.net.PlainSocketImpl.connect(Unknown Source)
> 	at java.net.SocksSocketImpl.connect(Unknown Source)
> 	at java.net.Socket.connect(Unknown Source)
> 	at java.net.Socket.connect(Unknown Source)
> 	at sun.net.NetworkClient.doConnect(Unknown Source)
> 	at sun.net.www.http.HttpClient.openServer(Unknown Source)
> 	at sun.net.www.http.HttpClient.openServer(Unknown Source)
> 	at sun.net.www.http.HttpClient.<init>(Unknown Source)
> 	at sun.net.www.http.HttpClient.New(Unknown Source)
> 	at sun.net.www.http.HttpClient.New(Unknown Source)
> 	at
> sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknow
> n
> Source)
> 	at
> sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown
> Source)
> 	at
> sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
> 	at
> sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown
> Source)
> 	at
> com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentE
> ntity(Unknown
> Source)
> 	at
> com.sun.org.apache.xerces.internal.impl.XMLVersionDetector.determineDo
> cVersion(Unknown
> Source)
> 	at
> com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unk
> nown
> Source)
> 	at
> com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unk
> nown
> Source)
> 	at
> com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown
> Source)
> 	at
> com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown
> Source)
> 	at
> com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unkn
> own
> Source)
> 	... 30 more
> 
> 
> 
> 
> --
> View this message in context: http://cxf.547215.n5.nabble.com/javax-xml-
> ws-WebServiceException-org-apache-cxf-service-factory-
> ServiceConstructionException-Failed--tp5678385p5734383.html
> Sent from the cxf-user mailing list archive at Nabble.com.