[
https://issues.apache.org/jira/browse/CXF-1717?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Bill Simons updated CXF-1717:
-----------------------------
Description:
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).
was:With a class like:
updated description... hit submit too early
> 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
>
> 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.