Issues with Attachments: week of 2017-10-16
CXF - Monday, October 16, 2017 3 Issues with Attachments (sorted oldest to newest) [CXF-7521] API changes review for CXF - Created: 2017-09-28 - Updated: 2017-09-28 - Type: Test - Fix Versions: [] - Reporter: Andrey Ponomarenko - Assigned: Unassigned - Attachments: [CXF-Report-1.png, CXF-Report-2.png] - https://issues.apache.org/jira/browse/CXF-7521 [CXF-7523] JaxWsDynamicClientFactory loads WSDL generated POJO's in classpath only "once" - Created: 2017-10-03 - Updated: 2017-10-09 - Type: Bug - Fix Versions: [] - Reporter: Sumeet Mahajan - Assigned: Unassigned - Attachments: [DataImportUtility.wsdl] - https://issues.apache.org/jira/browse/CXF-7523 [CXF-7527] JAXRS UriInfo.getMatchedUris does return matched URIs twice for sub resources - Created: 2017-10-10 - Updated: 2017-10-10 - Type: Bug - Fix Versions: [] - Reporter: Lenoire - Assigned: Unassigned - Attachments: [uriinfo-issues.jar] - https://issues.apache.org/jira/browse/CXF-7527
[jira] [Commented] (CXF-7510) SSE integration in CDI abruptly fails with no indication why
[ https://issues.apache.org/jira/browse/CXF-7510?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16206874#comment-16206874 ] John D. Ament commented on CXF-7510: I made the changes noted here (mostly just adding {{SseTransportCustomizationExtension}} as a bean to the JAR. Unfortunately I still see the atmosphere bootstrap issue. > SSE integration in CDI abruptly fails with no indication why > > > Key: CXF-7510 > URL: https://issues.apache.org/jira/browse/CXF-7510 > Project: CXF > Issue Type: Bug >Reporter: John D. Ament >Assignee: Andriy Redko > > https://lists.apache.org/thread.html/10d99c0d013a3d23361a3898171e7bd2b311a509349433db3b6cacaa@%3Cusers.cxf.apache.org%3E > has more details > Intermittently, when bootstrapping CXF + CDI, the integration for SSE will > fail. When it fails, there's no log messages indicating the issue, however > attempts to invoke any rest endpoint will give a warning like: > {code} > Sep 17, 2017 7:50:33 PM org.apache.cxf.transport.servlet.ServletController > invoke > WARNING: Can't find the request for http://my-hostname:4403/rest's Observer > {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)
[jira] [Commented] (CXF-7510) SSE integration in CDI abruptly fails with no indication why
[ https://issues.apache.org/jira/browse/CXF-7510?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16206878#comment-16206878 ] Andriy Redko commented on CXF-7510: --- [~johndament] Are you running against 3.2.1-SNAPSHOT? Did you move the Thread.sleep() inside try-with-resources block? > SSE integration in CDI abruptly fails with no indication why > > > Key: CXF-7510 > URL: https://issues.apache.org/jira/browse/CXF-7510 > Project: CXF > Issue Type: Bug >Reporter: John D. Ament >Assignee: Andriy Redko > > https://lists.apache.org/thread.html/10d99c0d013a3d23361a3898171e7bd2b311a509349433db3b6cacaa@%3Cusers.cxf.apache.org%3E > has more details > Intermittently, when bootstrapping CXF + CDI, the integration for SSE will > fail. When it fails, there's no log messages indicating the issue, however > attempts to invoke any rest endpoint will give a warning like: > {code} > Sep 17, 2017 7:50:33 PM org.apache.cxf.transport.servlet.ServletController > invoke > WARNING: Can't find the request for http://my-hostname:4403/rest's Observer > {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)
[jira] [Comment Edited] (CXF-7510) SSE integration in CDI abruptly fails with no indication why
[ https://issues.apache.org/jira/browse/CXF-7510?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16206878#comment-16206878 ] Andriy Redko edited comment on CXF-7510 at 10/17/17 1:17 AM: - [~johndament] Are you running against 3.2.1-SNAPSHOT? Did you move the Thread.sleep() inside try-with-resources block? Are your changes committed so I can pull the from hammock repo? was (Author: reta): [~johndament] Are you running against 3.2.1-SNAPSHOT? Did you move the Thread.sleep() inside try-with-resources block? > SSE integration in CDI abruptly fails with no indication why > > > Key: CXF-7510 > URL: https://issues.apache.org/jira/browse/CXF-7510 > Project: CXF > Issue Type: Bug >Reporter: John D. Ament >Assignee: Andriy Redko > > https://lists.apache.org/thread.html/10d99c0d013a3d23361a3898171e7bd2b311a509349433db3b6cacaa@%3Cusers.cxf.apache.org%3E > has more details > Intermittently, when bootstrapping CXF + CDI, the integration for SSE will > fail. When it fails, there's no log messages indicating the issue, however > attempts to invoke any rest endpoint will give a warning like: > {code} > Sep 17, 2017 7:50:33 PM org.apache.cxf.transport.servlet.ServletController > invoke > WARNING: Can't find the request for http://my-hostname:4403/rest's Observer > {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)
[jira] [Commented] (CXF-7510) SSE integration in CDI abruptly fails with no indication why
[ https://issues.apache.org/jira/browse/CXF-7510?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16206883#comment-16206883 ] John D. Ament commented on CXF-7510: I figured it out, was something stupid on my part. I ended up getting it working with 3.2.0 by running with the extension being registered. One other note, in https://github.com/apache/cxf/blob/master/integration/cdi/src/main/java/org/apache/cxf/cdi/JAXRSCdiResourceExtension.java#L361-L364 there's a bug. You're using `getBeanClass()` which isn't the class if you're using a producer method/field. You're better off using the value `JAXRSServerFactoryCustomizationExtension.class` instead. If you want I can raise a PR for that. > SSE integration in CDI abruptly fails with no indication why > > > Key: CXF-7510 > URL: https://issues.apache.org/jira/browse/CXF-7510 > Project: CXF > Issue Type: Bug >Reporter: John D. Ament >Assignee: Andriy Redko > > https://lists.apache.org/thread.html/10d99c0d013a3d23361a3898171e7bd2b311a509349433db3b6cacaa@%3Cusers.cxf.apache.org%3E > has more details > Intermittently, when bootstrapping CXF + CDI, the integration for SSE will > fail. When it fails, there's no log messages indicating the issue, however > attempts to invoke any rest endpoint will give a warning like: > {code} > Sep 17, 2017 7:50:33 PM org.apache.cxf.transport.servlet.ServletController > invoke > WARNING: Can't find the request for http://my-hostname:4403/rest's Observer > {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)
[jira] [Commented] (CXF-7510) SSE integration in CDI abruptly fails with no indication why
[ https://issues.apache.org/jira/browse/CXF-7510?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16206891#comment-16206891 ] Andriy Redko commented on CXF-7510: --- Will do, thanks a lot for spotting that. I will fix it first thing tomorrow, if you have time for the PR, it would be very welcomed! So SSE rocks? :-) > SSE integration in CDI abruptly fails with no indication why > > > Key: CXF-7510 > URL: https://issues.apache.org/jira/browse/CXF-7510 > Project: CXF > Issue Type: Bug >Reporter: John D. Ament >Assignee: Andriy Redko > > https://lists.apache.org/thread.html/10d99c0d013a3d23361a3898171e7bd2b311a509349433db3b6cacaa@%3Cusers.cxf.apache.org%3E > has more details > Intermittently, when bootstrapping CXF + CDI, the integration for SSE will > fail. When it fails, there's no log messages indicating the issue, however > attempts to invoke any rest endpoint will give a warning like: > {code} > Sep 17, 2017 7:50:33 PM org.apache.cxf.transport.servlet.ServletController > invoke > WARNING: Can't find the request for http://my-hostname:4403/rest's Observer > {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)
[jira] [Created] (CXF-7531) add async-supported init parameter configuration for the cxf-osgi-transport-servlet
Freeman Fang created CXF-7531: - Summary: add async-supported init parameter configuration for the cxf-osgi-transport-servlet Key: CXF-7531 URL: https://issues.apache.org/jira/browse/CXF-7531 Project: CXF Issue Type: Improvement Components: OSGi Reporter: Freeman Fang This can can explicitly tell undertow servlet engine to enable async servlet, so that CXF Servlet3ContinuationProvider can be set for the incoming message, so that the async invocation works -- This message was sent by Atlassian JIRA (v6.4.14#64029)
[jira] [Assigned] (CXF-7531) add async-supported init parameter configuration for the cxf-osgi-transport-servlet
[ https://issues.apache.org/jira/browse/CXF-7531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Freeman Fang reassigned CXF-7531: - Assignee: Freeman Fang > add async-supported init parameter configuration for the > cxf-osgi-transport-servlet > --- > > Key: CXF-7531 > URL: https://issues.apache.org/jira/browse/CXF-7531 > Project: CXF > Issue Type: Improvement > Components: OSGi >Reporter: Freeman Fang >Assignee: Freeman Fang > > This can can explicitly tell undertow servlet engine to enable async servlet, > so that CXF Servlet3ContinuationProvider can be set for the incoming message, > so that the async invocation works -- This message was sent by Atlassian JIRA (v6.4.14#64029)