[ https://issues.apache.org/jira/browse/CXF-1717?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12619021#action_12619021 ]
Bill Simons commented on CXF-1717: ---------------------------------- Thanks for the update. It doesn't look like the fix is in the latest maven snapshot (2.1.2-20080724.010135-4). Where can I get the code with the fix? When will the latest SNAPSHOT be posted? Thanks. > 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.