2 Replies Latest reply on Aug 17, 2011 8:49 AM by dhoyt

    CXF route endpoints are case sensitive

    dhoyt

      I created a simple CXF route (below).  I noticed that if I access it using http://localhost/MyService I can get to it, but if I try http://localhost/myservice, I get a 404.  Shouldn't the this be case insensitive?

       

      @Override

          public void configure() throws Exception

          {

              // Listen to the topic

              from(cxf://0.0.0.0/MyService" + //

                      "?portName=" + SERVICE_PORT + //

                      "&serviceName=" + SERVICE_NAME + //

                      "&wsdlURL=" + WSDL + //

                      "&dataFormat=PAYLOAD") //

       

              .to("activemq:topic:MemberUpdate");

      }

       

      Edited by: dhoyt on Aug 16, 2011 8:58 PM