Reginald Reed created CXF-5587:
----------------------------------
Summary: CXF version 2.2.9 is not recognising my url-pattern
Key: CXF-5587
URL: https://issues.apache.org/jira/browse/CXF-5587
Project: CXF
Issue Type: Bug
Environment: Windows 7, 32bit, IBM RAD 7.5.5.3
Reporter: Reginald Reed
We are trying to run our server locally on our PC using IBM RAD 7.5.5.3 under
Windows 7, 32Bit. When we use SoapUI to run our test, we get back the error:
Error 404: SRVE0190E: File not found: /service/NpiCrosswalk
the SoapUI url used was:
http://localhost:9080/premierproviderxwalk/services/NpiCrosswalk we verified
that (A) the port was correct (B) the context-root: premierproviderxwalk is
correct (C) The Servlet mapping /services/*
Is it a compatibility with CXF version 2.2.9 and WIndows 7?
<!-- START CXF Config -->
<servlet>
<servlet-name>CXFServlet</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
<init-param>
<description>Hides the listing of available services
when set to true.
It is considered a security risk to set this to false
(or leave it unset),
because a container should never give more information
to the client
than is necessary to function properly.</description>
<param-name>hide-service-list-page</param-name>
<param-value>true</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
<!-- END CXF Config -->
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)