[ 
https://issues.apache.org/jira/browse/CXF-1717?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12619089#action_12619089
 ] 

Bill Simons commented on CXF-1717:
----------------------------------

Picked up the snapshot and the scheme, host and port number all are present.

The issue I'm now seeing is that if the CXFServlet is mapped to a url pattern 
that is not "/*", the mapped portion of the url is not present.

For example, in my web.xml file I have:
    <servlet-mapping>
        <servlet-name>CXFServlet</servlet-name>
        <url-pattern>/test/*</url-pattern>
    </servlet-mapping>

I now access my HelloWorld service on the url 
http://localhost:8080/test/helloWorld.  The value returned from 
.getAbsolutePath() is actually http://localhost:8080/helloWorld (/test is 
omitted).

Is that cause for re-opening this issue or entering a new one?


> URI returned by UriInfo.getAbsolutePath only contains relative portion of the 
> URI
> ---------------------------------------------------------------------------------
>
>                 Key: CXF-1717
>                 URL: https://issues.apache.org/jira/browse/CXF-1717
>             Project: CXF
>          Issue Type: Bug
>          Components: REST
>    Affects Versions: 2.1.1
>         Environment: Tomcat 6.x running on Windows XP and Java 1.6
>            Reporter: Bill Simons
>             Fix For: 2.1.2
>
>
> With a class like:
> @Path("/helloWorld")
> public class HelloWorldResource {
>     @Context
>     private UriInfo context;
>     
>     /** Creates a new instance of HelloWorldResource */
>     public HelloWorldResource() {
>     }
>     /**
>      * Retrieves representation of an instance of 
> helloworld.HelloWorldResource
>      * @return an instance of java.lang.String
>      */
>     @GET
>     @ProduceMime("text/plain")
>     public String getXml() {
>         return context.getAbsolutePath().toString();
>     }
> }
> The String returned by the context.getAbsolutePath().toString only contains 
> the path( /helloWorld )portion of the URI. It should contain the full URI 
> (http://localhost:8080/helloWorld).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to