0

When routing to my webservice folder (localhost:8080/myproject) all i see is 404 error. Note : I have changed the server location , so now the main page of the apache server loads up ok. What may cause this problame?

Itzik Gili
  • 324
  • 3
  • 16
  • I assume you are expecting to see a listing of available services generated by CXF? Can you post your web.xml or web-fragment.xml? Specifically, what servlet-mapping are you using for your CXFServlet? – Patrick Oct 10 '13 at 21:41

1 Answers1

0

It might be due to you have configured different context root for your application than that of myproject. e.g. context root allows you to have different url than that of the actual folder name. Below link might help you to do that.

How to change context root of a dynamic web project in Eclipse?

Community
  • 1
  • 1