Re: [PR] CXF-9011: WSDLTo JAXWS Frontend service.vm Velocity template uses deprecated URL constructor [cxf]

2024-05-09 Thread via GitHub


reta merged PR #1858:
URL: https://github.com/apache/cxf/pull/1858


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.apache.maven.plugins:maven-plugin-plugin from 3.12.0 to 3.13.0 [cxf]

2024-05-09 Thread via GitHub


reta merged PR #1860:
URL: https://github.com/apache/cxf/pull/1860


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.wildfly.common:wildfly-common from 1.7.0.Final to 2.0.0 [cxf]

2024-05-09 Thread via GitHub


reta merged PR #1859:
URL: https://github.com/apache/cxf/pull/1859


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] CXF-9007: NullPointerException in XMLStreamDataWriter.writeNode [cxf]

2024-05-09 Thread via GitHub


reta opened a new pull request, #1861:
URL: https://github.com/apache/cxf/pull/1861

   NullPointerException in XMLStreamDataWriter.writeNode


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] CXF-9007: NullPointerException in XMLStreamDataWriter.writeNode [cxf]

2024-05-09 Thread via GitHub


reta commented on code in PR #1861:
URL: https://github.com/apache/cxf/pull/1861#discussion_r1596097566


##
core/src/main/java/org/apache/cxf/helpers/DOMUtils.java:
##
@@ -790,7 +790,10 @@ public static DocumentFragment 
getDomDocumentFragment(DocumentFragment fragment)
 //java9 plus hack
 Field f = GET_DOCUMENT_FRAGMENT_FIELDS.get(fragment.getClass());
 if (f != null) {
-return ReflectionUtil.accessDeclaredField(f, fragment, 
DocumentFragment.class);
+final DocumentFragment inner = 
ReflectionUtil.accessDeclaredField(f, fragment, DocumentFragment.class);

Review Comment:
   I am not able to reproduce the issue though but it seems like to be the only 
place where `null` could escape



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org