• 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

Service working but cannot see wsdl

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, I am able to see my service at http://localhost:8080/axis2/services/listServices. when i hit the service epr at http://localhost:8080/axis2/services/AuthService, it is working fine also. I tested the service by creating a post request via fiddler and getting a proper response back. That is all good. But i am wondering why can't i see the wsdl when i click on the following link from the listServices page: http://localhost:8080/axis2/services/AuthService?wsdl. I get this error


Original Exception:
Error Message: org.apache.axis2.AxisFault: Server does not have an epr for the wsdl epr==>http://localhost:8080/axis2/services/AuthService
Error Code: 500
Target Servlet: AxisServlet
Error Stack:
org.apache.axis2.AxisFault: Server does not have an epr for the wsdl epr==>http://localhost:8080/axis2/services/AuthService
at org.apache.axis2.description.AxisService.getLocationURI(AxisService.java:1515)
at org.apache.axis2.description.AxisService.setPortAddress(AxisService.java:1423)
at org.apache.axis2.description.AxisService.printDefinitionObject(AxisService.java:1024)
at org.apache.axis2.description.AxisService.printUserWSDL(AxisService.java:1058)
at org.apache.axis2.description.AxisService.printWSDL(AxisService.java:1332)


Appreciate any help! Thanks
 
Ranch Hand
Posts: 68
Netbeans IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think that is a server issue, you might get a reply faster by posting on a server related forum though you might find people here that know the server.

Error code 500 means that something has gone wrong server side while trying to process a legal request. Unfortunately error code 500 is not very specific.
reply
    Bookmark Topic Watch Topic
  • New Topic