[
https://issues.apache.org/jira/browse/CXF-4281?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13268219#comment-13268219
]
Sergey Beryozkin commented on CXF-4281:
---------------------------------------
The following test works for me locally, we have few of tests like this one:
{code:java}
@Test
public void testFromEncodedDuplicateVar3() {
String expected = "http://localhost:8080/1/2/3/1";
URI uri = UriBuilder.fromPath("http://localhost:8080")
.path("/{a}/{b}/{c}/{a}")
.buildFromEncoded("1", "2", "3");
assertEquals(expected, uri.toString());
}
{code}
Can you get a breakpoint inside UriBuilderImpl.doPath(...) ? You should hit a
block specifically checking if a given path represents a URI and if yes then it
gelegates to a uri handler. May be also ping me on IRC ?
> uribuilder from null?
> ---------------------
>
> Key: CXF-4281
> URL: https://issues.apache.org/jira/browse/CXF-4281
> Project: CXF
> Issue Type: Bug
> Reporter: Romain Manni-Bucau
>
> in tomee/openejb we need to patch the uri builder to be able to satisfied
> some cases (UriBuilder.fromPath(null) for instance)
> here is the patched builder working for us:
> http://svn.apache.org/repos/asf/openejb/trunk/openejb/server/openejb-cxf-rs/src/main/java/org/apache/openejb/server/cxf/rs/OpenEJBRuntimeDelegateImpl.java
> any way to get it merged with cxf?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira