• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error while trying to consume a WS:No SSL Configuration for endpoint https://localhost:9443/xxx

 
Ranch Hand
Posts: 64
Oracle Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, I've managed to migrate Web Service which was initially developed with METRO (Tomcat, MySQL and Netbeans) to JAXWS (Websphere, DB2 and RAD), Ive configured everything and now the source code is clean, I'm testing by now and I get the following error while running my client application to consume the Web Service, the stacktrace is the following:

Exception in thread "main" javax.xml.ws.WebServiceException: org.apache.axis2.AxisFault: WSWS7130E: No SSL Configuration for endpoint https://localhost:9443/xxx
at org.apache.axis2.jaxws.ExceptionFactory.createWebServiceException(ExceptionFactory.java:175)
at org.apache.axis2.jaxws.ExceptionFactory.makeWebServiceException(ExceptionFactory.java:70)
at org.apache.axis2.jaxws.ExceptionFactory.makeWebServiceException(ExceptionFactory.java:128)
at org.apache.axis2.jaxws.core.controller.impl.AxisInvocationController.execute(AxisInvocationController.java:572)
at org.apache.axis2.jaxws.core.controller.impl.AxisInvocationController.doInvoke(AxisInvocationController.java:123)
at org.apache.axis2.jaxws.core.controller.impl.InvocationControllerImpl.invoke(InvocationControllerImpl.java:93)
at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invokeSEIMethod(JAXWSProxyHandler.java:338)
at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invoke(JAXWSProxyHandler.java:159)
at $Proxy26.create(Unknown Source)
at org.busdox.transport.start.client.AccessPointClient.send(AccessPointClient.java:393)
at org.busdox.transport.start.client.AccessPointClient.send(AccessPointClient.java:134)
at org.busdox.transport.start.client.Main.testService(Main.java:288)
at org.busdox.transport.start.client.Main.SendMessageToAccessPointBypassLookup(Main.java:161)
at org.busdox.transport.start.client.Main.main(Main.java:109)
Caused by: org.apache.axis2.AxisFault: WSWS7130E: No SSL Configuration for endpoint https://localhost:9443/xxx
at com.ibm.ws.websvcs.transport.security.ConfigSSLProvider.getConfigFromDefaultSSLLoading(ConfigSSLProvider.java:317)
at com.ibm.ws.websvcs.transport.security.ConfigSSLProvider.getConfig(ConfigSSLProvider.java:158)
at com.ibm.ws.websvcs.transport.http.SetupSSLConfiguration$1.run(SetupSSLConfiguration.java:75)
at com.ibm.ws.security.util.AccessController.doPrivileged(AccessController.java:118)
at com.ibm.ws.websvcs.transport.http.SetupSSLConfiguration.setupEffectiveSSLConfiguration(SetupSSLConfiguration.java:73)
at com.ibm.ws.websvcs.transport.http.SOAPOverHTTPSender.setupHTTPConnection(SOAPOverHTTPSender.java:2055)
at com.ibm.ws.websvcs.transport.http.SOAPOverHTTPSender.<init>(SOAPOverHTTPSender.java:2020)
at com.ibm.ws.websvcs.transport.http.HTTPTransportSender.invoke(HTTPTransportSender.java:348)
at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:452)
at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:401)
at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:228)
at org.apache.axis2.client.OperationClient.execute(OperationClient.java:163)
at org.apache.axis2.jaxws.core.controller.impl.AxisInvocationController.execute(AxisInvocationController.java:567)

I beg for help, I will be really grateful if somebody could help me please, thanks in advance.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I know this post is oldie, but I have this problem, how do you solved it? any help is appreciated Thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic