Release Notes
What's new in Red Hat JBoss Fuse
Copyright © 2011-2020 Red Hat, Inc. and/or its affiliates.
Abstract
Chapter 1. What's New
Abstract
1.1. New Features
- JBoss Fuse tooling is available in This content is not included.Red Hat JBoss Developer Studio starting with Developer Studio 11.0. Previously, Fuse tooling was available in Red Hat JBoss Developer Studio Integration Stack.
- The look and feel of the Fuse tooling Camel route editor has been revised.
- The Camel CDI component has been rewritten to provide better integration with the Content from www.jcp.org is not included.JSR 299: Contexts and Dependency Injection (CDI) programming model. See chapter "Camel CDI" in "Deploying into Apache Karaf" for more details.
- New Camel Braintree component (
camel-braintree) provides integration with various payment systems, including PayPal. See chapter "Braintree" in "Apache Camel Component Reference" for more details. - New Camel ServiceNow component (
camel-servicenow) provides integration with the ServiceNow REST API. See chapter "ServiceNow" in "Apache Camel Component Reference" for more details. - RH-SSO adapter for JBoss Fuse is now supported in combination with the 6.3.0 Roll Up 2 patch version of JBoss Fuse. See the section JBoss Fuse Adapter from the RH-SSO 7.1 Securing Applications and Services Guide for more details.NoteJBoss Fuse 6.3.0 Roll Up 1 is the minimum required version, but 6.3.0 Roll Up 2 is recommended.
1.2. Important Notes
Oracle JDK 1.7 is incompatible with Maven central repository
New Maven repository
settings.xml file, replacing the old repo.fusesource.com repository URLs (at Content from repo.fusesource.com is not included.https://repo.fusesource.com/nexus/content/repositories/releases and Content from repo.fusesource.com is not included.https://repo.fusesource.com/nexus/content/groups/ea) with the new Maven repository URLs.
ActiveMQ runtime can now be wired to JMS 2.0 API bundle in OSGi
Upgraded Jetty from 8.1.x to 9
etc/org.ops4j.pax.web.cfg file, in the etc/jetty.xml file, and in the Camel Jetty endpoint. For more details, see chapter "Securing the Jetty HTTP Server" in "Security Guide" and chapter "Securing the Camel Jetty Component" in "Security Guide".
Apache Karaf package name changed from jboss-fuse-full to jboss-fuse-karaf
jboss-fuse-full-ProductVersion.zip to jboss-fuse-karaf-ProductVersion.zip in this release.
CXF security changes
- The STS (Security Token Service) now issues tokens using the RSA-SHA256 signature algorithm by default (previously RSA-SHA1), and the SHA-256 digest algorithm (previously SHA-1).
- The SAML/XACML functionality previously available in the
cxf-rt-securitymodule is now in thecxf-rt-security-samlmodule.
New interceptor required for transactional RFC SAP endpoints
Make Quickstart Examples Available
$FUSE_HOME/fabric/io.fabric8.import.profiles.properties file by uncommenting the line that starts with the following:
# importProfileURLs =
- Edit the
$FUSE_HOME/quickstarts/pom.xmlfile to add a fabric I/O plugin, for example:<plugin> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin</artifactId> <version>1.2.0.redhat-630187</version> </plugin> - In the
$FUSE_HOME/quickstartsdirectory, change to the directory for the quickstart example you want to run, for example:cd beginner - In that directory, execute the following command:
mvn fabric8:deployYou would need to run this command in each directory that contains a quickstart example that you want to run.
Chapter 2. Deprecated and Removed Features
Abstract
2.1. Cumulative List of Deprecated 6.x Features
2.2. April 2017 6.3 Addendum
Embedded ActiveMQ broker will be removed in 7.0
Geronimo transaction manager will be replaced in 7.0
JBoss Fuse integration pack will be removed in 7.0
Jetty container will be replaced in 7.0
Karaf console commands for child container administration will be removed in 7.0
admin:, such as admin:create, admin:list, and so on) will be removed.
SwitchYard will be removed in 7.0
2.3. October 2016 GA
Support for Fabric8 1.x will be removed in the next major release of JBoss Fuse
bin/deletefabric8 script has been removed
bin/deletefabric8 script has been removed in this release.
Camel components for Google App Engine are deprecated
Camel Netty component is deprecated
Camel jBPM component is deprecated
camel-jbpm) is deprecated in JBoss Fuse 6.3 and will be removed in a future release of JBoss Fuse.
Camel LevelDB component is deprecated on all operating systems except for Linux
camel-leveldb) component is deprecated on all operating systems except for Red Hat Enterprise Linux. In future, the Camel LevelDB component will be supported only on Red Hat Enterprise Linux.
Tanuki based wrapper for installing JBoss Fuse as a service is deprecated
wrapper:install Karaf console command—for installing JBoss Fuse as a service are deprecated since JBoss Fuse 6.3 and will be removed in a future release of JBoss Fuse. To install the Apache Karaf container as a service, it is recommended that you use the new karaf-service-*.sh scripts from the bin/contrib directory instead.
Smooks is deprecated
BPEL is deprecated
Design Time Governance is deprecated
Runtime Governance is deprecated.
S-RAMP is deprecated
bin/patch script is deprecated
bin/patch script (bin\patch.bat on Windows O/S) is deprecated and will be removed in a future release.
Spring Dynamic Modules (Spring-DM) is deprecated
Apache OpenJPA is deprecated
Chapter 3. Unsupported Features
Apache Aries Blueprint Web module is unsupported
extras/apache-camel-2.17.0.redhat-630xxx.zip) does not imply that this feature is supported in JBoss Fuse.
The PHP scripting language is not supported in Apache Camel on Apache Karaf
The Python scripting language is not supported in Apache Camel on Apache Karaf
The Integration Pack is not supported in Fabric deployments
Chapter 4. Known Issues
4.1. CVE Security Vulnerabilities
- [This content is not included.CVE-2017-12629] Multiple CVEs related to jackson-databind security vulnerability
- Applications that that use the FasterXML
jackson-databindlibrary to instantiate Java objects by deserializing JSON content are potentially vulnerable to a remote code execution attack. The vulnerability is not automatic, however, and it can be avoided if you take the appropriate mitigation steps.At a minimum, the following prerequisites must all be satisfied before an attack becomes possible:- You have enabled polymorphic type handling for deserialization of JSON content in
jackson-databind. There are two alternative ways of enabling polymorphic type handling in Jackson JSON:- Using a combination of the
@JsonTypeInfoand@JsonSubTypesannotations. - By calling the
ObjectMapper.enableDefaultTyping()method. This option is particularly dangerous, as it effectively enables polymorphic typing globally.
- There are one or more gadget classes in your Java classpath, which have not yet been blacklisted by the current version of
jackson-databind. A gadget class is defined as any class that performs a sensitive (potentially exploitable) operation as a side effect of executing a constructor or a setter method (which are the methods that can be called during a deserialization). The gadget blacklist maintained by the Jackson JSON library is the last line of defence against the remote code execution vulnerability.
It is the existence of a large number of gadget classes which explains why there are many individual CVEs related to thejackson-databindvulnerability. There are different CVEs related to different kinds of gadget class.If you do need to use thejackson-databindlibrary in your application, the most important measure you can take to mitigate the risk is this: avoid polymorphic type handling in Jackson JSON and on no account should you call theObjectMapper.enableDefaultTyping()method. - [CVE-2020-11972] CVE-2020-11972 camel-rabbitmq: camel: RabbitMQ enables Java deserialization by default which could lead to remote code execution [fuse-6.3.0]
- In the version of Apache Camel provided with Fuse 6.3 (which is Camel 2.17), the Camel RabbitMQ component enables java deserialization, by default, without any means of disabling which can lead to arbitrary code being executed. To avoid this security vulnerability, we recommend that you do not use the Camel RabbitMQ component in Fuse 6.3.
4.2. List of Known Issues
- [This content is not included.ENTESB-13343] Maven resolution of remote repository artifacts are broken on Oracle JDK7 [and IBM JDK7]
- Due to recent changes in the security requirements for connecting to the Maven central repository, Oracle JDK 1.7 and IBM JDK7 is no longer compatible with Maven central and is unable to download Maven artifacts. Specifically, Maven resolution through the internal Fuse Maven proxy from HTTPS secured repositories is broken on Oracle JDK7 and IBM JDK7. We recommend that you upgrade to Oracle JDK 1.8 to avoid this issue.
- [Content from issues.jboss.org is not included.ENTESB-11757] [QUICKSTART] camel-linkedin quickstart is not working
- In Fuse 6.3, the Camel LinkedIn component is no longer able to communicate with the LinkedIn server, because it is implemented using the LinkedIn Version 1.0 API, which is no longer supported by LinkedIn. The Camel LinkedIn component will be updated to use the Version 2 API in a future patch release of Fuse 6.3.
- [Content from issues.jboss.org is not included.SWITCHYARD-2936] Add support for Integration Pack with Kie 6.4.0
- For SwitchYard projects in JBoss Fuse 6.3, and in the associated Integration Pack, there is no longer a backward compatibility layer, so we have added support for the Integration Pack BPM & Rules components (Fuse-specific) as well as the SwitchYard ones (more basic components for community releases). When you specify an Integration Pack and Kie version for your SwitchYard project, the appropriate components are selected. There is a known issue, however, if you select both varieties of BPM or Rules components and don't have Integration Pack versions specified. If you accidentally check both of them and are not using the Integration Pack, simply uncheck the (Integration Pack) version on the Capabilities page. Other supported components are not affected.
- [Content from issues.jboss.org is not included.ENTESB-6038] Error loading situations when using Postgres
- RTGov 6.2.1 and 6.3 configured with Postgres for the OverlordRTGov datasource fails to load situations in the RT-Gov UI. You can work around this problem by modifying the
standalone-full.xmlconfiguration file as follows:<configuration name="overlord-rtgov"> <properties> <!-- ADD THIS --> <property name="hibernate.transaction.factory_class" value="org.hibernate.transaction.JTATransactionFactory"/> <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup"/> <!-- REMOVE/COMMENT THIS --> <!--property name="JpaStore.jtaPlatform" value="org.hibernate.service.jta.platform.internal.JBossAppServerJtaPlatform"/--> <!-- ... other properties --> </properties> </configuration> - [Content from issues.jboss.org is not included.ENTESB-6079] The domain-camel.xml in Fuse on EAP doesn't work OOTB
- The
domain-camel.xmldomain configuration file in Fuse on EAP does not work at the earlier patch levels of JBoss EAP 6.4. You need to use JBoss EAP 6.4.7 or later for this configuration file to work. - [Content from issues.jboss.org is not included.ENTESB-4995] Classloader leak in wildfly-camel ContextCreateHandlerRegistryService
- JBoss Fuse on JBoss EAP with a small metaspace can lead to
OutOfMemoryError. SwitchYard is unaffected by this. - [Content from issues.jboss.org is not included.ENTESB-6033] Qpid jms client hangs when used in camel route
- The Camel AMQP component, which is based on the Qpid JMS client, freezes when it is used in a Camel route. This is because the associated
camel-amqpKaraf feature depends on the wrong version of the Qpid Proton-J library. This issue will be fixed in an upcoming patch. - [Content from issues.jboss.org is not included.ENTESB-4850] No bean could be found in the registry for: ConnectionFactory of type: javax.jms.ConnectionFactory
- In certain circumstances, when deploying multiple Camel JMS endpoints into a JBoss EAP container, the following error can be thrown:
org.apache.camel.NoSuchBeanException: No bean could be found in the registry for: ConnectionFactory of type: javax.jms.ConnectionFactory
This error can occur either in a SwitchYard application or in a Camel on EAP (Wildfly Camel) application. There are two known workarounds for this issue:Workaround 1: Use the org.jboss.server.bootstrap.maxThreads system property
If you face this issue, you can start JBoss EAP with the
org.jboss.server.bootstrap.maxThreadssystem property with a value less than or equal to3to resolve the issue, as follows:$ ./bin/standalone.sh -c standalone-full.xml -Dorg.jboss.server.bootstrap.maxThreads=3
Note that the default value oforg.jboss.server.bootstrap.maxThreadsis (number of processors)*2 and setting it to a value lower than the default may slow the startup time of JBoss EAP.Workaround 2: Use the org.switchyard.deployment.disableAutoStartup SwitchYard domain property
If the first workaround does not work for you, you can then disable auto start-up of SwitchYard bindings by setting the
org.switchyard.deployment.disableAutoStartupdomain property totrueto resolve the issue.<switchyard xmlns="urn:switchyard-config:switchyard:1.0" xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912" [...]> [...] <domain> <properties> <property name="org.switchyard.deployment.disableAutoStartup" value="${org.switchyard.deployment.disableAutoStartup:true}"/> </properties> </domain> </switchyard>Note that if you disabled auto start-up of SwitchYard bindings, you need to manually start the bindings after the applications are deployed. - [Content from issues.jboss.org is not included.ENTESB-5653] Profile-import fails on Windows paths (with backslashes)
- When using the
profile-importKaraf console command with Windows paths (using backslashes), the command fails, because the backslashes are left out. The workaround is to use forward slashes instead. For example:JBossFuse:karaf@root> profile-import file:C:/jboss-fuse-6.3.0.redhat-xxx/out.zip
- [Content from issues.jboss.org is not included.ENTESB-5231] PHP script language does not work
- The PHP scripting language is not supported in Camel applications on the Apache Karaf container, because there is no OSGi bundle available for PHP.
- [Content from issues.jboss.org is not included.ENTESB-5232] Python language does not work
- The Python scripting language is not supported in Camel applications on the Apache Karaf container, because there is no OSGi bundle available for Python.
- [Content from issues.jboss.org is not included.ENTESB-5911] bpel-jms-binding is not working on solaris11sparc
- The
bpel-jms-bindingexample from Apache Karafquickstarts/switchyarddoes not work on the Solaris 11 operating system. - [Content from issues.jboss.org is not included.ENTESB-5892] Jetty - Applications: Links in the list are wrong
- In the Fuse Management Console (Hawtio console) on the Apache Karaf container, when you navigate to the Jetty menu tab, the URL links for the Jetty applications shown on this page are incorrect.
- [Content from issues.jboss.org is not included.ENTESB-5117] [patching] Add patch feature by default to admin:create child containers
- By default, child containers created using the
admin:createKaraf console command do not support the new JBoss Fuse patching mechanism, because the requisitepatchfeature is not available. You can work around this limitation by creating a child container using the following command:admin:create --featureURL mvn:io.fabric8.patch/patch-features/1.2.0.redhat-630xxx/xml/features --feature patch test
Where 1.2.0.redhat-630xxx might need to be replaced by whatever version of fabric8 you are using in your container. - [Content from issues.jboss.org is not included.ENTESB-5911] bpel-jms-binding is not working on solaris11sparc
- The
bpel-jms-bindingquickstart for SwitchYard on Apache Karaf (in thequickstarts/switchyard/bpel-jms-bindingdirectory) does not work on Solaris 11, due to aClassNotFounderror. - [Content from issues.jboss.org is not included.ENTESB-5892] Jetty - Applications: Links in the list are wrong
- If you click on the Jetty tab of the Fuse Management Console (Hawtio), the links appearing in the Url column of this page are incorrect.
- [Content from issues.jboss.org is not included.ENTESB-4291] Conflict in Saxon implementations (switchyard-bpel, camel-saxon)
- In the Apache Karaf container, the
switchyard-bpelfeature and thecamel-saxonfeature cannot both be installed at the same time, because they use conflicting versions of the Saxon parsing library. In testing we have seen classpath issues such as the following when both features are installed together:Caused by: java.lang.NoSuchMethodException: net.sf.saxon.Controller.setMessageEmitter(net.sf.saxon.event.Receiver) at java.lang.Class.getMethod(Class.java:1786) at org.apache.camel.builder.xml.XsltBuilder.doStart(XsltBuilder.java:616) ... 42 more
- [Content from issues.jboss.org is not included.ENTESB-5447] Cannot add openjpa, camel-hbase, or camel-hdfs features to featuresBoot
- If you add any of the features,
openjpa,camel-hbase, orcamel-hdfs, tofeaturesBootin theetc/org.apache.karaf.features.cfgfile, this will result in an OSGi wiring error. All of these features are deprecated in any case. - [Content from issues.apache.org is not included.CAMEL-10237] Problem setting JMSX JMS properties on OracleAQ
- The Camel JMS component is affected by a regression error that can cause problems integrating with Oracle AQ. This issue has already been fixed in the Apache Camel community project and the fix will be made available in a patch for JBoss Fuse 6.3.
- [Content from issues.jboss.org is not included.ENTESB-3982] If changing the BPEL data source, you may need to restart EAP
- If you install a new data source for BPEL in JBoss EAP, it might be necessary to restart the JBoss EAP container—instead of simply executing
:reload—in order for the data source to be recognized. - [Content from issues.jboss.org is not included.ENTESB-4408] Patching functionality in Fuse Management Console (Hawtio) temporarily disabled
- The patching functionality in the Fuse Management Console (Hawtio) has been disabled since JBoss Fuse 6.2.1. This is because the Hawtio UI has not been updated to use the new patching mechanism. To install Fabric patches, use the Karaf console instead. This issue will be fixed in a future release.
- [Content from issues.jboss.org is not included.ENTESB-3938] JBoss Fuse 6.2.1 takes a long time to start up on OpenStack
- When a JBoss Fuse 6.2.1 container is deployed on RHEL Openstack Platform, it can take a long time (several minutes) for the container to start up. A workaround is to add the following option to the JVM that starts the container (for example, by setting the
JAVA_OPTSenvironment variable):-Djava.security.egd=file:/dev/./urandom
The extra dot in the pathname, as in/./, is required.NoteThe effect of the workaround is to replace the default/dev/randomby/dev/urandom. The alternative is faster, but less random than/dev/random. This has an impact on any security packages that depend on this device to generate entropy and random numbers. - [Content from issues.jboss.org is not included.ENTESB-4390] Some quickstarts using SAAJ API fail on IBM JAVA
- When using the Apache Karaf container with IBM Java version 1.7.0, the following quickstarts can fail:
bean-servicesoap-attachment
With the following error:java.lang.IllegalAccessError: Class com/sun/org/apache/xerces/internal/dom/ElementImpl illegally accessing "package private" member of class com/sun/org/apache/xerces/internal/dom/CoreDocumentImpl at com.sun.org.apache.xerces.internal.dom.ElementImpl.synchronizeData(ElementImpl.java:1159) ...This appears to be a problem with the IBM JDK. You can work around the problem as follows:- Remove
saaj-apifrom endorsed libraries:rm lib/endorsed/org.apache.servicemix.specs.saaj-api-1.3-2.5.0.jar
- Before invoking the
./bin/fusescript:, set theJAVA_OPTSenvironment variable as follows:JAVA_OPTS=-Xshareclasses:none
- [Content from issues.jboss.org is not included.AESH-324] Don't require special chars within arguments to be escaped
- The S-RAMP query language currently requires you to escape special characters in a function argument. For example, in the following query you must escape the single quotes around
'submit.*'using the backslash character:/s-ramp/wsdl/Operation[xp2:matches(@name,\'submit.*\')]
- [Content from issues.jboss.org is not included.ENTESB-3980] ERROR: duplicate key value violates unique constraint "pg_type_typname_nsp_index"
- After a clean installation of S-RAMP to to JBoss EAP 6.4.0 with a PostgreSQL database and after first navigation to the page, the following exception is thrown.
... Caused by: org.postgresql.util.PSQLException: ERROR: duplicate key value violates unique constraint "pg_type_typname_nsp_index" Detail: Key (typname, typnamespace)=(artificerartifact, 136381) already exists. at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2198) ...
This error has no effect on the S-RAMP functionality, however, and can safely be ignored. - [Content from issues.jboss.org is not included.FABRIC-963] Cannot create a fabric on a Windows 7 operating system with Java 7
- To connect to the ZooKeeper server, you must change the connectivity type from IPv6 to IPv4. For the detailed solution, see the following Customer Portal article: Cannot create fabric in JBoss Fuse 6.1 Beta on Windows 7
- [Content from issues.jboss.org is not included.ENTESB-2443] Google Mail API - Sending of messages and drafts is not synchronous
- When you send a message or draft, the response contains a Message object with an ID. It may not be possible to immediately get this message via another call to the API. You may have to wait and retry the call.
- [Content from issues.jboss.org is not included.ENTESB-2458] Google Mail Component - Import of message throws sometimes SocketTimeoutException
- Importing a message may throw a
java.net.SocketTimeoutExceptionif the send operation was called before. Workaround: After a send call wait for few moments before calling import. - [Content from issues.jboss.org is not included.ENTESB-2365] Google Drive API bug - Response of permission insert operation mostly does not contain emailAddress property
- Response of permission insert operation sometimes does not return
emailAddressproperty even if the value of request property type was set to user. Nevertheless the permission is successfully inserted. - [Content from issues.jboss.org is not included.ENTESB-2332] Google Drive API JSON reponse for changes returns bad count of items for the first page
- Google Drive API JSON reponse for changes returns bad count of items for the first page. Setting maxResults for a list operation may not return all the results in the first page. You may have to go through several pages to get the complete list (that is by setting pageToken on new requests).
- [Content from issues.jboss.org is not included.ENTESB-3039] [HTTP Gateway] apis mapping rules don't work right after deployment
- If the
zooKeeperPathproperty in theio.fabric8.gateway.http.mapping-apis.propertiesis changed, a gateway node restart will be required. - [Content from issues.jboss.org is not included.ENTESB-2929] can't install features camel-avro camel-hbase camel-hdfs2
camel-avro,camel-hbase,camel-hdfs2are not supported on Solaris / AIX. The camel-hdfs2 feature can only run if you havelibsnappyjava.dylib in java.library.path. You must manually setuplibsnappyjava.dylibin Red Hat JBoss Fuse before installing these features.JBossFuse:karaf@root> features:info camel-hdfs2 Description of camel-hdfs2 2.15.0.redhat-620133 feature
- [Content from issues.jboss.org is not included.ENTESB-2924] Insight - Elasticsearch: JsonPretty error: Unable to get property 'toLowerCase' of undefined or null reference (:7999:6)
- Insight Elasticsearch page is not supported in IE. The error occurs when clicking rectangles with numbers at Insight - Elasticsearch page.
- [Content from issues.jboss.org is not included.ENTESB-2773] [platform AIX HPUX] camel-leveldb missing native library
- The
camel-leveldbfeature is not supported on IBM AIX, HP-UX, and Oracle Solaris operating systems. - [Content from issues.jboss.org is not included.ENTESB-2513] OSE Fuse JVM sometimes dies with SIGABRT
- RHEL customers need to upgrade openjdk to java-1.7.0-openjdk-1.7.0.79-2.5.5.3.el6_6 or later which will fix the
SIGABRT. - [Content from issues.jboss.org is not included.ENTESB-2069] Container which is created from Hawtio can not start if restarting openshift node
- After restarting OpenShift, containers created from Hawtio cannot be started. This happens because the containers started before the ZooKeeper starts running will fail to start. The workaround is to wait for the start and keep restarting until we get connected to ZooKeeper.
- [Content from issues.jboss.org is not included.ENTESB-4490] Integration Pack Maven Repository is missing some CXF artifacts
- For users intending to use the Integration Pack with Maven, the Integration Pack
pom.xmlfiles do not consistently define the versions for thecamel-cxfandcxfMaven artifacts. For an explantion of how to set up the Maven dependencies in this case, see chapter "Configuring Maven Dependencies" in "Integration Guide". - [Content from issues.jboss.org is not included.FUSEDOC-1716] The examples/samples projects is missing from apache-camel-2.17.0.redhat-630187/apache-cxf-3.1.5.redhat-630187.zip
- JBoss Fuse 6.3 does not provide a code sample for how to deploy an Apache CXF web service endpoint. Documentation for an unsupported example has been removed from the end of the JBoss Fuse 6.3 document, "Deploying into a Web Server".There is an Content from github.com is not included.Apache Camel CXF JAX-WS example that is available from the upstream Wildfly Camel project. This example requires the Undertow servlet container, which is not supported in JBoss Fuse 6.3. Red Hat expects to provide a supported sample in a future release.
Chapter 5. Resolved Issues
5.1. General - 6.3.0
Table 5.1. General Issues Resolved in 6.3.0
| Issue Number | Description |
|---|---|
| Content from issues.jboss.org is not included.ENTESB-1769 | "Error in initialization script: Command not found: shell:if" after fabric:create on fuse with P2 |
| Content from issues.jboss.org is not included.ENTESB-3546 | Cannot access LinkedIn API with camel-linkedin |
| Content from issues.jboss.org is not included.ENTESB-3939 | fuse EsbProfileRedeployTest fails consistently |
| Content from issues.jboss.org is not included.ENTESB-4160 | BPEL - Domain mode - Deployment throws MySQLIntegrityConstraintViolationException |
| Content from issues.jboss.org is not included.ENTESB-4415 | Multiple Error messages while updating JBoss A-MQ using new patch mechanism |
| Content from issues.jboss.org is not included.ENTESB-4435 | Fix hardcoded link to activemq nms zip |
| Content from issues.jboss.org is not included.ENTESB-4480 | [Patch mechanism] Missing startup bundles when migrating container joined via fabric:join command |
| Content from issues.jboss.org is not included.ENTESB-4495 | Hibernate and Bundle ClassLoaders out of sync on Bundle Refresh |
| Content from issues.jboss.org is not included.ENTESB-4622 | Please update file name from jboss-fuse-full to jboss-fuse-karaf |
| Content from issues.jboss.org is not included.ENTESB-4711 | [JBoss A-MQ distro, Fabric, offline] A-MQ distro will not create a fabric when no access to internet |
| Content from issues.jboss.org is not included.ENTESB-4732 | JBoss Fuse 6.2.1 quickstarts/custom readme should be updated to indicate jboss fuse zip needs to be added to local repo |
| Content from issues.jboss.org is not included.ENTESB-4770 | fix swagger dependencies in Fuse BOM |
| Content from issues.jboss.org is not included.ENTESB-4773 | Corrupted Screenshots in camel-sap-binding quickstart |
| Content from issues.jboss.org is not included.ENTESB-4786 | Fuse quickstart builds fail with missing pom |
| Content from issues.jboss.org is not included.ENTESB-4804 | Corrupt war file in jboss-fuse-full-6.2.1.redhat-084.zip (GA) |
| Content from issues.jboss.org is not included.ENTESB-4875 | Update dependencies for CXF secure-soap quickstart |
| Content from issues.jboss.org is not included.ENTESB-4876 | CXF features fails to install on jboss-fuse-full-6.3.0.redhat-012.zip |
| Content from issues.jboss.org is not included.ENTESB-4903 | [Solaris 11] local: not found when starting fuse |
| Content from issues.jboss.org is not included.ENTESB-4925 | don't start camel-jetty8 in fuse by default |
| Content from issues.jboss.org is not included.ENTESB-4961 | Fuse and A-MQ both have the amq:(esb:)check-for-user and amq:(esb:)create-admin-user |
| Content from issues.jboss.org is not included.ENTESB-5003 | [Win+Karaf-service] Can't run .exe on win server 2012r2 |
| Content from issues.jboss.org is not included.ENTESB-5105 | Some profiles in fabric doesn't work out of the box in Fuse running in offline env |
| Content from issues.jboss.org is not included.ENTESB-5140 | Verify that quickstarts do not refer to SNAPSHOT versions |
| Content from issues.jboss.org is not included.ENTESB-5172 | Unable to install cxf-secure-rest quickstart |
| Content from issues.jboss.org is not included.ENTESB-5213 | Bump licence headers to 2016 |
| Content from issues.jboss.org is not included.ENTESB-5484 | security-propagation-jms connector.jks needs to be copied differently |
| Content from issues.jboss.org is not included.ENTESB-5630 | container-list on child fails with illegal state exception in 630085 build |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5669 | Quickstarts pom has duplicates in pluginRepositories in 6.3.0.redhat-095 build |
| Content from issues.jboss.org is not included.ENTESB-5687 | camel-sap quickstart can't be build |
| Content from issues.jboss.org is not included.ENTESB-5751 | Fuse 6.3 Jenkins build has 6 test failures |
| Content from issues.jboss.org is not included.ENTESB-5774 | Fabric8 profiles for Camel quickstarts |
| Content from issues.jboss.org is not included.ENTESB-5781 | Can't install camel-amq quickstart on build jboss-fuse-6.3.0.redhat-131 |
| Content from issues.jboss.org is not included.ENTESB-5786 | rest and secure-rest quickstarts are missing changes from fabric8 |
| Content from issues.jboss.org is not included.ENTESB-5799 | All .jpgs in switchyard quickstarts are corrupted |
| Content from issues.jboss.org is not included.ENTESB-5833 | quickstarts/custom assembly cannot be started without modification |
| Content from issues.jboss.org is not included.ENTESB-5844 | Should enable fork option in codegen plug-in for quickstarts/cxf/camel-cxf-contract-first |
| Content from issues.jboss.org is not included.ENTESB-5893 | secure-soap quickstart doesn't work on fabric |
| Content from issues.jboss.org is not included.ENTESB-5926 | rest and secure-rest quickstarts do not work on fabric |
| Content from issues.jboss.org is not included.ENTESB-5927 | jboss-fuse-karaf-6.3.0.redhat-157.zip contains empty quickstart folders |
| Content from issues.jboss.org is not included.ENTESB-5951 | Shell SCR bundle redeploy loop with camel-amq quickstart |
| Content from issues.jboss.org is not included.ENTMQ-1447 | Unable to apply patch to JBoss AM-Q 6.2.0 SSH-containers |
| Content from issues.jboss.org is not included.ENTMQ-1517 | The jboss-a-mq-6.3.0.redhat-012.zip does not startup properly |
| Content from issues.jboss.org is not included.ENTMQ-1548 | Duplicate entries in etc/config.properties shipped with A-MQ 6.2 |
| Content from issues.jboss.org is not included.ENTMQ-1774 | A-MQ 6.2.1 R2 errors on startup without Internet access |
5.2. Messaging - 6.3.0
Table 5.2. Messaging Issues Resolved in 6.3.0
| Issue Number | Description |
|---|---|
| Content from issues.apache.org is not included.AMQ-5854 | Duplicate messages when failover is done during prepare phase of two phase commit. |
| Content from issues.apache.org is not included.AMQ-5856 | allowLinkStealing option is not working when using mqtt over websocket |
| Content from issues.apache.org is not included.AMQ-5857 | Message content stored twice while sending |
| Content from issues.apache.org is not included.AMQ-5865 | Enable "getRemoteAddress()" method in WebSocket Requests |
| Content from issues.apache.org is not included.AMQ-5870 | Lazy create if MQTTProtocolConverter in the WebSocket transport needs to be thread safe |
| Content from issues.apache.org is not included.AMQ-5875 | Removing a destination when using mKahaDB can cause an IllegalStateException |
| Content from issues.apache.org is not included.AMQ-5890 | AMQP: possible NPE when handling disposition with Modified state |
| Content from issues.apache.org is not included.AMQ-5891 | AMQP: update to proton-j 0.10 |
| Content from issues.apache.org is not included.AMQ-5895 | FilteredDestinations do not work when loaded by runtimeConfigurationPlugin |
| Content from issues.apache.org is not included.AMQ-5903 | Message headers are lost when using the Broker Component for Camel |
| Content from issues.apache.org is not included.AMQ-5914 | Pull consumer hang when message expires in flight. |
| Content from issues.apache.org is not included.AMQ-5933 | NullPointerException in SelectorAwareVirtualTopicInterceptor |
| Content from issues.apache.org is not included.AMQ-5972 | Policy entries not applied in correct order |
| Content from issues.apache.org is not included.AMQ-6000 | Pause/resume feature of ActiveMQ not resuming properly |
| Content from issues.apache.org is not included.AMQ-6005 | Slave broker startup corrupts shared PList storage |
| Content from issues.apache.org is not included.AMQ-6013 | Restrict classes that can be serialized in ObjectMessages |
| Content from issues.apache.org is not included.AMQ-6014 | Offline Durable Topic Subscription exceeds memory limits |
| Content from issues.apache.org is not included.AMQ-6029 | wss transport don't work with certificate authentication properly |
| Content from issues.apache.org is not included.AMQ-6031 | AMQP: use System.nanoTime() when deriving time to tick the transport with for idle-timeout handling |
| Content from issues.apache.org is not included.AMQ-6046 | Concurrent access to a Transport from WebSocket client can deadlock |
| Content from issues.apache.org is not included.AMQ-6055 | SASL PLAIN auth with AMQP doesn't take authzid into account |
| Content from issues.apache.org is not included.AMQ-6059 | DLQ message lost after broker restarts |
| Content from issues.apache.org is not included.AMQ-6060 | "Will message" retain property is not respected |
| Content from issues.apache.org is not included.AMQ-6065 | Allow selective use of broker systemExitOnShutdown from DefaultIOExceptionHandler |
| Content from issues.apache.org is not included.AMQ-6066 | Performance issue in OrderedPendingList |
| Content from issues.apache.org is not included.AMQ-6068 | RAR - cannot reset clientId on pooled managed connection |
| Content from issues.apache.org is not included.AMQ-6069 | Purging a Queue can lead to OOM error with prioritized messages |
| Content from issues.apache.org is not included.AMQ-6070 | originalDestination property of advisory messages set to message id in error |
| Content from issues.apache.org is not included.AMQ-6071 | Log info about corrupted journal records at WARN level |
| Content from issues.apache.org is not included.AMQ-6073 | WebSockets no longer working on most browers |
| Content from issues.apache.org is not included.AMQ-6074 | AMQ4126Test#testOpenwireNIOSSLWithCertificate fails with JDK8 |
| Content from issues.apache.org is not included.AMQ-6083 | Broker starts on corrupted kahadb despite checkForCorruptJournalFiles="true" and ignoreMissingJournalfiles="false" |
| Content from issues.apache.org is not included.AMQ-6086 | Broker stop and start are not at all thread safe - we can do better |
| Content from issues.apache.org is not included.AMQ-6088 | Runtime configuration does not properly apply policy updates |
| Content from issues.apache.org is not included.AMQ-6094 | Memory Leak with abnormal disconnecting consumers |
| Content from issues.apache.org is not included.AMQ-6102 | JMX SubscriptionViewMBean reset statistics method doesn't reset |
| Content from issues.apache.org is not included.AMQ-6113 | Add the X-Frame-Options" header for the WebConsole |
| Content from issues.apache.org is not included.AMQ-6121 | Messages can continually expire from DLQ and back |
| Content from issues.apache.org is not included.AMQ-6122 | Potential Deadlock when a duplicate message is read from the store for the DLQ destination |
| Content from issues.apache.org is not included.AMQ-6124 | failover backup transports do not update the brokerInfo leaving stale org.apache.activemq.ActiveMQConnection#getBrokerName |
| Content from issues.apache.org is not included.AMQ-6125 | Potential NPE in session rollback if no default redlivery policy configured |
| Content from issues.apache.org is not included.AMQ-6128 | browsing priority queue can return messages in different order than they will be consumed |
| Content from issues.apache.org is not included.AMQ-6131 | Durable subscription rewrote in journal can be to agressive and cause message loss on recovery |
| Content from issues.apache.org is not included.AMQ-6133 | Message updates can cause message loss on recovery |
| Content from issues.apache.org is not included.AMQ-6137 | Special escape characters in LIKE selectors do not work as expected |
| Content from issues.apache.org is not included.AMQ-6142 | ActiveMQBytesMessage decompress throws DataFormatException incorrect header check |
| Content from issues.apache.org is not included.AMQ-6146 | Use proper JSTL tags in the WebConsole |
| Content from issues.apache.org is not included.AMQ-6151 | Redelivered messages bypass priority ordering |
| Content from issues.apache.org is not included.AMQ-6152 | KahaDB scheduler log files not being deleted |
| Content from issues.apache.org is not included.AMQ-6168 | STOMP: Connection should be closed on receiving an invalid STOMP Frame with unknown action value. |
| Content from issues.apache.org is not included.AMQ-6169 | STOMP: Invliad frames are logged in warn messages |
| Content from issues.apache.org is not included.AMQ-6170 | X-Frame-Options are not set for static content |
| Content from issues.apache.org is not included.AMQ-6171 | legal colon in broker name breaks vm transport |
| Content from issues.apache.org is not included.AMQ-6183 | Provide the DispatchAsync value on Subscriptions to the SubscriptionViewMBean |
| Content from issues.apache.org is not included.AMQ-6194 | Deleting a temporary queue creates a warning message in the broker |
| Content from issues.apache.org is not included.AMQ-6199 | cursorMemoryHighWaterMark configuration not applied to topic subscription |
| Content from issues.apache.org is not included.AMQ-6206 | properties in stomp non persistent messages are not reflected in the message size used for usage tracking |
| Content from issues.apache.org is not included.AMQ-6207 | KahaDB: corruption of the index possible on sudden stop of the broker |
| Content from issues.apache.org is not included.AMQ-6208 | The connector's jmx attribute UpdateClusterClients is not correct |
| Content from issues.apache.org is not included.AMQ-6211 | Synchronize creating of JMX OpenType objects |
| Content from issues.apache.org is not included.AMQ-6214 | JAAS bug that causes user group membership not reloaded dynamically when reload is true |
| Content from issues.apache.org is not included.AMQ-6215 | priority message dispatch can be affected by jms browser or expiry processing paging messages in error |
| Content from issues.apache.org is not included.AMQ-6218 | Message content returns null occasionally from Virtual Topic to the consumer |
| Content from issues.apache.org is not included.AMQ-6221 | ActiveMQTextMessage should synchronize on state changes |
| Content from issues.apache.org is not included.AMQ-6222 | Message content can be cleared by mistake when isReduceMemoryFootprint is enabled |
| Content from issues.apache.org is not included.AMQ-6235 | SimpleDiscoveryAgent doesn't honor it's configured initialReconnectDelay |
| Content from issues.apache.org is not included.AMQ-6240 | Producer cannot be terminated when slow consumer is detected |
| Content from issues.apache.org is not included.AMQ-6246 | STOMP: Unprefixed composite destination values not properly parsed |
| Content from issues.apache.org is not included.AMQ-6248 | Failover - transport connected to one broker fails due to error in connection to another broker |
| Content from issues.apache.org is not included.AMQ-6250 | MultiKahaDBTransactionStore should have null protection in close |
| Content from issues.apache.org is not included.AMQ-6254 | Durable wildcard subscription causes memory leak after broker restart |
| Content from issues.apache.org is not included.AMQ-6256 | ConcurentStoreAndDispatch can lead to inconsistent message states using VM Transport |
| Content from issues.apache.org is not included.AMQ-6263 | AMQP: Using JMS Transformer, preserve the type of the original MessageID |
| Content from issues.apache.org is not included.AMQ-6264 | Deadlock on destination map - slow topic sub with slowConsumerAdvisory |
| Content from issues.apache.org is not included.AMQ-6275 | Error when using ws transport connector |
| Content from issues.apache.org is not included.AMQ-6285 | MessageDatabase doesn't properly cleanup the checkpoint scheduler on shutdown |
| Content from issues.apache.org is not included.AMQ-6286 | Queue order lost on repeated redelivery |
| Content from issues.apache.org is not included.AMQ-6288 | Message ack compaction needs to acquire the checkpoint lock |
| Content from issues.apache.org is not included.AMQ-6290 | JMS Pool reconnection logic not always reliable |
| Content from issues.apache.org is not included.AMQ-6303 | Message ack rewrite does not always set the right journal file type code |
| Content from issues.apache.org is not included.AMQ-6305 | AMQP: Drain requests can go unaswered in certain cases. |
| Content from issues.apache.org is not included.AMQ-6317 | ActiveMQ createSchemaStatements are not executed on init if a previous createSchemaStatement failed on execution |
| Content from issues.apache.org is not included.AMQ-6340 | Queue order lost on consumer close in some cases |
| Content from issues.apache.org is not included.AMQ-6350 | PooledConnectionFactory throws 'IllegalStateException: Pool not open' after re-init |
| Content from issues.apache.org is not included.AMQ-6361 | Message can remain inflight after consumer side expiration acknowledgements |
| Content from issues.apache.org is not included.AMQ-6370 | JDBC message store - jdbc connection pool - potential deadlock with cleanup task when pool exhausted |
| Content from issues.apache.org is not included.AMQ-6372 | KahaDB reader pool not releasing unused open files till deletion - too many open files |
| Content from issues.apache.org is not included.AMQ-6376 | IOException on pageIn should involve IOExeceptionHandler |
| Content from issues.apache.org is not included.AMQ-6378 | KahaDb recover from corrupt metadata state locations that can be rebuilt |
| Content from issues.apache.org is not included.AMQ-6389 | LoggingBrokerPlugin logs a message size equal to 0 |
| Content from issues.apache.org is not included.AMQ-6392 | Allow host name mapping with publishedAddressPolicy on a transportConnector |
| Content from issues.apache.org is not included.AMQ-6406 | kahadb concurrentStoreAndDispatch - duplicate suppression in cursor needs to wait for possible store add |
| Content from issues.apache.org is not included.AMQ-6413 | kahadb concurrentStoreAndDispatch - producer audit managed by store is skipped |
| Content from issues.apache.org is not included.CAMEL-1022 | DOT generator (Visualizor) - Doen't handle that pipeline is default |
| Content from issues.apache.org is not included.COLLECTIONS-580 | [COLLECTIONS-580] Arbitrary remote code execution with InvokerTransformer |
| Content from issues.jboss.org is not included.ENTESB-4902 | Fuse 6.2.1 failed to handle maven repository url with special characters like "@" for authentication parameters. |
| Content from issues.jboss.org is not included.ENTESB-4957 | missing package org.apache.geronimo.osgi.locator for features:install pax-*-tomcat |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5818 | Upgrade httpclient version to latest, at a minimum > 4.3.4 |
| Content from issues.jboss.org is not included.ENTESB-5872 | Unable to send JSON/Object to activemq in Camel |
| Content from issues.jboss.org is not included.ENTESB-5935 | intermittent ServerModel LinkageError when connecting to ssh container |
| Content from issues.jboss.org is not included.ENTMQ-1160 | When ActiveMQ encountered exception during rollback, the message is stuck instead of retry the rollback. |
| Content from issues.jboss.org is not included.ENTMQ-1180 | Offline Durable Topic Subscription exceeds memory limits |
| Content from issues.jboss.org is not included.ENTMQ-1419 | Second connection request with Durable subscriber throws "Setting clientID on a used Connection is not allowed" |
| Content from issues.jboss.org is not included.ENTMQ-1421 | Broker starts on corrupted kahadb despite checkForCorruptJournalFiles="true" and ignoreMissingJournalfiles="false" |
| Content from issues.jboss.org is not included.ENTMQ-1426 | originalDestination property of advisory messages set to message id in error |
| Content from issues.jboss.org is not included.ENTMQ-1428 | AMQ4126Test#testOpenwireNIOSSLWithCertificate fails with JDK8 |
| Content from issues.jboss.org is not included.ENTMQ-1434 | StompSubscriptionRemoveTest hangs on Solaris with JDK8 |
| Content from issues.jboss.org is not included.ENTMQ-1484 | Implementation of AMQ-6077 in Fuse 6.2.1 is incomplete |
| Content from issues.jboss.org is not included.ENTMQ-1517 | The jboss-a-mq-6.3.0.redhat-012.zip does not startup properly |
| Content from issues.jboss.org is not included.ENTMQ-1584 | Threads Blocked On ActiveMQConnection.ensureConnectionInfoSent |
| Content from issues.jboss.org is not included.ENTMQ-1656 | Enable configuration for mqtt-over-ws transport |
| Content from issues.jboss.org is not included.ENTMQ-1681 | Issue with message ordering after transaction rollback |
| Content from issues.jboss.org is not included.ENTMQ-1683 | *:help missing descriptions for activemq commands |
| Content from issues.jboss.org is not included.ENTMQ-1708 | The connection to 'tcp://...' is taking a long time to shutdown |
| Content from issues.jboss.org is not included.ENTMQ-1791 | Regression in from ENTMQ-703 leads to metrics issue for temp transactional queues |
| Content from issues.jboss.org is not included.ENTMQ-1822 | Broker Unable To Recover After Exceeding File Descriptor Limit |
| Content from issues.jboss.org is not included.ENTMQ-1823 | Two clustered A-MQ nodes using JDBCPersistentAdaptor and lease database locker were active the same time |
| Content from issues.apache.org is not included.ZOOKEEPER-2380 | [ZOOKEEPER-2380] Deadlock between leader shutdown and forwarding ACK to the leader |
| Content from issues.apache.org is not included.ZOOKEEPER-2383 | [ZOOKEEPER-2383] Startup race in ZooKeeperServer |
5.3. SwitchYard
Table 5.3. SwitchYard Issues Resolved in 6.3.0
| Issue | Description |
|---|---|
| Content from issues.apache.org is not included.CXF-6431 | Attachment serialization does not conform to the relevant specs |
| Content from issues.apache.org is not included.CXF-6665 | ClassCastException in SoapActionInInterceptor |
| Content from issues.jboss.org is not included.ENTESB-3814 | Add missing camel-sap converters to TypeConverter file |
| Content from issues.jboss.org is not included.ENTESB-3822 | Smooks transformer needs "org.milyn" OSGi package |
| Content from issues.jboss.org is not included.ENTESB-4070 | policy-security-basic throws error when executing test |
| Content from issues.jboss.org is not included.ENTESB-4137 | Unable to create SAP destination endpoints if there is no SAP server endpoint. |
| Content from issues.jboss.org is not included.ENTESB-4320 | jca-inflow-activemq quickstart not working |
| Content from issues.jboss.org is not included.ENTESB-4356 | Switchyard JPA does not work on IBM JDK |
| Content from issues.jboss.org is not included.ENTESB-4398 | Arbitrary remote code execution with InvokerTransformer |
| Content from issues.jboss.org is not included.ENTESB-4433 | camel-mqtt-binding not working on Fuse |
| Content from issues.jboss.org is not included.ENTESB-4436 | policy-security-saml quickstart throws error when undeploying |
| Content from issues.jboss.org is not included.ENTESB-4445 | Add all missing switchyard-* artifacts to switchyard bom |
| Content from issues.jboss.org is not included.ENTESB-4739 | HTTPS endpoint address doesn't work with HTTP proxy for RESTEasy reference binding |
| Content from issues.jboss.org is not included.ENTESB-4747 | No SwitchYard schema is included in Fuse 6.2.1 |
| Content from issues.jboss.org is not included.ENTESB-4777 | Unable to install switchyard-http feature |
| Content from issues.jboss.org is not included.ENTESB-4815 | Camel Enrich route not marshalled properly after 2.15.2->2.16.1 update |
| Content from issues.jboss.org is not included.ENTESB-4850 | No bean could be found in the registry for: ConnectionFactory of type: javax.jms.ConnectionFactory |
| Content from issues.jboss.org is not included.ENTESB-4895 | Switchyard application with two services based on a WSDL fails to deploy using Java 8 |
| Content from issues.jboss.org is not included.ENTESB-5016 | bpel-jms-binding QS on Fuse/Karaf : Username [karaf] or password is invalid |
| Content from issues.jboss.org is not included.ENTESB-5018 | camel-amqp-binding quickstart : unsatisfied requirement |
| Content from issues.jboss.org is not included.ENTESB-5025 | rest-binding error : dual dependency chains |
| Content from issues.jboss.org is not included.ENTESB-5027 | ftp-binding quickstart ReadMe Fuse section needs changes |
| Content from issues.jboss.org is not included.ENTESB-5055 | Add deltaspike module to switchyard |
| Content from issues.jboss.org is not included.ENTESB-5084 | SwitchYard: Karaf build test failure |
| Content from issues.jboss.org is not included.ENTESB-5113 | Message trace modifies character encoding |
| Content from issues.jboss.org is not included.ENTESB-5140 | Verify that quickstarts do not refer to SNAPSHOT versions |
| Content from issues.jboss.org is not included.ENTESB-5146 | Enable smooks bundle in features.xml |
| Content from issues.jboss.org is not included.ENTESB-5164 | Change geronimo servlets 3.0 spec use to javax.servlets |
| Content from issues.jboss.org is not included.ENTESB-5194 | can't install feature switchyard-demo-security-propagation-jms |
| Content from issues.jboss.org is not included.ENTESB-5195 | can't install switchyard-demo-policy-security-basic |
| Content from issues.jboss.org is not included.ENTESB-5208 | bpel: wait timer longer than 30 seconds causes process to wait indefinitely |
| Content from issues.jboss.org is not included.ENTESB-5221 | bpel-xts-subordinate-wsba quickstart deployment fails |
| Content from issues.jboss.org is not included.ENTESB-5258 | Re-enable org.switchyard.karaf.test.quickstarts.CamelMQTTBindingQuickstartTest |
| Content from issues.jboss.org is not included.ENTESB-5264 | camel Mail changes to only accept lower-cased "cc/bcc" in 2.17 |
| Content from issues.jboss.org is not included.ENTESB-5283 | SecurityServices info should be cached for performance |
| Content from issues.jboss.org is not included.ENTESB-5360 | ClassNotFoundException: javax.jws.WebService from Module org.apache.camel.cxf:main |
| Content from issues.jboss.org is not included.ENTESB-5385 | Fix Readme.md in "security-propagation-jms" quickstart |
| Content from issues.jboss.org is not included.ENTESB-5416 | Switchyard features url adds old version of activemq features url (5.9.0) |
| Content from issues.jboss.org is not included.ENTESB-5418 | hawtio camel inconsistent with karaf camel:context-list |
| Content from issues.jboss.org is not included.ENTESB-5447 | bundle geronimo-servlet_2.5_spec/1.2 may cause various wiring chain issues |
| Content from issues.jboss.org is not included.ENTESB-5491 | SY camel-jms-binding Fuse instructions need to add karaf user to etc/users.properties |
| Content from issues.jboss.org is not included.ENTESB-5564 | transform-datamapper quickstart is missing instructions for Fuse |
| Content from issues.jboss.org is not included.ENTESB-5602 | camel-mqtt-binding - no message received with IBM java |
| Content from issues.jboss.org is not included.ENTESB-5610 | CNFE: org.apache.el.ExpressionFactoryImpl not found via camel-dozer |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5664 | Transform-datamapper quickstart has problems with target folder |
| Content from issues.jboss.org is not included.ENTESB-5689 | Align SwitchYard |
| Content from issues.jboss.org is not included.ENTESB-5700 | [fabric:create] Error executing command: Unable to create zookeeper server configuration |
| Content from issues.jboss.org is not included.ENTESB-5711 | Threading issue with Weld Switchyard and cxf-ws-policy |
| Content from issues.jboss.org is not included.ENTESB-5881 | Cannot install rest-binding quickstart with Java 7 |
| Content from issues.jboss.org is not included.ENTESB-5935 | intermittent ServerModel LinkageError when connecting to ssh container |
5.4. Routing
Table 5.4. Routing Issues Resolved in 6.3.0
| Issue | Description |
|---|---|
| Content from issues.apache.org is not included.AMQ-5652 | IdGenerator not optimal in port restricted enviroments. |
| Content from issues.apache.org is not included.ARIES-1544 | Blueprint property resolution fails for setters with derived type |
| Content from issues.apache.org is not included.CAMEL-1000 | Trace interceptor does not work with Spring-event component |
| Content from issues.apache.org is not included.CAMEL-1001 | ExceptionType handledPolicy is not exposed in the XSD |
| Content from issues.apache.org is not included.CAMEL-1003 | seda component - will lose message if its stopped while it polls |
| Content from issues.apache.org is not included.CAMEL-1019 | unexpected result in pressure testing |
| Content from issues.apache.org is not included.CAMEL-1023 | camel:dot - pipeline is drawn as a multicast |
| Content from issues.apache.org is not included.CAMEL-6069 | java.io.IOException: Permission denied from MarkerFileExclusiveReadLockStrategy.acquireExclusiveReadLock on NAS |
| Content from issues.apache.org is not included.CAMEL-6256 | Camel xmpp dynamic router is not sending incoming messages to openfire upon first failed groupchatroom join |
| Content from issues.apache.org is not included.CAMEL-6336 | camel cdi uses postconstruct to inject in cdi beans |
| Content from issues.apache.org is not included.CAMEL-6720 | SoapJaxbDataFormat not handling correctly SOAP action with request wrapper element |
| Content from issues.apache.org is not included.CAMEL-7443 | Remote Print URI changed to UNC Name |
| Content from issues.apache.org is not included.CAMEL-7500 | Concurrent modification of exchange during retry after netty TCP failure leads to futher processing of failed messages |
| Content from issues.apache.org is not included.CAMEL-7565 | SFTP using PollEnrich with "disconnect=true" and "delete=true" does NOT delete the file |
| Content from issues.apache.org is not included.CAMEL-7822 | Feature camel-google-drive is failing |
| Content from issues.apache.org is not included.CAMEL-7849 | Decrypting properties via Jasypt outside of <camelContext> |
| Content from issues.apache.org is not included.CAMEL-7884 | camel-netty4-http does not work for HTTP POST requests on routingSlip |
| Content from issues.apache.org is not included.CAMEL-7897 | Camel consumes & discards activemq messages after suspension |
| Content from issues.apache.org is not included.CAMEL-7921 | The soapAction HTTP header is not correctly set when running the CXF client in POJO mode using Camel |
| Content from issues.apache.org is not included.CAMEL-8163 | socketFactory must also be set in MailConfiguration when STARTTLS is used |
| Content from issues.apache.org is not included.CAMEL-8193 | Frequent BlockingOperationExceptions under load |
| Content from issues.apache.org is not included.CAMEL-8241 | Exec command failures using Java 8 on Unix |
| Content from issues.apache.org is not included.CAMEL-8270 | camel-rabbitmq: exchangeName in URI must be optional, i.e. default "" exchange |
| Content from issues.apache.org is not included.CAMEL-8302 | Rabbitmq shouldn't require/bind queue if not specified |
| Content from issues.apache.org is not included.CAMEL-8393 | Redelivery doesn't work correctly on Dynamic Routers |
| Content from issues.apache.org is not included.CAMEL-8431 | Consume all files in aws S3 bucket where deleteAfterRead = false |
| Content from issues.apache.org is not included.CAMEL-8437 | Simple bean call doesn't like parenthesis in parameter values |
| Content from issues.apache.org is not included.CAMEL-8455 | camel-linkedin - update_key option should be optional in getHistoricalStatusUpdateStatistics |
| Content from issues.apache.org is not included.CAMEL-8456 | Remove addCompanyUpdateComment endpoint from camel-linkedin |
| Content from issues.apache.org is not included.CAMEL-8457 | Correct return types of some endpoints in camel-linkedin |
| Content from issues.apache.org is not included.CAMEL-8458 | camel-linkedin - public_profile_url option should be String |
| Content from issues.apache.org is not included.CAMEL-8460 | camel-spring-boot - Routes restart during startup |
| Content from issues.apache.org is not included.CAMEL-8461 | camel-netty-http does not respect client's keep-alive setting |
| Content from issues.apache.org is not included.CAMEL-8462 | HttpServerChannelHandler should not store the instance of HttpRequest |
| Content from issues.apache.org is not included.CAMEL-8464 | Remove likeCompanyUpdate endpoint from camel-linkedin |
| Content from issues.apache.org is not included.CAMEL-8466 | Feature camel-linkedin is missing dependencies for xalan, xerces and xmlresolver |
| Content from issues.apache.org is not included.CAMEL-8467 | Update camel-linkedin and camel-box components to use servicemix bundle for htmlunit |
| Content from issues.apache.org is not included.CAMEL-8469 | Several enum types should generate lower case values in camel-linkedin |
| Content from issues.apache.org is not included.CAMEL-8470 | Several small fixes for camel-linkedin |
| Content from issues.apache.org is not included.CAMEL-8471 | Port IdGenerator not optimal in port restricted environments. |
| Content from issues.apache.org is not included.CAMEL-8475 | CamelSpringDelegatingTestContextLoader and TestNG |
| Content from issues.apache.org is not included.CAMEL-8476 | Unexpected behavior in fault handling with doTry/doCatch |
| Content from issues.apache.org is not included.CAMEL-8479 | TrapReceiveTest is failed within Camel 2.15.0 |
| Content from issues.apache.org is not included.CAMEL-8480 | camel-catalog has unnecessary imports if it cannot access some other artifacts |
| Content from issues.apache.org is not included.CAMEL-8484 | File language - Should support file extensions with multiple dots such as tar.gz |
| Content from issues.apache.org is not included.CAMEL-8492 | BeanInfo introspection ignores overriden methods |
| Content from issues.apache.org is not included.CAMEL-8498 | CamelContextFactoryBean missing setEndpoints method |
| Content from issues.apache.org is not included.CAMEL-8500 | ClassCastException when something other than PropertiesComponent is bound to "properties" JNDI name |
| Content from issues.apache.org is not included.CAMEL-8504 | Failed to process Schematron XSLT templates and/or rules on windows |
| Content from issues.apache.org is not included.CAMEL-8505 | Missed CamelSchematronValidationStatus header |
| Content from issues.apache.org is not included.CAMEL-8510 | NPE will be thrown from doAppend() of PaxLoggingConsumer during load testing |
| Content from issues.apache.org is not included.CAMEL-8515 | Camel marshal/unmarshal - Should catch throwable in case dataformat causes an java.lang.Error |
| Content from issues.apache.org is not included.CAMEL-8519 | Salesforce component security listener does not replace old auth header |
| Content from issues.apache.org is not included.CAMEL-8520 | Camel XMPP doesn't use a DNS resolver to look at SRV records |
| Content from issues.apache.org is not included.CAMEL-8521 | camel-script - Should try all classloaders before throwing IAE |
| Content from issues.apache.org is not included.CAMEL-8530 | can't install camel-github feature in karaf |
| Content from issues.apache.org is not included.CAMEL-8540 | S3Consumer uses maxMessagesPerPoll incorrectly |
| Content from issues.apache.org is not included.CAMEL-8546 | No LanguageResolver found for language=js |
| Content from issues.apache.org is not included.CAMEL-8547 | Usage of camel-xmlbeans depends on TCCL |
| Content from issues.apache.org is not included.CAMEL-8556 | AnnotationTypeConverterLoader treats package as class |
| Content from issues.apache.org is not included.CAMEL-8566 | Feature camel-cxf doesn't install all required dependencies |
| Content from issues.apache.org is not included.CAMEL-8568 | Feature camel-swagger doesn't install all required dependencies |
| Content from issues.apache.org is not included.CAMEL-8573 | Feature camel-hbase doesn't install all required dependencies |
| Content from issues.apache.org is not included.CAMEL-8574 | Feature camel-hdfs doesn't install all required dependencies |
| Content from issues.apache.org is not included.CAMEL-8575 | Salesforce component doesn't properly retries the request when doing re-login |
| Content from issues.apache.org is not included.CAMEL-8578 | camel-http - May double encode uri when using HTTP_URI or HTTP_QUERY headers |
| Content from issues.apache.org is not included.CAMEL-8584 | Circuit breaker does not honour halfOpenAfter period |
| Content from issues.apache.org is not included.CAMEL-8585 | The lazy load option doesn't unlock the file |
| Content from issues.apache.org is not included.CAMEL-8587 | Exceptions from multicast aggregators are not propagated to the global exception handler |
| Content from issues.apache.org is not included.CAMEL-8589 | url.getPort returning -1, needs additional check |
| Content from issues.apache.org is not included.CAMEL-8592 | NPE in AbstractListAggregationStrategy if empty list |
| Content from issues.apache.org is not included.CAMEL-8597 | Elasticsearch component ignores indexType header set from endpoint URL |
| Content from issues.apache.org is not included.CAMEL-8607 | Camel endpoint RAW password unsafe characters |
| Content from issues.apache.org is not included.CAMEL-8609 | Remove open-jpa bundle from camel-jpa feature |
| Content from issues.apache.org is not included.CAMEL-8624 | Bean component - Potential NPE in BeanInfo |
| Content from issues.apache.org is not included.CAMEL-8626 | Leaking exchangesInFlightKeys in ManagedRoute |
| Content from issues.apache.org is not included.CAMEL-8628 | camel-dozer component fails when multiple expressions are used in a mapping |
| Content from issues.apache.org is not included.CAMEL-8636 | camel-kafka need to commit the last batch of messages when the auto commit is false |
| Content from issues.apache.org is not included.CAMEL-8639 | Camel FTP component cannot recover after network failure |
| Content from issues.apache.org is not included.CAMEL-8643 | Http Post from a streaming client sometimes fails to parse |
| Content from issues.apache.org is not included.CAMEL-8646 | Camel doesn't allow intercept and advice on the same route |
| Content from issues.apache.org is not included.CAMEL-8649 | Camel RAW() cannot handle String of %2050 |
| Content from issues.apache.org is not included.CAMEL-8660 | camel-ftp - Disconnect when no messages dont call disconnect |
| Content from issues.apache.org is not included.CAMEL-8663 | Namespaces defined on the SOAP envelope get lost in PAYLOAD mode |
| Content from issues.apache.org is not included.CAMEL-8665 | Throttler EIP - Using method call for message per sec exp fails in spring |
| Content from issues.apache.org is not included.CAMEL-8672 | Restlet Rest Component properties are ignored |
| Content from issues.apache.org is not included.CAMEL-8673 | ConcurrentModificationException when creating dynamic routes |
| Content from issues.apache.org is not included.CAMEL-8674 | Camel-Netty4 does not set remote UDP address in headers |
| Content from issues.apache.org is not included.CAMEL-8678 | Infinite recursion in TransactionErrorHandler toString method |
| Content from issues.apache.org is not included.CAMEL-8682 | Context scoped OnException should not be stopped if a route is stopped |
| Content from issues.apache.org is not included.CAMEL-8683 | Using load balancer in onException adds duplicate outputs for each route defined |
| Content from issues.apache.org is not included.CAMEL-8687 | SyslogConverter doesn't handle the structured data rightly |
| Content from issues.apache.org is not included.CAMEL-8688 | Removed StreamCache when doing a Wiretap |
| Content from issues.apache.org is not included.CAMEL-8689 | camel-dozer: Multiple contexts / bundles - Does not use the correct classloader |
| Content from issues.apache.org is not included.CAMEL-8690 | Camel HDFS2 - ShutdownHookManager class not found when shutting down OSGi framework |
| Content from issues.apache.org is not included.CAMEL-8694 | java.lang.NullPointerException in at org.apache.camel.component.netty4.http.NettyHttpProducer$NettyHttpProducerCallback.done |
| Content from issues.apache.org is not included.CAMEL-8702 | when occurs "Connection reset by peer",netty4 client's EventLoopGroup select thread won't shut down |
| Content from issues.apache.org is not included.CAMEL-8707 | camel-smpp: smpps doesn't work over proxy |
| Content from issues.apache.org is not included.CAMEL-8708 | SOAP unmarshalling shouldn't fail for Faults that lack an optional Detail element |
| Content from issues.apache.org is not included.CAMEL-8713 | ParallelAggregate option when using parallel mode does not run in parallel |
| Content from issues.apache.org is not included.CAMEL-8715 | camel-sql - Should close ResultSet |
| Content from issues.apache.org is not included.CAMEL-8717 | camel-kafka feature miss kafka-clients bundle |
| Content from issues.apache.org is not included.CAMEL-8718 | Connection leak with ftp consumer and invalid credentials |
| Content from issues.apache.org is not included.CAMEL-8737 | camel-salesforce - Unable to generate DTOs for Filtered Lookup fields |
| Content from issues.apache.org is not included.CAMEL-8738 | Referring to constants using type |
| Content from issues.apache.org is not included.CAMEL-8742 | RabbitMqConsumer did not retry if connection failed |
| Content from issues.apache.org is not included.CAMEL-8745 | Swagger requires context name with quotes |
| Content from issues.apache.org is not included.CAMEL-8746 | Jasypt with BridgePropertyPlaceholderConfigurer is not handling spring property injection with defaults anymore |
| Content from issues.apache.org is not included.CAMEL-8747 | camel-rx - Should leverage UoW when subscribe or observe |
| Content from issues.apache.org is not included.CAMEL-8748 | DozerBeanMapper cannot instantiate DozerThreadContextClassLoader |
| Content from issues.apache.org is not included.CAMEL-8756 | KafkaConsumer doesn't stop consuming when suspended, preventing graceful route shutdown |
| Content from issues.apache.org is not included.CAMEL-8757 | SO_TIMEOUT not really set on SFTP connections |
| Content from issues.apache.org is not included.CAMEL-8758 | NPE for CacheComponent |
| Content from issues.apache.org is not included.CAMEL-8764 | Camel-Spring-Redis: Jedis bundle require commons-pool2 |
| Content from issues.apache.org is not included.CAMEL-8765 | JpaConsumer - May poll too soon before JPA stuff is initialized |
| Content from issues.apache.org is not included.CAMEL-8768 | hdfs2 component overwrite option is also being applied to directory filesystem path |
| Content from issues.apache.org is not included.CAMEL-8770 | Camel Blueprint - depends-on does not work |
| Content from issues.apache.org is not included.CAMEL-8771 | Add MaxChannelMemorySize and MaxTotalMemorySize for OrderedMemoryAwareThreadPoolExecutor |
| Content from issues.apache.org is not included.CAMEL-8774 | DefaultJettyHttpBinding preserves CONTEXT_ENCODING from the request even HTTP response doesn't contain the header |
| Content from issues.apache.org is not included.CAMEL-8780 | Camel exec component have trouble to load arguments list from message header |
| Content from issues.apache.org is not included.CAMEL-8782 | Configuring endpoints using reference lookup may fail with matching primitive types with their Object counterpart types |
| Content from issues.apache.org is not included.CAMEL-8783 | Transacted not working correctly in scala |
| Content from issues.apache.org is not included.CAMEL-8784 | Policy, Validate, Wiretap Scala DSL don't work out of box |
| Content from issues.apache.org is not included.CAMEL-8785 | StackOverFlowError using Custom InterceptStrategy |
| Content from issues.apache.org is not included.CAMEL-8786 | The ServletContext init parameters check is not right in CamelServletContextListener |
| Content from issues.apache.org is not included.CAMEL-8798 | weaveAddLast throwing UnsupportedOperation when route have a ChoiceDefinition |
| Content from issues.apache.org is not included.CAMEL-8803 | Conflicting classes in camel-jetty9 Maven artifact dependencies |
| Content from issues.apache.org is not included.CAMEL-8804 | NullPointerException in RestSwaggerReader |
| Content from issues.apache.org is not included.CAMEL-8805 | NullPointerException on RestletComponent.disconnect |
| Content from issues.apache.org is not included.CAMEL-8810 | Camel CXF may propagate wrong Content-Length headers |
| Content from issues.apache.org is not included.CAMEL-8812 | Memory leak in HL7MLLPNettyDecoder |
| Content from issues.apache.org is not included.CAMEL-8816 | Elasticsearch component fails in an OSGi environment due to missing names.txt |
| Content from issues.apache.org is not included.CAMEL-8829 | ConcurrentModificationException while logging |
| Content from issues.apache.org is not included.CAMEL-8841 | camel:context-inflight returns 'Object name cannot be null' |
| Content from issues.apache.org is not included.CAMEL-8858 | Camel-Hazelcast: HazelcastComponentHelper miss some operations in mapping |
| Content from issues.apache.org is not included.CAMEL-8864 | Camel-Aggregator JDBC repository always overwrites old exchange |
| Content from issues.apache.org is not included.CAMEL-8871 | null body after exception from transform method |
| Content from issues.apache.org is not included.CAMEL-8874 | camel-blueprint-archetypes should have test dependency of camel-test-blueprint |
| Content from issues.apache.org is not included.CAMEL-8884 | camel:run with CDI has been reported to not work |
| Content from issues.apache.org is not included.CAMEL-8885 | ConsumeLockEntity without ConsumeDelete |
| Content from issues.apache.org is not included.CAMEL-8887 | Exceptions on routes SFTP and SEDA or DISRUPTOR (probably others) |
| Content from issues.apache.org is not included.CAMEL-8888 | Camel-Aws EC2: Add getMessageForResponse to the producer as the other components already do |
| Content from issues.apache.org is not included.CAMEL-8895 | camel-swagger component throws exception, when multiple different camel-contexts in jmx |
| Content from issues.apache.org is not included.CAMEL-8898 | ElementNotFoundException on LinkedIn authentication |
| Content from issues.apache.org is not included.CAMEL-8900 | Javadoc parser in API Component Framework misses first method with void return type in JDK7 |
| Content from issues.apache.org is not included.CAMEL-8901 | NBSP characters in camel-kafka:KafkaConfiguration parameter |
| Content from issues.apache.org is not included.CAMEL-8902 | Camel Facebook - Endpoint URI must contain a parameter |
| Content from issues.apache.org is not included.CAMEL-8904 | Breadcrumb ID changes when using netty4-http as a producer |
| Content from issues.apache.org is not included.CAMEL-8905 | encoding problems in jsonpath |
| Content from issues.apache.org is not included.CAMEL-8909 | Jasypt CLI outputs help twice |
| Content from issues.apache.org is not included.CAMEL-8914 | Unable to shutdown endpoint when intercepted with interceptSendToEndpoint |
| Content from issues.apache.org is not included.CAMEL-8916 | Support autoCreate=true in ftp/ftps/sftp consumers |
| Content from issues.apache.org is not included.CAMEL-8923 | Kafka: Topic name lookup from message headers in the producer causes infinite loop |
| Content from issues.apache.org is not included.CAMEL-8927 | camel-ahc-ws - Do not swallow exception when connecting |
| Content from issues.apache.org is not included.CAMEL-8933 | mail consumer (imap) polls continuously (not using the default polling interval) |
| Content from issues.apache.org is not included.CAMEL-8945 | Loop - Should break out looping if exception happened during routing |
| Content from issues.apache.org is not included.CAMEL-8949 | Netty 3 component spins on receiving TCP RST |
| Content from issues.apache.org is not included.CAMEL-8950 | Injected Quartz2 scheduler doesn't have access to CamelContext in jobs |
| Content from issues.apache.org is not included.CAMEL-8951 | RecipientList with RAW parameter do not work |
| Content from issues.apache.org is not included.CAMEL-8954 | Lock information is not handovered together with Exchange on-completion synchronizations |
| Content from issues.apache.org is not included.CAMEL-8955 | Processor for .pollEnrich incorrectly handles provided AggregationStrategy |
| Content from issues.apache.org is not included.CAMEL-8957 | adviceWith() doesn't work with loadBalance().failover() |
| Content from issues.apache.org is not included.CAMEL-8963 | camel:route-suspend karaf command doesn't work as expected |
| Content from issues.apache.org is not included.CAMEL-8964 | CamelContext - API for control routes may cause Route not to update it state |
| Content from issues.apache.org is not included.CAMEL-8967 | Karaf Camel command for route profile has karaf rbac problem |
| Content from issues.apache.org is not included.CAMEL-8978 | Setting of SOAP headers via the Camel Header "org.apache.cxf.headers.Header.list" not working for CXF data format "PAYLOAD" |
| Content from issues.apache.org is not included.CAMEL-8984 | BlueprintCamelContext OSGi service is not unregistered when context is stopped |
| Content from issues.apache.org is not included.CAMEL-8988 | Can't manually trigger quartz2 jobs |
| Content from issues.apache.org is not included.CAMEL-8989 | SJMS drops messages with null body even if allowNullBody is true |
| Content from issues.apache.org is not included.CAMEL-9005 | Yammer - Endpoint "received" does not work |
| Content from issues.apache.org is not included.CAMEL-9012 | Olingo2's batch process generates the invalid request |
| Content from issues.apache.org is not included.CAMEL-9013 | Camel HTTP no longer supporting chunked transfer encoding with Tomcat |
| Content from issues.apache.org is not included.CAMEL-9017 | Camel-Hazelcast: HazelcastAggregationRepository::confirm should check useRecovery before using persistedCache |
| Content from issues.apache.org is not included.CAMEL-9019 | ManagedRuntimeEndpointRegistry was not enlisted in JMX |
| Content from issues.apache.org is not included.CAMEL-9022 | JacksonTypeConverter breaks CSV marshalling |
| Content from issues.apache.org is not included.CAMEL-9026 | ClassNotFoundException: kafka.serializer.StringEncoder |
| Content from issues.apache.org is not included.CAMEL-9027 | camel-sjms - Parse destinationName from endpointUri having colon in the name |
| Content from issues.apache.org is not included.CAMEL-9029 | JGroups managed routes can be started too early |
| Content from issues.apache.org is not included.CAMEL-9030 | The instructions for camel-example-box-osgi are incorrect |
| Content from issues.apache.org is not included.CAMEL-9031 | Dependency missing in camel-kafka feature |
| Content from issues.apache.org is not included.CAMEL-9032 | Bean component - Should filter out abstract methods |
| Content from issues.apache.org is not included.CAMEL-9035 | unbind smpp connection bug |
| Content from issues.apache.org is not included.CAMEL-9037 | DefaultJmsMessageListenerContainer leaks threads |
| Content from issues.apache.org is not included.CAMEL-9043 | Fix camel-example-cxf-osgi/blueprint examples |
| Content from issues.apache.org is not included.CAMEL-9048 | camel-core causes restart of karaf console if it is refreshed |
| Content from issues.apache.org is not included.CAMEL-9049 | Websocket Component not shutting down embedded jetty server on component shutdown |
| Content from issues.apache.org is not included.CAMEL-9057 | Camel Example Servlet REST generates java.lang.NoClassDefFoundError: scala/xml/PrettyPrinter |
| Content from issues.apache.org is not included.CAMEL-9059 | Jetty exposes its endpoint without component name |
| Content from issues.apache.org is not included.CAMEL-9065 | Exchange created needs to be aware of its FROM endpoint. |
| Content from issues.apache.org is not included.CAMEL-9079 | XPathBuilder - Evaluate without exchange inconsistent response |
| Content from issues.apache.org is not included.CAMEL-9087 | camel-pgevent payload always null |
| Content from issues.apache.org is not included.CAMEL-9089 | Ambiguous URI in Rest API |
| Content from issues.apache.org is not included.CAMEL-9090 | camel-cxf - test dependency not in test scope? |
| Content from issues.apache.org is not included.CAMEL-9092 | MQTT consumer receives duplicate messages after broker restart |
| Content from issues.apache.org is not included.CAMEL-9094 | Can't use custom FTPParser on OSGI |
| Content from issues.apache.org is not included.CAMEL-9099 | [camel-script] wrong detection of script engine factories |
| Content from issues.apache.org is not included.CAMEL-9101 | RabbitMQ specific message properties are forwarded as message headers |
| Content from issues.apache.org is not included.CAMEL-9104 | HttpHelper concats fixed endpoint URI query parameters with CamelHttpPath header in wrong order |
| Content from issues.apache.org is not included.CAMEL-9106 | URI option mapMailMessage doesn't obey peek=true option |
| Content from issues.apache.org is not included.CAMEL-9112 | Problem upgrading to Camel 2.14.3 in Karaf 3.0.4 |
| Content from issues.apache.org is not included.CAMEL-9121 | activemq-camel pulls in outdated version of commons-pool2 |
| Content from issues.apache.org is not included.CAMEL-9122 | Ruby script cannot access request object |
| Content from issues.apache.org is not included.CAMEL-9124 | RedeliveryPattern should support property placeholders |
| Content from issues.apache.org is not included.CAMEL-9126 | camel-swagger may see unrelated type=context mbeans |
| Content from issues.apache.org is not included.CAMEL-9127 | SmppConsumer throws IllegalArgumentException if the delivery receipt contains vendor specific optional parameters |
| Content from issues.apache.org is not included.CAMEL-9130 | "need to add the dependency of jedis as redis client lib" |
| Content from issues.apache.org is not included.CAMEL-9139 | Reading parameter not configurable via header in camel-facebook |
| Content from issues.apache.org is not included.CAMEL-9140 | Missing configuration properties in camel-facebook |
| Content from issues.apache.org is not included.CAMEL-9142 | dropped support for multiple blueprint descriptors in unit tests |
| Content from issues.apache.org is not included.CAMEL-9143 | Producers that implement the ServicePoolAware interface cause memory leak due to JMX references |
| Content from issues.apache.org is not included.CAMEL-9144 | Regression with camel-jackson 2.15.3 |
| Content from issues.apache.org is not included.CAMEL-9150 | Seda suspend/resume should not trigger start/stop logic |
| Content from issues.apache.org is not included.CAMEL-9151 | Wrong statistics for subroutes |
| Content from issues.apache.org is not included.CAMEL-9159 | wireTap("log: ...") leads to script engine error |
| Content from issues.apache.org is not included.CAMEL-9161 | Camel spring-boot not finding routes when using spring-cloud |
| Content from issues.apache.org is not included.CAMEL-9164 | errorHandlerRef causes NoSuchBeanException on uninstall |
| Content from issues.apache.org is not included.CAMEL-9166 | Some functionality broken in Camel-8857 |
| Content from issues.apache.org is not included.CAMEL-9171 | camel-xmpp processes no messages when running in Karaf |
| Content from issues.apache.org is not included.CAMEL-9177 | combination of JPA-Component, loop and wiretap throws entitymanger cloesd exception |
| Content from issues.apache.org is not included.CAMEL-9183 | java.lang.IllegalArgumentException: Unsupported namespaces: [http://camel.apache.org/schema/blueprint] |
| Content from issues.apache.org is not included.CAMEL-9191 | camel-example-spring-jms ServerRoutes contains invalid URI parameter methodName |
| Content from issues.apache.org is not included.CAMEL-9195 | Memory leak in UndertowProducer |
| Content from issues.apache.org is not included.CAMEL-9196 | CLONE - DefaultShutdownStrategy shutdown timeout of 0 will never timeout and go in negative time |
| Content from issues.apache.org is not included.CAMEL-9199 | RabbitMQ Consumer threads crash when sending partially serializable objects |
| Content from issues.apache.org is not included.CAMEL-9200 | Context component conflates endpoints with the same local id from different CamelContexts |
| Content from issues.apache.org is not included.CAMEL-9202 | Flatpack: Body reader never closed |
| Content from issues.apache.org is not included.CAMEL-9205 | REST endpoint with CORS sends invalid header value for Access-Control-Allow-Origin |
| Content from issues.apache.org is not included.CAMEL-9208 | camel-netty4-http does not resolve nettyHttpBinding option |
| Content from issues.apache.org is not included.CAMEL-9215 | Missing .handled(true) in Camel 2.16.0 when using wiretap and newExchangeBody |
| Content from issues.apache.org is not included.CAMEL-9217 | URI validation verifies usage of & char incorrectly |
| Content from issues.apache.org is not included.CAMEL-9220 | swagger - Model schema not including nested objects |
| Content from issues.apache.org is not included.CAMEL-9223 | IllegalArgumentException when reverting fields using property placeholders |
| Content from issues.apache.org is not included.CAMEL-9227 | No type converter available to convert from Bean to List |
| Content from issues.apache.org is not included.CAMEL-9230 | CXFRS NPE when response code not in Response.Status |
| Content from issues.apache.org is not included.CAMEL-9231 | camel-example-spring-ws - Does not work |
| Content from issues.apache.org is not included.CAMEL-9233 | ZipFileDataFormat doesn't take exchange's charset into account |
| Content from issues.apache.org is not included.CAMEL-9235 | No type converter available when destination is super type |
| Content from issues.apache.org is not included.CAMEL-9238 | NPE while GenericFile.changeFileName |
| Content from issues.apache.org is not included.CAMEL-9243 | Invocation of Bean fails when Bean extends and abstract which implements the actual method |
| Content from issues.apache.org is not included.CAMEL-9245 | camel-paho - Endpoint should allow a flexible naming. |
| Content from issues.apache.org is not included.CAMEL-9246 | camel-cxf proxy with MTOM does not get attachment back when RPC/literal style WSDL used |
| Content from issues.apache.org is not included.CAMEL-9247 | rest-dsl with api-doc should allow multiple rest's |
| Content from issues.apache.org is not included.CAMEL-9248 | Exception is thrown when receiving a message where JMSDestination is null |
| Content from issues.apache.org is not included.CAMEL-9255 | documentType not used for XPath predicates in XML DSL |
| Content from issues.apache.org is not included.CAMEL-9257 | route stop/start doesn't work for camel-websocket producer |
| Content from issues.apache.org is not included.CAMEL-9259 | enableTrace of the Main class doesn't work |
| Content from issues.apache.org is not included.CAMEL-9269 | NotifyBuilder.fromRoute() does not work for some endpoint types |
| Content from issues.apache.org is not included.CAMEL-9270 | rest-dsl - CORS support doesn't work with Restlet 2.3 |
| Content from issues.apache.org is not included.CAMEL-9272 | openweathermap.org requires an APPID id since 09/10/2015 |
| Content from issues.apache.org is not included.CAMEL-9276 | Netty4 component allows multiple consumers to bind to the same {host}:{port} |
| Content from issues.apache.org is not included.CAMEL-9277 | FTP shutdown whole context on startup if throwExceptionOnConnectFailed true |
| Content from issues.apache.org is not included.CAMEL-9281 | Http4 component removes trailing slashes from http requests (producer) |
| Content from issues.apache.org is not included.CAMEL-9282 | IndexOutOfBoundsException if SoapAction parameter is empty |
| Content from issues.apache.org is not included.CAMEL-9290 | netty4 consumer in clientMode only reconnects once |
| Content from issues.apache.org is not included.CAMEL-9311 | Concurrency issue with the dynamic router |
| Content from issues.apache.org is not included.CAMEL-9313 | CamelBlueprintTestSupport - can't initialize ConfigAdmin configurations |
| Content from issues.apache.org is not included.CAMEL-9316 | LevelDBAggregationRepository is logging warnings when exchange is already complete on first aggregation |
| Content from issues.apache.org is not included.CAMEL-9318 | org.apache.camel.component.twitter.TwitterEndpointEvent cannot be cast to org.apache.camel.component.direct.DirectEndpoint |
| Content from issues.apache.org is not included.CAMEL-9319 | SshClient resource leak when used from ProducerTemplate |
| Content from issues.apache.org is not included.CAMEL-9321 | Blueprint example and archetype does not work when executed with camel:run |
| Content from issues.apache.org is not included.CAMEL-9331 | Thread leak in Http4Endpoint, doStop() does not close() the httpClient |
| Content from issues.apache.org is not included.CAMEL-9340 | FileIdempotentRepository fails to create fileStore when no path is specified |
| Content from issues.apache.org is not included.CAMEL-9347 | camel-blueprint - Fix auto lookup of transaction policy |
| Content from issues.apache.org is not included.CAMEL-9362 | Camel CDI component should not require the PAX CDI Camel capability |
| Content from issues.apache.org is not included.CAMEL-9366 | CXFRS "skipFaultLogging" attribute doesn't work in Spring |
| Content from issues.apache.org is not included.CAMEL-9368 | Netty4 producer hangs when connection is prematurely closed |
| Content from issues.apache.org is not included.CAMEL-9374 | camel-mail - The dummyTrustManager do not work |
| Content from issues.apache.org is not included.CAMEL-9375 | camel-tarfile - TarSplitter includes one extra empty entry at the end |
| Content from issues.apache.org is not included.CAMEL-9381 | Upgrade camel-amqp to the latest qpid-jms-client |
| Content from issues.apache.org is not included.CAMEL-9384 | Host HTTP header should contain a port number if it differs form 80 |
| Content from issues.apache.org is not included.CAMEL-9386 | Camel-git: Support credentials in clone operation |
| Content from issues.apache.org is not included.CAMEL-9391 | Set parameter enableEventsResending should be before Atmosphere wrap request |
| Content from issues.apache.org is not included.CAMEL-9398 | NullPointerException when connectionKey is not valid |
| Content from issues.apache.org is not included.CAMEL-9405 | Amazon SQS message deletion behaviour change on exception |
| Content from issues.apache.org is not included.CAMEL-9406 | Request Reply via RabbitMQ not handling reply correctly |
| Content from issues.apache.org is not included.CAMEL-9411 | Remove old stuff |
| Content from issues.apache.org is not included.CAMEL-9417 | SOAP 1.2 Fault processing should use value of Reasontext to build exception message |
| Content from issues.apache.org is not included.CAMEL-9423 | dependency on restlet in camel-rx module does have default scope |
| Content from issues.apache.org is not included.CAMEL-9424 | CronScheduledRoutePolicy regression introduced with 2.16, setting both start and stop route times fails with duplicate trigger |
| Content from issues.apache.org is not included.CAMEL-9425 | base.path, host, and schemes are all ignored for generating the swagger definitions |
| Content from issues.apache.org is not included.CAMEL-9426 | spring-boot with rest-dsl with api-doc registers multiple instances with multiple RouteBuilders |
| Content from issues.apache.org is not included.CAMEL-9431 | camel-spring-boot - TypeConverter autoconfiguration leads to invalid shutdown sequence |
| Content from issues.apache.org is not included.CAMEL-9432 | Bindy CSV separator not treated as regex but fixed character in all cases |
| Content from issues.apache.org is not included.CAMEL-9438 | Unable to use camel-example-cxf |
| Content from issues.apache.org is not included.CAMEL-9439 | Cannot use camel-geocoder in Karaf |
| Content from issues.apache.org is not included.CAMEL-9442 | Query string gets decoded when bridging from netty-http to http4 |
| Content from issues.apache.org is not included.CAMEL-9444 | Incorrect exceptions handling from Splitter |
| Content from issues.apache.org is not included.CAMEL-9459 | Cannot install camel-kubernetes in karaf |
| Content from issues.apache.org is not included.CAMEL-9462 | HTTP 1.1 Host header be dealt wrongly in proxy & load balancer |
| Content from issues.apache.org is not included.CAMEL-9468 | Bindy fails to marshal objects in Spring Boot |
| Content from issues.apache.org is not included.CAMEL-9480 | IdempotentConsumer - If exception from repo it should be able to handle by onException |
| Content from issues.apache.org is not included.CAMEL-9483 | Deploying bundle with Camel routes packaged in KAR fails randomly |
| Content from issues.apache.org is not included.CAMEL-9491 | statement.maxRows not working as expected camel jdbc |
| Content from issues.apache.org is not included.CAMEL-9503 | OnCompletion - restores the rollback only last in the wrong key |
| Content from issues.apache.org is not included.CAMEL-9505 | RabbitMQConsumer don't use Camel ExceptionHandler BEFORE requeing message |
| Content from issues.apache.org is not included.CAMEL-9506 | STOMP component does not handle stream objects |
| Content from issues.apache.org is not included.CAMEL-9509 | camel-cometd is not working with camel 2.15.2 |
| Content from issues.apache.org is not included.CAMEL-9522 | Groovy does not work with spring boot |
| Content from issues.apache.org is not included.CAMEL-9526 | Blueprint depends-on can no longer contain multiple bean ids |
| Content from issues.apache.org is not included.CAMEL-9527 | camel-netty4 - Should not log stacktrace when client has received reply |
| Content from issues.apache.org is not included.CAMEL-9528 | Camel loadbalancing example is broken |
| Content from issues.apache.org is not included.CAMEL-9532 | Default value given in RestOperationParamDefinition not output in swagger api |
| Content from issues.apache.org is not included.CAMEL-9543 | Discovering new type converters in OSGi wipes out those manually added |
| Content from issues.apache.org is not included.CAMEL-9545 | Dozer classloading may fail with spring based context |
| Content from issues.apache.org is not included.CAMEL-9553 | Twitter consumer doesn't respect the delay parameter |
| Content from issues.apache.org is not included.CAMEL-9555 | Setting deadLetterHandleNewException to false breaks DeadLetterChannel default exception handling |
| Content from issues.apache.org is not included.CAMEL-9557 | Facebook consumer throws IllegalArgumentException with reading parameters |
| Content from issues.apache.org is not included.CAMEL-9558 | DefaultErrorHandler logs despite "handled true" |
| Content from issues.apache.org is not included.CAMEL-9560 | RabbitMQ InOut Producer generates a null body response when a correlationId is used |
| Content from issues.apache.org is not included.CAMEL-9566 | camel-asf-ws component does not reconnect to the web socket |
| Content from issues.apache.org is not included.CAMEL-9569 | Idempotent Consumer EIP - Memory leak when add/remove routes |
| Content from issues.apache.org is not included.CAMEL-9576 | ClassLoadingAwareObjectInputStream cannot handle deserializing proxies with mixed JDK & non-JDK interfaces |
| Content from issues.apache.org is not included.CAMEL-9582 | swagger-api docs not working in only using xml without any java route |
| Content from issues.apache.org is not included.CAMEL-9593 | camel-example-swagger-cdi is not producing valid swagger definition |
| Content from issues.apache.org is not included.CAMEL-9599 | camel-cxfrs - When responding then do not use content-length from input |
| Content from issues.apache.org is not included.CAMEL-9607 | chmod does not work for the File producer whitout setting a charset |
| Content from issues.apache.org is not included.CAMEL-9608 | camel-jpa consumer fails to poll after transaction timeout |
| Content from issues.apache.org is not included.CAMEL-9611 | Restlet GET request should not trying to stringify the exchange body |
| Content from issues.apache.org is not included.CAMEL-9613 | camel-spark-rest - Adds duplicate content-type |
| Content from issues.apache.org is not included.CAMEL-9614 | xsd schemalocation for osgi blueprint is using http instead of https |
| Content from issues.apache.org is not included.CAMEL-9636 | CamelBlueprintTestSupport - initialization error in case of empty cm:property-placeholder |
| Content from issues.apache.org is not included.CAMEL-9640 | Query string gets decoded when bridging from netty*-http to netty*-http |
| Content from issues.apache.org is not included.CAMEL-9641 | Simple backwards parser bug if using file |
| Content from issues.apache.org is not included.CAMEL-9656 | Using SpringBoot HealthEndpoint bean throws AmbiguousMethodCallException |
| Content from issues.apache.org is not included.CAMEL-9658 | Path gets decoded when bridging HTTP endpoints |
| Content from issues.apache.org is not included.CAMEL-9660 | HTTP producers crash when Exchange.HTTP_URI header contains unencoded unsafe characters |
| Content from issues.apache.org is not included.CAMEL-9664 | DefaultRestletBinding.populateRestletRequestFromExchange uses wrong mediaType comparison |
| Content from issues.apache.org is not included.CAMEL-9665 | camel-ahc-ws Consumer does not connect |
| Content from issues.apache.org is not included.CAMEL-9666 | Safe copy of DefaultExchange does not propagate 'fault' property |
| Content from issues.apache.org is not included.CAMEL-9667 | Resequencer does not work with asynchronous producers |
| Content from issues.apache.org is not included.CAMEL-9668 | Add lzf to DataFormatsDefinition |
| Content from issues.apache.org is not included.CAMEL-9670 | Camel-ftp: No error message on invalid credentials |
| Content from issues.apache.org is not included.CAMEL-9672 | ClassCastException with interceptFrom |
| Content from issues.apache.org is not included.CAMEL-9673 | doTry .. doFinally should run the finally block for fault messages also |
| Content from issues.apache.org is not included.CAMEL-9680 | Stream caching is broken under Spring Boot |
| Content from issues.apache.org is not included.CAMEL-9686 | camel-aws - Using cron scheduler on aws-s3 do not work |
| Content from issues.apache.org is not included.CAMEL-9687 | camel-swagger - Should use resolved placeholders in output |
| Content from issues.apache.org is not included.CAMEL-9698 | camel-servlet karaf feature misses dependency on camel-core |
| Content from issues.apache.org is not included.CAMEL-9700 | seda - discardIfNoConsumers=true do not call on completions |
| Content from issues.apache.org is not included.CAMEL-9703 | Infinispan endpoint requires infinispan-query-dsl |
| Content from issues.apache.org is not included.CAMEL-9710 | Camel Dozer Component - Fails to load custom function due to NPE |
| Content from issues.apache.org is not included.CAMEL-9713 | Can not set custom Jetty HttpClient to producer endpoint |
| Content from issues.apache.org is not included.CAMEL-9714 | camel-boon - Unmarshal to Map does not work |
| Content from issues.apache.org is not included.CAMEL-9728 | change Reader to InputStream if the camel-cxf endpoint use RAW|MESSAGE DataFormat |
| Content from issues.apache.org is not included.CAMEL-9730 | NPE in camel-jaxb when using in OSGi running from CamelTestBlueprint |
| Content from issues.apache.org is not included.CAMEL-9731 | Camel-josql: the sql script language does not work |
| Content from issues.apache.org is not included.CAMEL-9732 | camel-swagger-java - Issue in appendModels in the reader |
| Content from issues.apache.org is not included.CAMEL-9738 | Thread leak for camel-mina2 consumers |
| Content from issues.apache.org is not included.CAMEL-9739 | Mina2Consumer exception handler do close session also for IOException |
| Content from issues.apache.org is not included.CAMEL-9767 | CDI deployment problem in JBoss EAP 6.3 |
| Content from issues.apache.org is not included.CAMEL-9774 | CXFPayload may lose CDATA sections under stream caching |
| Content from issues.apache.org is not included.CAMEL-9777 | camel-zipfile - Using zip iterator with dataformat may fail |
| Content from issues.apache.org is not included.CAMEL-9779 | camel-netty4-http - Using no port number issue |
| Content from issues.apache.org is not included.CAMEL-9780 | Cannot install camel-hazelcast in Karaf 3.x |
| Content from issues.apache.org is not included.CAMEL-9784 | Camel polling the files from S3 only once if deleteAfterRead is false |
| Content from issues.apache.org is not included.CAMEL-9793 | PropertyPlaceHolder not loading Property, thinks it is a Parameter |
| Content from issues.apache.org is not included.CAMEL-9794 | camel-http4 - The producer should check the response header in the reply for content-type |
| Content from issues.apache.org is not included.CAMEL-9805 | camel-sql - body not copied from in to out when useing outputHeader and outputType=SelectOne when sql doesn't return a result |
| Content from issues.apache.org is not included.CAMEL-9807 | Blocking of CXF consumer endpoint by http GET request |
| Content from issues.apache.org is not included.CAMEL-9812 | Camel leaves Kafka consumers running after shutdown |
| Content from issues.apache.org is not included.CAMEL-9819 | camel-jetty8 test missing dependency |
| Content from issues.apache.org is not included.CAMEL-9820 | SFTP readLock=changed does not work with readLockMinAge option |
| Content from issues.apache.org is not included.CAMEL-9821 | camel-cxf should be able to handle InOnly MEP for the RAW|MESSAGE dataFormat |
| Content from issues.apache.org is not included.CAMEL-9834 | WatchConsumer does not properly set watchIndex |
| Content from issues.apache.org is not included.CAMEL-9841 | NPE in MIME-Multipart Data Format if no file name is defined on attachment |
| Content from issues.apache.org is not included.CAMEL-9851 | Zookeeper RoutePolicy failing to create znode |
| Content from issues.apache.org is not included.CAMEL-9852 | Camel-weather: freegeoip.net is no longer available. Need switch to something else. |
| Content from issues.apache.org is not included.CAMEL-9853 | Camel-CXF: Possible NPE in DefaultCXFBinding |
| Content from issues.apache.org is not included.CAMEL-9854 | CXF Stream Cache contains duplicate namespace definition |
| Content from issues.apache.org is not included.CAMEL-9862 | Potential NPE in UndertowComponent.unregisterConsumer |
| Content from issues.apache.org is not included.CAMEL-9866 | @PropertyInject doesn't work with Spring-Boot |
| Content from issues.apache.org is not included.CAMEL-9874 | Camel Jetty consumer endpoint incorrectly handles multipart/form-data |
| Content from issues.apache.org is not included.CAMEL-9876 | Error handling in splitter is broken with version 2.17.0 |
| Content from issues.apache.org is not included.CAMEL-9881 | Aggregator completionPredicate unusable with scala DSL |
| Content from issues.apache.org is not included.CAMEL-9887 | onCompletion not called on Splitter configured with CompletionAwareAggregationStrategy and shareUnitOfWork=true |
| Content from issues.apache.org is not included.CAMEL-9890 | Migrate Camel-websocket to Jetty9 |
| Content from issues.apache.org is not included.CAMEL-9891 | ApplicationReadyEvent not dispatched if camel.springboot.main-run-controller = true |
| Content from issues.apache.org is not included.CAMEL-9896 | Deadletter Failure processor is invoked even if error handling strategy defines to continue routing |
| Content from issues.apache.org is not included.CAMEL-9903 | DumpRouteStatsAsXml do not work when jmx domain is customized |
| Content from issues.apache.org is not included.CAMEL-9906 | camel-sql - Should allow null values as a valid value |
| Content from issues.apache.org is not included.CAMEL-9911 | RestBindingMode auto not honored |
| Content from issues.apache.org is not included.CAMEL-9920 | Handle SocketTimeoutException on accept |
| Content from issues.apache.org is not included.CAMEL-9921 | Dozer variable mapping doesn't work on karaf |
| Content from issues.apache.org is not included.CAMEL-9926 | HTTP Proxy support in Salesforce component is broken with upgrade to Jetty9 |
| Content from issues.apache.org is not included.CAMEL-9929 | camel-restlet - Using synchronous=false with no error handler leak inflight exchange |
| Content from issues.apache.org is not included.CAMEL-9933 | Camel-CSV marshalling breaks characters not in default charset |
| Content from issues.apache.org is not included.CAMEL-9941 | Blueprint bug ARIES-1544 causes issues in Olingo2 configuration |
| Content from issues.apache.org is not included.CAMEL-9950 | Camel-Websocket: NPE in case minThreads, maxThreads and getThreadPool equals to null |
| Content from issues.apache.org is not included.CAMEL-9951 | Setup default values for thread-connected properties in WebSocket component |
| Content from issues.apache.org is not included.CAMEL-9953 | Camel-ssh: Review logic in doStart and doStop in the SshConsumer and SshProducer |
| Content from issues.apache.org is not included.CAMEL-9960 | create ReaderInputStream align encoding with Exchange |
| Content from issues.apache.org is not included.CAMEL-9968 | camel restlet not populating body form parameters correctly for x-www-form-urlencoded |
| Content from issues.apache.org is not included.CAMEL-9972 | Explicitly add Connection Close HTTP header with a parameter in URI |
| Content from issues.apache.org is not included.CAMEL-9973 | CdiCamelExtension.shouldDeployDefaultCamelContext throws NPE with primitive injection points |
| Content from issues.apache.org is not included.CAMEL-9978 | Camel-Kafka: configuration type mismatch for parameter acks |
| Content from issues.apache.org is not included.CAMEL-9981 | CamelSpringJUnit4ClassRunner registers listeners twice |
| Content from issues.apache.org is not included.CAMEL-9984 | RabbitConsumer.stop() doesn't stop underlying AutorecoveringConnection obtained from supplied ConnectionFactory |
| Content from issues.apache.org is not included.CAMEL-9986 | MIME-Multipart Data Format is inconsistent if trying to unmarshal non-MIME data |
| Content from issues.apache.org is not included.CAMEL-9995 | Camel-JMS: includeAllJMSXProperties parameter doesn't work |
| Content from issues.jboss.org is not included.ENTESB-2799 | Improper Handling of Spring NullPointerException |
| Content from issues.jboss.org is not included.ENTESB-4223 | Feature camel-spring security does not install spring-security-config bundle |
| Content from issues.jboss.org is not included.ENTESB-4811 | Camel 2.17.x.redhat-6-3-x-checkin has multiple test failures |
| Content from issues.jboss.org is not included.ENTESB-4957 | missing package org.apache.geronimo.osgi.locator for features:install pax-*-tomcat |
| Content from issues.jboss.org is not included.ENTESB-5007 | Unable to install camel-websocket and camel-cometd feature |
| Content from issues.jboss.org is not included.ENTESB-5134 | Fuse on EAP: Hawtio findComponentNames lookup fails |
| Content from issues.jboss.org is not included.ENTESB-5180 | can't install camel-cdi - incorrect dependency in features.xml |
| Content from issues.jboss.org is not included.ENTESB-5181 | can't install feature camel-hdfs |
| Content from issues.jboss.org is not included.ENTESB-5187 | can't install feature camel-hbase |
| Content from issues.jboss.org is not included.ENTESB-5211 | NullPointerException in camel-cxf consumer with dataFormat=MESSAGE and JMS transport at the end of Camel route |
| Content from issues.jboss.org is not included.ENTESB-5237 | Can't pass a large, form-encoded POST body through camel-jetty |
| Content from issues.jboss.org is not included.ENTESB-5406 | can't install feature camel-ignite |
| Content from issues.jboss.org is not included.ENTESB-5407 | gson two dependency chains jclouds, camel-ironmq |
| Content from issues.jboss.org is not included.ENTESB-5440 | camel-cassandraql component does not preserve headers |
| Content from issues.jboss.org is not included.ENTESB-5457 | Camel WebSocket consumer cannot create server (NullPointerException) |
| Content from issues.jboss.org is not included.ENTESB-5509 | jms failing on osgi.wiring.package=javax.jms)(version>=1.1.0)(!(version>=2.0.0) |
| Content from issues.jboss.org is not included.ENTESB-5516 | Null Pointer On Deployment When Jetty Bean is used in Blueprint with REST DSL |
| Content from issues.jboss.org is not included.ENTESB-5543 | fix camel-jetty* features |
| Content from issues.jboss.org is not included.ENTESB-5570 | Upgrade jgroups version (TCCL issue) |
| Content from issues.jboss.org is not included.ENTESB-5575 | HDFS2 component - ClassNotFoundException - org.apache.htrace.SamplerBuilder |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5666 | woodstox-core-asl : Jar is not a bundle |
| Content from issues.jboss.org is not included.ENTESB-5700 | [fabric:create] Error executing command: Unable to create zookeeper server configuration |
| Content from issues.jboss.org is not included.ENTESB-5935 | intermittent ServerModel LinkageError when connecting to ssh container |
| Content from issues.jboss.org is not included.ENTESB-5950 | can't install feature camel-olingo2 |
| Content from issues.apache.org is not included.ZOOKEEPER-2380 | [ZOOKEEPER-2380] Deadlock between leader shutdown and forwarding ACK to the leader |
| Content from issues.apache.org is not included.ZOOKEEPER-2383 | [ZOOKEEPER-2383] Startup race in ZooKeeperServer |
| Content from issues.jboss.org is not included.ENTESB-4715 | support for camel-sap in Fabric mode |
| Content from issues.jboss.org is not included.ENTESB-5616 | Fix SAP Component build of SAP Data Layer update site |
| Content from issues.jboss.org is not included.ENTESB-5801 | Can't build camel-sap-repository in brew |
5.5. Camel on JBoss EAP
Table 5.5. Camel on JBoss EAP Issues Resolved in 6.3.0
5.6. Web Services
Table 5.6. Web Services Issues Resolved in 6.3.0
| Issue | Description |
|---|---|
| Content from issues.apache.org is not included.COLLECTIONS-580 | [COLLECTIONS-580] Arbitrary remote code execution with InvokerTransformer |
| Content from issues.apache.org is not included.CXF-1194 | Schema Validation & MTOM fails |
| Content from issues.apache.org is not included.CXF-4109 | UriInfo getHost caches first request's host and always returns that on subsequent calls |
| Content from issues.apache.org is not included.CXF-4817 | JAX-RS AsyncResponse implementation needs to call AsyncContext.complete after the request is done |
| Content from issues.apache.org is not included.CXF-5348 | Exception mappers implementing ExceptionMapper through an abstract class are not mapped to the declared exception |
| Content from issues.apache.org is not included.CXF-5640 | CXF bundle is not compatible with new spring features from Karaf |
| Content from issues.apache.org is not included.CXF-5688 | Problem Parsing FIQL Involving Enums |
| Content from issues.apache.org is not included.CXF-5744 | @XmlTransient behavior change in WSDL fault content |
| Content from issues.apache.org is not included.CXF-5788 | JMS replyToDestination doesn't work |
| Content from issues.apache.org is not included.CXF-5795 | Reading the entity from a Response with 202 - Accepted causes NullPointerException |
| Content from issues.apache.org is not included.CXF-5844 | Annotations inherited from interface not merged with annotations from implementing method |
| Content from issues.apache.org is not included.CXF-5846 | ClassCastException in org.apache.cxf.jaxrs.provider.BinaryDataProvider & SourceProvider |
| Content from issues.apache.org is not included.CXF-5862 | NullPointerException in class CustomizationParser |
| Content from issues.apache.org is not included.CXF-5878 | Disabling policy engine causes NPE |
| Content from issues.apache.org is not included.CXF-5897 | Relax setter method name restriction for @context injection |
| Content from issues.apache.org is not included.CXF-5898 | Feature wss4j should be updated after saaj-impl version change |
| Content from issues.apache.org is not included.CXF-5899 | JAX-RS 2.0 Configuration injection is not supported if DynamicFeature is not registered |
| Content from issues.apache.org is not included.CXF-5900 | websocket destination in osgi fails to start after being stopped |
| Content from issues.apache.org is not included.CXF-5904 | wadl2java -inheritResourceParams don't generate parent parameter |
| Content from issues.apache.org is not included.CXF-5906 | Claim Manager only parses first claim value |
| Content from issues.apache.org is not included.CXF-5910 | Filters registered by DynamicFeatures match on overloaded resource methods. |
| Content from issues.apache.org is not included.CXF-5911 | SoapFault's lang property is not set in case of SOAP 1.1 faults |
| Content from issues.apache.org is not included.CXF-5913 | logStacktrace Property Not Implemented in MapEventLogger |
| Content from issues.apache.org is not included.CXF-5916 | WADL contains wrong parameter name for parameter beans |
| Content from issues.apache.org is not included.CXF-5917 | SAMLP Response Validator does not decrypt if EncryptedKey is the assertion element child |
| Content from issues.apache.org is not included.CXF-5920 | JAX-RS Link implementation (LinkBuilder) looses context path |
| Content from issues.apache.org is not included.CXF-5938 | LuceneQueryVisitor is not reusable / not thread-safe |
| Content from issues.apache.org is not included.CXF-5943 | Throw error in exceptionmapper |
| Content from issues.apache.org is not included.CXF-5946 | ensure unregister cxf http transport Servlet OSGi service before we re-register it |
| Content from issues.apache.org is not included.CXF-5949 | LogBrowser not working |
| Content from issues.apache.org is not included.CXF-5952 | wadl2java: process representation params |
| Content from issues.apache.org is not included.CXF-5953 | wadl2java: generate full class name for representation parameter |
| Content from issues.apache.org is not included.CXF-5958 | incorrect OSGi header in cxf-core bundle |
| Content from issues.apache.org is not included.CXF-5961 | wadl2java: 'required = false' don't generated for @Multipart argument |
| Content from issues.apache.org is not included.CXF-5963 | LuceneQueryVisitor should use analyzer to create query properly |
| Content from issues.apache.org is not included.CXF-5964 | JAX-RS Contexts are injected into Application class too late |
| Content from issues.apache.org is not included.CXF-5966 | NPE in MessageContextImpl when setting ResponseBuilder entity in an ExceptionMapper |
| Content from issues.apache.org is not included.CXF-5968 | Setting use.async.http.conduit property causes IllegalArgumentException |
| Content from issues.apache.org is not included.CXF-5969 | CXF does not pass a generic type to ParamConverterProvider |
| Content from issues.apache.org is not included.CXF-5970 | review org.apache.cxf.jaxrs.provider.ProviderFactory.Message*ReaderComparator |
| Content from issues.apache.org is not included.CXF-5972 | Fix all karaf features definitions |
| Content from issues.apache.org is not included.CXF-5974 | WADLGenerator sets representation media type to application/octet-stream by default |
| Content from issues.apache.org is not included.CXF-5976 | incompatible with javax.xml.bind.JAXBElement error when using List<JAXBElement<Book>> as resource method param |
| Content from issues.apache.org is not included.CXF-5978 | Incomplete dependencies in archetype cxf-jaxrs-service |
| Content from issues.apache.org is not included.CXF-5980 | JAX-RS 2.0 client: response.readEntity(new GenericType<...>{}) fails with "unexpected element" UnmarshalException |
| Content from issues.apache.org is not included.CXF-5988 | Provide support for a pluggable parameter conversion mechanism for JAX-RS client side proxies |
| Content from issues.apache.org is not included.CXF-5989 | Query Params not showing up in WADL when declared using @BeanParam |
| Content from issues.apache.org is not included.CXF-5992 | Cannot set org.apache.cxf.stax.maxAttributeCount |
| Content from issues.apache.org is not included.CXF-5995 | ClientProxyImpl problem with handling @BeanParams with null headers/cookies. |
| Content from issues.apache.org is not included.CXF-5999 | Moving JiBX related systests into its own module. |
| Content from issues.apache.org is not included.CXF-6000 | Wrong default algorithm is used for TrustManagerFactory instantiation |
| Content from issues.apache.org is not included.CXF-6003 | jaxrs:server "basePackages" attribute doesn't initialize REST services properly |
| Content from issues.apache.org is not included.CXF-6007 | WebClient does not resend request in Digest authentication for HTTP methods GET, HEAD, DELETE, OPTIONS (with no body). |
| Content from issues.apache.org is not included.CXF-6010 | NPE in MessageModeOutInterceptor.validateFaultDetail for faults with no <detail> |
| Content from issues.apache.org is not included.CXF-6015 | Path parameters containing semicolon are truncated due to missing encoding |
| Content from issues.apache.org is not included.CXF-6020 | UrilInfo.getAbsolutePath() missing path separator between servlet url and relative url |
| Content from issues.apache.org is not included.CXF-6021 | WebClient has Accept defaulted to application/xml |
| Content from issues.apache.org is not included.CXF-6027 | oauth2 client redirect uris are never valid |
| Content from issues.apache.org is not included.CXF-6030 | javax.xml.ws.soap.SOAPFaultException: Fault string, and possibly fault code, not set for cxf. |
| Content from issues.apache.org is not included.CXF-6032 | NullPointerException while validating cert for SAML HOK |
| Content from issues.apache.org is not included.CXF-6034 | Wrong schemaLocation if jax-ws-catalog is used |
| Content from issues.apache.org is not included.CXF-6037 | in JAX-RS search there is no support for java.sql.Time in fiql |
| Content from issues.apache.org is not included.CXF-6038 | Repeatedly invoking setHandlerChain() can cause a build up of handler interceptors on the chain |
| Content from issues.apache.org is not included.CXF-6040 | need use servicemix wrapped opensaml 2.6.1_2 |
| Content from issues.apache.org is not included.CXF-6041 | Corba Binding is throwing a ObjectNotActive Corba exception being thrown back to application code on endpoint/bus shutdown |
| Content from issues.apache.org is not included.CXF-6045 | Setting an entity from ClientRequestFilter has no effect if no entity is already set |
| Content from issues.apache.org is not included.CXF-6057 | WADL to Java code generator does not support the documented "encoding" flag |
| Content from issues.apache.org is not included.CXF-6058 | NPE in cxf-rt-transports-http org.apache.cxf.transport.http.Headers line 280 |
| Content from issues.apache.org is not included.CXF-6059 | wsdl:fault wsdl2java fails with IllegalArgumentException |
| Content from issues.apache.org is not included.CXF-6060 | Calling readEntity() on Response created by Response.build() causes NullPointerException |
| Content from issues.apache.org is not included.CXF-6061 | The publish attribute on jaxws:endpoint doesn't support placeholder in spring configuration |
| Content from issues.apache.org is not included.CXF-6062 | Interceptors added in Spring Bus configuration are ignored |
| Content from issues.apache.org is not included.CXF-6066 | JAX-RS 2.0 Client implementation is OOM prone due to its strongly referencing WebTargets |
| Content from issues.apache.org is not included.CXF-6067 | ProviderFactory fails to analyze generic types correctly with some class hierachies |
| Content from issues.apache.org is not included.CXF-6071 | CXF's WSDL2Java tool can generate impl classes that jdk compiler will refuse to compile |
| Content from issues.apache.org is not included.CXF-6072 | jaxrs securityContext.getUserPrincipal is broken if login is done during the request |
| Content from issues.apache.org is not included.CXF-6073 | cxf-wsn installation in Karaf fails |
| Content from issues.apache.org is not included.CXF-6075 | NPE may occur at websocket destination under high load |
| Content from issues.apache.org is not included.CXF-6076 | MediaType parameter not parsed correctly |
| Content from issues.apache.org is not included.CXF-6077 | In OSGi, the wsdl extensor loaders may not be able to generate their special ExtensibilityELements |
| Content from issues.apache.org is not included.CXF-6078 | AnnotationUtils.getAnnotatedMethod for abstract classes not inherit from interface |
| Content from issues.apache.org is not included.CXF-6089 | XmlAccessorOrder.ALPHABETICAL, Exception.getMessage() duplicate WSDL elements generated |
| Content from issues.apache.org is not included.CXF-6090 | java.lang.NullPointerException when running wsdl2java |
| Content from issues.apache.org is not included.CXF-6091 | Server is not properly stopped with MultipleEndpointObserver |
| Content from issues.apache.org is not included.CXF-6092 | When there is bad connection/timeout, ClientImpl throws NullPointerException |
| Content from issues.apache.org is not included.CXF-6094 | wsdl2java - Default key managers cannot be initialized |
| Content from issues.apache.org is not included.CXF-6096 | http components transport is missing a dependency on commons-logging |
| Content from issues.apache.org is not included.CXF-6101 | Accept Header not Respected with Response from Custom MessageReader |
| Content from issues.apache.org is not included.CXF-6103 | Nillable field, in a json payload, was sent as "@nil":"true" instead of an empty string |
| Content from issues.apache.org is not included.CXF-6105 | CXF 3.x does not use the older WS-SecurityPolicy 1.1 namespace |
| Content from issues.apache.org is not included.CXF-6106 | ClientResponseFilterInterceptor wraps client response exchange message into ClientRequestContextImpl - as a result code can't access client request context |
| Content from issues.apache.org is not included.CXF-6109 | Incorrect TrustException constructor in AbstractSTSClient |
| Content from issues.apache.org is not included.CXF-6111 | JavascriptGetInterceptor.isRecognizedQuery is always false |
| Content from issues.apache.org is not included.CXF-6112 | org.apache.cxf.jaxrs.impl.ResourceContextImpl#getResource should support a custom ResourceProvider |
| Content from issues.apache.org is not included.CXF-6115 | Transferable.transferTo can cause infinite loop or stack overflow |
| Content from issues.apache.org is not included.CXF-6118 | Schema Validation refinements |
| Content from issues.apache.org is not included.CXF-6122 | JAX-RS proxy client with @QueryParam is not encoding the parameter value |
| Content from issues.apache.org is not included.CXF-6127 | Check thrown Exception's cause for SOAPFaultException |
| Content from issues.apache.org is not included.CXF-6137 | WADL generation does not correctly support query parameters |
| Content from issues.apache.org is not included.CXF-6138 | JAXB unmarshaller Properties can't be configured |
| Content from issues.apache.org is not included.CXF-6139 | WADLGenerator may produce a schema invalid resource id |
| Content from issues.apache.org is not included.CXF-6143 | SSL/TLS hostname verification does not strictly follow HTTPS RFC2818 |
| Content from issues.apache.org is not included.CXF-6145 | WS-RM demo server throws exception |
| Content from issues.apache.org is not included.CXF-6146 | Demo wsdl_first_xmlbeans fails to build |
| Content from issues.apache.org is not included.CXF-6147 | Part of demo wsdl_first_soap12 doesnt work |
| Content from issues.apache.org is not included.CXF-6149 | ContainerRequestContextImpl hasEntity() always returns true for non-GET requests. Similar for ClientResponseContextImpl |
| Content from issues.apache.org is not included.CXF-6151 | Apache-cxf wsdlvalidator returns error in mime:part |
| Content from issues.apache.org is not included.CXF-6152 | WSDLValidator may throw ClassCastException under verbose mode |
| Content from issues.apache.org is not included.CXF-6153 | OAuthRequestFilter throws NullPointerException when "Authorization" header is missing |
| Content from issues.apache.org is not included.CXF-6155 | Exceptions thrown from ParamConverter generate 500 response |
| Content from issues.apache.org is not included.CXF-6160 | AsyncResponse infinite loops |
| Content from issues.apache.org is not included.CXF-6163 | WSDL Javascript generator for xsd:any elements is not correct when any is optional |
| Content from issues.apache.org is not included.CXF-6166 | Parsing Bug in org.apache.cxf.jaxrs.provider.json.JsonMapObjectReaderWriter |
| Content from issues.apache.org is not included.CXF-6172 | WS-Discovery should work also in IPv6 only environment |
| Content from issues.apache.org is not included.CXF-6176 | org.apache.cxf.jaxrs.bus.providers property is not taken in account in cxf bus |
| Content from issues.apache.org is not included.CXF-6178 | Missing io.netty.util.Version |
| Content from issues.apache.org is not included.CXF-6184 | HTTPConduit "transport.retransmit.url" property may have side-effects in case of non-redirect retransmits |
| Content from issues.apache.org is not included.CXF-6187 | JMS sample fails "connectionFactory may not be null" |
| Content from issues.apache.org is not included.CXF-6188 | Authorization loop using "CurrentWindowsCredentials" |
| Content from issues.apache.org is not included.CXF-6189 | Improve memory usage of UrlUtils |
| Content from issues.apache.org is not included.CXF-6192 | Cxf Clustering Blueprint handler doesn't create the distribute feature rightly |
| Content from issues.apache.org is not included.CXF-6194 | [multipart] Server handle Collection argument as single element |
| Content from issues.apache.org is not included.CXF-6198 | No SOAPFault for HTTP error code 400 |
| Content from issues.apache.org is not included.CXF-6204 | JAX-RS Set-Cookie parser uses case-sensitive keys |
| Content from issues.apache.org is not included.CXF-6209 | Bug in processing Signed/Encrypted Elements policies with multiple XPaths |
| Content from issues.apache.org is not included.CXF-6210 | XPath evaluation failure on the client side causes all subsequent evaluations to fail |
| Content from issues.apache.org is not included.CXF-6211 | JAX-RS client runtime ignores Content-Type set directly from MessageBodyWriter |
| Content from issues.apache.org is not included.CXF-6217 | JmsPullPoint does not protect against external entities |
| Content from issues.apache.org is not included.CXF-6221 | CDI integration extension does not detect annotations on Karaf |
| Content from issues.apache.org is not included.CXF-6222 | Password can end up in log file |
| Content from issues.apache.org is not included.CXF-6228 | Using XSLTFeature with large messages creates unremovable temporary files |
| Content from issues.apache.org is not included.CXF-6229 | EndpointReferenceUtils.getSchema does NOT cache negative schema parsing |
| Content from issues.apache.org is not included.CXF-6233 | STS client only sends AppliesTo on first RST call |
| Content from issues.apache.org is not included.CXF-6234 | Invalid ?wsdl response with relative imports/includes when using jaxws-catalog.xml |
| Content from issues.apache.org is not included.CXF-6235 | wsdl2java behaves differently from cxf-codegen-plugin |
| Content from issues.apache.org is not included.CXF-6236 | proxyAuthSupplier not used in HTTPConduit.setHeadersByAuthorizationPolicy |
| Content from issues.apache.org is not included.CXF-6241 | WS-RM doesn't work with WS-Security configured with @EndpointProperties |
| Content from issues.apache.org is not included.CXF-6245 | Loading non-existent class org.apache.cxf.xmlbeans.XmlBeansWrapperHelper in WrapperClassOutInterceptor is causing performance issues |
| Content from issues.apache.org is not included.CXF-6246 | missing osgi import of javax.jws |
| Content from issues.apache.org is not included.CXF-6250 | WebSocket conduit fails to process String based responses and throws NPE |
| Content from issues.apache.org is not included.CXF-6252 | JAXRS Async Client hangs in case of Connection errors |
| Content from issues.apache.org is not included.CXF-6256 | Unexpected response code |
| Content from issues.apache.org is not included.CXF-6257 | Creating and Endpoint using JAX-WS API, getting the binding and then publishing causes a NullPointerException |
| Content from issues.apache.org is not included.CXF-6260 | JAXRS Async Client can not handle InvocationCallback TypeVariable |
| Content from issues.apache.org is not included.CXF-6272 | SCT Renew in Secure Conversation |
| Content from issues.apache.org is not included.CXF-6274 | NullPointerException in DestinationSequence because of RMCaptureInInterceptor not in interceptor chain |
| Content from issues.apache.org is not included.CXF-6284 | JAX-RS servlet run-time leaks additional strong references |
| Content from issues.apache.org is not included.CXF-6285 | NPE in SwaggerFeature.calculateDefaultResourcePackage |
| Content from issues.apache.org is not included.CXF-6294 | Cannot activate TLSv1.2 cipher suites on client on Java7 |
| Content from issues.apache.org is not included.CXF-6295 | String cannot be cast to org.apache.ws.security.validate.Validator |
| Content from issues.apache.org is not included.CXF-6297 | JAX-RS BeanValidation feature fails with NPE in JAXRSBeanValidationOutInterceptor on sub-resource call |
| Content from issues.apache.org is not included.CXF-6300 | cipherSuite configuration does not work with HTTPJ servers |
| Content from issues.apache.org is not included.CXF-6302 | JAXRS endpoints with URL encoded addresses can not be located |
| Content from issues.apache.org is not included.CXF-6304 | AuthorizationCodeGrantHandler sets the approved scopes as the requested ones |
| Content from issues.apache.org is not included.CXF-6306 | AuthorizationCodeGrantService does not record a single pre-registered redirect uri in a session if current request has no redirect uri set |
| Content from issues.apache.org is not included.CXF-6307 | Wrong select the message body reader |
| Content from issues.apache.org is not included.CXF-6309 | Client processing exception has its cause set to the original exception wrapped in Fault |
| Content from issues.apache.org is not included.CXF-6313 | SamlHeaderOutInterceptor does not set headers on the message if it had none |
| Content from issues.apache.org is not included.CXF-6314 | WebSocket transport should not require dependency to jetty |
| Content from issues.apache.org is not included.CXF-6315 | Optional WS-Addressing policy doesn't return required soap headers |
| Content from issues.apache.org is not included.CXF-6317 | Authorization not possible with multiple service beans |
| Content from issues.apache.org is not included.CXF-6319 | Regression: failing namespace resolution after CXF-5891 |
| Content from issues.apache.org is not included.CXF-6320 | Zero-length entity should throw 400 on pre-packaged provider |
| Content from issues.apache.org is not included.CXF-6321 | Make sure global JAX-RS filters are applied once per request even if made to sub-resource |
| Content from issues.apache.org is not included.CXF-6322 | AbstractSearchConditionParser not working with UUID fields |
| Content from issues.apache.org is not included.CXF-6327 | Invalid Policy exception for EndorsingSupportingTokens with more than one token assertions |
| Content from issues.apache.org is not included.CXF-6331 | Wrap exceptions in JAXRSBeanValidationInvoker into Fault so that these exceptions are exposed to ExceptionMapper-s |
| Content from issues.apache.org is not included.CXF-6332 | Wadl Genertion: @Description cannot be bound to field |
| Content from issues.apache.org is not included.CXF-6336 | Client ParamConverterProvider may be lost if Client runs in the server scope |
| Content from issues.apache.org is not included.CXF-6338 | Reversed logic in AbstractJwtHandler#validateSignature |
| Content from issues.apache.org is not included.CXF-6340 | Return value of AsyncResponseImpl.cancel() not follow JAXRS 2.0 javadoc |
| Content from issues.apache.org is not included.CXF-6343 | EncryptedHeader not properly processed or generated |
| Content from issues.apache.org is not included.CXF-6347 | CXF bundle activators not called in Eclipse/Equinox |
| Content from issues.apache.org is not included.CXF-6352 | ContainerResponseContext.getLinks() loses links if they have no 'rel' parameter |
| Content from issues.apache.org is not included.CXF-6356 | NPE when calling ServiceUnavailableException.getRetryTime() |
| Content from issues.apache.org is not included.CXF-6359 | NullPointerException when certAlias specified but no keyManagers are configured |
| Content from issues.apache.org is not included.CXF-6361 | HttpCondiut is not detecting the redirect loop properly |
| Content from issues.apache.org is not included.CXF-6366 | JAX-RS Client runtime does not encode forward slashes in Matrix parameters |
| Content from issues.apache.org is not included.CXF-6367 | JAX-RS Client runtime does not check BeanParam bean fields |
| Content from issues.apache.org is not included.CXF-6368 | Unexpected response code |
| Content from issues.apache.org is not included.CXF-6369 | org.apache.cxf.jaxrs.impl.ConfigurationImpl does not comply with SPEC |
| Content from issues.apache.org is not included.CXF-6370 | wrong usages for System.arraycopy in org.apache.cxf.jaxrs.impl.AsyncResponseImpl |
| Content from issues.apache.org is not included.CXF-6371 | WADL Generator does not always correctly deal with generic types |
| Content from issues.apache.org is not included.CXF-6373 | CompletionCallback can not get the Throwable if error occurs in other interceptor (no serviceinvokerInterceptor) |
| Content from issues.apache.org is not included.CXF-6375 | Providers.getMessageBodyReader throws NPE |
| Content from issues.apache.org is not included.CXF-6377 | Wrong media type of response |
| Content from issues.apache.org is not included.CXF-6378 | LinkBuilderImpl does not resolve relative links against baseUri |
| Content from issues.apache.org is not included.CXF-6379 | Separate HTTP headers for multiple header values not possible - bug in CXF-3714 fix |
| Content from issues.apache.org is not included.CXF-6380 | Context provider not working |
| Content from issues.apache.org is not included.CXF-6388 | NPE has been swallowed in org.apache.cxf.jaxrs.impl.AsyncResponseImpl |
| Content from issues.apache.org is not included.CXF-6389 | set initialSuspend=true incorrectly when resume the asyncresponse |
| Content from issues.apache.org is not included.CXF-6390 | JAXRS Async Client does not always wrap the client side exceptions into ProcessingException |
| Content from issues.apache.org is not included.CXF-6392 | Schema imports are not handled correctly in generated WSDL and XSD files |
| Content from issues.apache.org is not included.CXF-6393 | JAXRS Async Client unwraps a parameterized type given to InvocationCallback |
| Content from issues.apache.org is not included.CXF-6395 | Call setTimeout() in a second request cause illegalStateException from web container. |
| Content from issues.apache.org is not included.CXF-6398 | AlgorithmSuitePolicyValidator rejects enveloped-signature Transform |
| Content from issues.apache.org is not included.CXF-6402 | JettyHTTPServerEngine cannot set a provided Jetty Server |
| Content from issues.apache.org is not included.CXF-6403 | Potential memory leak in PolicyBasedWSS4JInInterceptor and AbstractWSS4JStaxInterceptor |
| Content from issues.apache.org is not included.CXF-6406 | WS-RM persistence with RMTxStore does not work with JNDI Lookup |
| Content from issues.apache.org is not included.CXF-6408 | HTTP Conduit throws NPE exception for "invalid" 401 HTTP response |
| Content from issues.apache.org is not included.CXF-6415 | WS-RM client persistent tests are failing |
| Content from issues.apache.org is not included.CXF-6429 | Provider matching when nested generic type |
| Content from issues.apache.org is not included.CXF-6431 | Attachment serialization does not conform to the relevant specs |
| Content from issues.apache.org is not included.CXF-6434 | SOAPAction value may not be extracted correctly for SOAP 1.2 with Attachments |
| Content from issues.apache.org is not included.CXF-6435 | Support base64 for attachment encoding in CXF |
| Content from issues.apache.org is not included.CXF-6436 | NPE in DefaultLogEventMapper when running on cameltransport |
| Content from issues.apache.org is not included.CXF-6442 | Possible uses contraint violation because of different servlet API versions |
| Content from issues.apache.org is not included.CXF-6444 | CrossOriginResourceSharingFilter.java should not set Origin=* when Credentials=true |
| Content from issues.apache.org is not included.CXF-6446 | WADL JavaDocProvider misses operation markers for the docs built with Java 8 |
| Content from issues.apache.org is not included.CXF-6450 | Bad handling of JAX-RS generic interfaces |
| Content from issues.apache.org is not included.CXF-6451 | Set-Cookie Header incorrectly parsed |
| Content from issues.apache.org is not included.CXF-6458 | CXF 3.1.0 memory leak (Tomcat) |
| Content from issues.apache.org is not included.CXF-6464 | The derived key versions of sign/encrypt in SymmetricBindingHandler don't support attachments |
| Content from issues.apache.org is not included.CXF-6466 | Closing JAX-RS clients from finalize affects clients sharing the same conduit |
| Content from issues.apache.org is not included.CXF-6467 | Jaxrs client handles array type property in a form object as a single element |
| Content from issues.apache.org is not included.CXF-6468 | Secure Conversation Renew is missing Instance creation |
| Content from issues.apache.org is not included.CXF-6469 | schemaLocation in xsd import is not rewritten correctly in Java 8 |
| Content from issues.apache.org is not included.CXF-6472 | Cannot create ContextResolver for class extending HttpServletRequest, HttpServletResponse, etc. |
| Content from issues.apache.org is not included.CXF-6473 | Double signatures while using AsymmetricBindingHandler |
| Content from issues.apache.org is not included.CXF-6474 | UriTemplate should not always ignore an empty/null group value |
| Content from issues.apache.org is not included.CXF-6475 | problems using CXF as a JAX-RS 2.0 client |
| Content from issues.apache.org is not included.CXF-6479 | Denial of Service: Regular Expression in StringUtils |
| Content from issues.apache.org is not included.CXF-6480 | InjectionUtils createThreadLocalServletApiContext better error message for invalid @Context classes |
| Content from issues.apache.org is not included.CXF-6481 | Jetty HTTPJ session manager Blueprint configuration is not effective |
| Content from issues.apache.org is not included.CXF-6484 | Regression in Content-id format |
| Content from issues.apache.org is not included.CXF-6488 | Binding style vs part type R2203 And R2204 problems in wsdl document |
| Content from issues.apache.org is not included.CXF-6489 | Cannot set ClientSecretVerifier in AbstractTokenService |
| Content from issues.apache.org is not included.CXF-6491 | wadl2java produces incorrect Consumes annotation for multiple representations on POST methods |
| Content from issues.apache.org is not included.CXF-6492 | AbstractHTTPDestination class incorrectly assume only one empty space after "Basic" in Authorization header value. |
| Content from issues.apache.org is not included.CXF-6493 | cxf-rt-transports-http-3.1.1.jar contains OSGi interface classes |
| Content from issues.apache.org is not included.CXF-6495 | Inconsistent RMAsserion may be built for 3.0.x |
| Content from issues.apache.org is not included.CXF-6502 | JAXRSInInterceptor throw java.lang.IndexOutOfBoundsException if content-type header is empty |
| Content from issues.apache.org is not included.CXF-6506 | Client-side message context value HTTP_REQUEST_HEADERS is not shared between SOAP handlers |
| Content from issues.apache.org is not included.CXF-6507 | WSRM 3.0 may store corrupted message |
| Content from issues.apache.org is not included.CXF-6512 | The host property is missing in Swagger2 feature's configuration properties |
| Content from issues.apache.org is not included.CXF-6513 | CXF Using async WebClient with load distribution failover strategy leads to memory leak |
| Content from issues.apache.org is not included.CXF-6515 | provider sorting not right |
| Content from issues.apache.org is not included.CXF-6517 | Regression in 3.1.2 attachment handling |
| Content from issues.apache.org is not included.CXF-6519 | WS-RM - Invalid response for CloseSequence |
| Content from issues.apache.org is not included.CXF-6522 | ThreadLocalInvocationHandler doesn't handle InvocationTargetException |
| Content from issues.apache.org is not included.CXF-6527 | WSDLRefValidator reject valid target reference URI/IRI |
| Content from issues.apache.org is not included.CXF-6528 | JAX-RS "lastModified" generates timestamp with non-standard format |
| Content from issues.apache.org is not included.CXF-6534 | Kerberos delegation not possible if Authorization given |
| Content from issues.apache.org is not included.CXF-6535 | Swagger2Feature's properties cannot be set when using Blueprint |
| Content from issues.apache.org is not included.CXF-6536 | XML pretty printing produces double line spacing if incoming XML contains linefeeds |
| Content from issues.apache.org is not included.CXF-6542 | Setting the signature digest algorithm on the SAMLCallback does not work for WS-Security |
| Content from issues.apache.org is not included.CXF-6543 | It's not possible to specify the signature + digest algorithms for self-signed SAML Assertions with JAX-RS |
| Content from issues.apache.org is not included.CXF-6547 | HTTPTransportActivator Does Not Propagate Servlet Init Parameters |
| Content from issues.apache.org is not included.CXF-6548 | LoggingOutInterceptor logs the wrong Content-Type for some scenarios |
| Content from issues.apache.org is not included.CXF-6550 | AsyncConduitHTTPFactory will throw NPE if passed properties are null |
| Content from issues.apache.org is not included.CXF-6551 | Digest authentication to intermediate HTTP proxy fails with 407 without retry |
| Content from issues.apache.org is not included.CXF-6552 | Multiple chained schema imports not handled correctly |
| Content from issues.apache.org is not included.CXF-6553 | Unable to override Content-Type on GET requests |
| Content from issues.apache.org is not included.CXF-6558 | DefaultEncryptingOAuthDataProvider.getAccessToken throws SecurityException on invalid accessToken format |
| Content from issues.apache.org is not included.CXF-6559 | AbstractOAuthDataProvider.refreshAccessToken method can't handle an invalid refresh token |
| Content from issues.apache.org is not included.CXF-6561 | ResourceOwnerGrantHandler: ResourceOwnerLoginHandler can't return null or throw exception |
| Content from issues.apache.org is not included.CXF-6570 | FormattedServiceListWriter - meta http-equiv value not quoted |
| Content from issues.apache.org is not included.CXF-6574 | Issue with Digest Authentication |
| Content from issues.apache.org is not included.CXF-6575 | WS-A Action generation defect |
| Content from issues.apache.org is not included.CXF-6577 | MessageContextImpl needs to get a property from a current message first |
| Content from issues.apache.org is not included.CXF-6579 | Inflated tokens can be corrupted if compression ratio is greater than 2:1 |
| Content from issues.apache.org is not included.CXF-6580 | wsdl2java - Issue with import to default namespace |
| Content from issues.apache.org is not included.CXF-6582 | Support newer symmetric signature algorithms with WS-SecurityPolicy |
| Content from issues.apache.org is not included.CXF-6583 | MessageListenerTest#testLocalTransaction fails intermittently |
| Content from issues.apache.org is not included.CXF-6584 | EncryptSignature is ignored |
| Content from issues.apache.org is not included.CXF-6585 | Possible to send invalid Soap 1.2 faults |
| Content from issues.apache.org is not included.CXF-6588 | NPE in providers.getMessageBodyReader |
| Content from issues.apache.org is not included.CXF-6590 | MAPCodec: memory leak with sync client when soapfaults returned from endpoint |
| Content from issues.apache.org is not included.CXF-6591 | Aegis DataSourceType.getBytes fails to close the InputStream fetched from DataSource, which prevents the underlying file to be deleted on Windows |
| Content from issues.apache.org is not included.CXF-6592 | Maven[cxf-java2wadl-plugin] when stylesheetReference are set,package ended with Nullpoint Error |
| Content from issues.apache.org is not included.CXF-6593 | Some thread-local contexts may get lost on the client side after a refresh |
| Content from issues.apache.org is not included.CXF-6595 | CXF Karaf feature file: set dependency = true in the jta bundle for CXF |
| Content from issues.apache.org is not included.CXF-6599 | CXF ProxyHelper might cause OOM like conditions |
| Content from issues.apache.org is not included.CXF-6600 | Sudden repeating NPE on token request by STSClient |
| Content from issues.apache.org is not included.CXF-6601 | Swagger2Feature can hit a NPE when running in localtransport |
| Content from issues.apache.org is not included.CXF-6602 | Digest algorithms are not set properly when derived keys are used |
| Content from issues.apache.org is not included.CXF-6606 | Encoded characters in URI are decoded multiple times during preprocess |
| Content from issues.apache.org is not included.CXF-6607 | Cached STS-issued tokens are not renewed on expiry in delegation scenario |
| Content from issues.apache.org is not included.CXF-6609 | Data Race in org/apache/cxf/transport/http/HTTPConduit.prepare |
| Content from issues.apache.org is not included.CXF-6614 | "Comparison method violates its general contract" in DestinationRegistryImpl.getSortedDestinations |
| Content from issues.apache.org is not included.CXF-6615 | the order of attributes in SubjectDN of certificate shouldn't be significant |
| Content from issues.apache.org is not included.CXF-6616 | need always close the CipherOutputStream when the encryption is done to get the complete content |
| Content from issues.apache.org is not included.CXF-6621 | Schema imports are not handled correctly in generated WSDL and XSD files when using catalog rewrites |
| Content from issues.apache.org is not included.CXF-6629 | ConcurrentModificationException at AbstractResourceInfo.clearProxies() |
| Content from issues.apache.org is not included.CXF-6630 | Cannot call setAttribute with a null name |
| Content from issues.apache.org is not included.CXF-6632 | Memory leak due to literal keys in WSDLDefinition map |
| Content from issues.apache.org is not included.CXF-6637 | @GZIP and similar CXF annotations are not recognized if set on super classes |
| Content from issues.apache.org is not included.CXF-6638 | AsyncHTTPConduit does not allow body payloads with "PATCH" method |
| Content from issues.apache.org is not included.CXF-6640 | [Locale Issue] HTTP header Issue for IOS 9 + Chinese Language user |
| Content from issues.apache.org is not included.CXF-6641 | JWE elliptic curve error |
| Content from issues.apache.org is not included.CXF-6642 | Memory Leak in ResponseImpl.readEntity() |
| Content from issues.apache.org is not included.CXF-6648 | Wildcard Content-Type is set for GET |
| Content from issues.apache.org is not included.CXF-6653 | NPE may result while generating a SequenceFault in WS-RM 1.1 |
| Content from issues.apache.org is not included.CXF-6655 | Error Invalid address. Endpoint address cannot be null |
| Content from issues.apache.org is not included.CXF-6657 | CXF Failover using JAXRS prevents header retrieval from ResponseExceptionMappers |
| Content from issues.apache.org is not included.CXF-6664 | NullpointerException in LinkBuilderImpl#getResolvedUri when linkheader url has a matrix parameter |
| Content from issues.apache.org is not included.CXF-6667 | Closing a source sequence in WS-RM may lead to inconsistent sequence status |
| Content from issues.apache.org is not included.CXF-6668 | [wadl2java] @Multipart annotation generated, @QueryParam expected |
| Content from issues.apache.org is not included.CXF-6670 | Problem with casting ParamConverter responses to primitive types |
| Content from issues.apache.org is not included.CXF-6671 | Ambiguous JAXRSServerFactoryBean.setApplication() breaks Spring injection |
| Content from issues.apache.org is not included.CXF-6673 | StaticService setEndpoints(List<String>) doesn't work correctly |
| Content from issues.apache.org is not included.CXF-6675 | Update commons-collections from 3.2.1 to 3.2.2 |
| Content from issues.apache.org is not included.CXF-6676 | Incorrect Interface Method Name Generation |
| Content from issues.apache.org is not included.CXF-6677 | Content-Type is empty on POST request with empty body |
| Content from issues.apache.org is not included.CXF-6679 | @Context HttpServletRequest request.getParameterMap() can't contain post parameters by application/x-www-form-urlencoded |
| Content from issues.apache.org is not included.CXF-6682 | NullpointerException in LinkBuilderImpl#getResolvedUri when only baseUri is set |
| Content from issues.apache.org is not included.CXF-6688 | ClientProxyImpl does not populate class-level path params if BeanParam holds the values |
| Content from issues.apache.org is not included.CXF-6693 | CXF fails to parse Cookie header when it contains $ character |
| Content from issues.apache.org is not included.CXF-6694 | SpringResourceFactory does not work with constructor-autowired beans |
| Content from issues.apache.org is not included.CXF-6699 | DefaultAddress not set in HTTPConduit class |
| Content from issues.apache.org is not included.CXF-6701 | JAXRS Proxy impl does not check field JAXRS annotations on BeanParam super classes |
| Content from issues.apache.org is not included.CXF-6705 | Incorrect version in Import-Package for javax.validation for CXF Core |
| Content from issues.apache.org is not included.CXF-6706 | Bean validation seems to not be working in OSGi |
| Content from issues.apache.org is not included.CXF-6709 | HttpServletRequest.getInputStream is empty |
| Content from issues.apache.org is not included.CXF-6711 | Aegis Databinding Deserialization Vulnerability |
| Content from issues.apache.org is not included.CXF-6720 | AbstractHTTPDestination#WrappedOutputStream.close() calls flush after close |
| Content from issues.apache.org is not included.CXF-6721 | NullPointerException for some responses containing SoapFault. |
| Content from issues.apache.org is not included.CXF-6729 | Version 1 NewCookie is not compliant with RFC 2109 |
| Content from issues.apache.org is not included.CXF-6730 | ClassCastException TransportBinding cannot be cast to AbstractSymmetricAsymmetricBinding in AbstractBindingBuilder |
| Content from issues.apache.org is not included.CXF-6743 | Inconsistent versions of jax-rs specs can lead to OSGi pain |
| Content from issues.apache.org is not included.CXF-6744 | Exceptions thrown from methods annotated with @Suspended result in no response at all |
| Content from issues.apache.org is not included.CXF-6748 | the qop,nc,algorithm parameter in http auth header must not be enclosed between doble quotation |
| Content from issues.apache.org is not included.CXF-6749 | Classloader leak on FileUtils.createTmpDir() |
| Content from issues.apache.org is not included.CXF-6753 | OAuth2 audience support is incomplete |
| Content from issues.apache.org is not included.CXF-6754 | Determin Media Type in Response |
| Content from issues.apache.org is not included.CXF-6759 | WADL2JAVA Tools Generated Source has Duplicate Method Name |
| Content from issues.apache.org is not included.CXF-6761 | JAX-RS ClientImpl does not set TLSClientParameters on HTTPConduit when only HostnameVerifier is configured |
| Content from issues.apache.org is not included.CXF-6763 | STS requires ClaimHandler even in ClaimMapping only scenarios |
| Content from issues.apache.org is not included.CXF-6764 | Should add RI JAXB Namespacemapper support |
| Content from issues.apache.org is not included.CXF-6768 | WS-Discovery missing schema when internet connection not present |
| Content from issues.apache.org is not included.CXF-6769 | Underscores in values of FIQL search expressions are incorrectly escaped |
| Content from issues.apache.org is not included.CXF-6770 | PrettyLoggingFilter not working well when using camel-cxf-transport |
| Content from issues.apache.org is not included.CXF-6772 | HttpClientPolicy browserType is reported as BrowserType header |
| Content from issues.apache.org is not included.CXF-6783 | ReflectionServiceFactoryBean generates invalid WSDL if anonymousWrapperTypes==true |
| Content from issues.apache.org is not included.CXF-6785 | AbstractHTTPDestination should handle the case when pathInfo of HttpServletRequest is null |
| Content from issues.apache.org is not included.CXF-6787 | not sufficient WadlGenerator presence detection |
| Content from issues.apache.org is not included.CXF-6793 | InvocationCallback doesn't try to get response class type |
| Content from issues.apache.org is not included.CXF-6795 | WS-Discovery add support for discovery on localhost |
| Content from issues.apache.org is not included.CXF-6799 | java.lang.ClassCastException: sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl cannot be cast to java.lang.reflect.TypeVariable |
| Content from issues.apache.org is not included.CXF-6805 | cxf-rt-transports-http adds Content-Type header to GET request |
| Content from issues.apache.org is not included.CXF-6806 | don't mark the optional "encoding" parameter as required for cxf-java2wadl-plugin |
| Content from issues.apache.org is not included.CXF-6809 | SAMLRequest ID must not start with a Number |
| Content from issues.apache.org is not included.CXF-6810 | JAX-RS Client one way requests do not work with jms-transport |
| Content from issues.apache.org is not included.CXF-6812 | WebTargetImpl should always check if client is closed first |
| Content from issues.apache.org is not included.CXF-6813 | MediaTypeHeaderProvider doesn't check the illegal media type string like "s//tt;type=text/plain" |
| Content from issues.apache.org is not included.CXF-6814 | ClientRequestFilter should be added with descending order of priority |
| Content from issues.apache.org is not included.CXF-6819 | ConfigurationImp returns wrong value for isRegistered(Object obj) |
| Content from issues.apache.org is not included.CXF-6820 | LinkBuilderImpl#link() doesn't throw exception for invalid input |
| Content from issues.apache.org is not included.CXF-6823 | Duplicate injectedProviders in ProviderFactory impacting throughput by ~30% |
| Content from issues.apache.org is not included.CXF-6828 | [OAuth] AbstractGrant set wrong value(scope) for audience |
| Content from issues.apache.org is not included.CXF-6832 | Attachment content-disposition modification-date not parsed correctly |
| Content from issues.apache.org is not included.CXF-6836 | Swagger2 tests need to be updated to do a more robust JSON or YAML comparison |
| Content from issues.apache.org is not included.CXF-6838 | AsyncResponse doesn't use 204 when body is empty |
| Content from issues.apache.org is not included.CXF-6842 | Unwrap exception nested with WebApplicationException |
| Content from issues.apache.org is not included.CXF-6845 | Some methods in MessageUtils prone to NPE |
| Content from issues.apache.org is not included.CXF-6849 | Form parameter names including '%' are not decoded properly |
| Content from issues.apache.org is not included.CXF-6850 | javax.ws.rs.core.Request implementation doesn't match Accept-Encoding: * for any encoding value |
| Content from issues.apache.org is not included.CXF-6867 | Envelope and Body element prefixes changed when processing messages without headers |
| Content from issues.apache.org is not included.CXF-6887 | http-hc: NPE and incorrept assumption that there is only one bus |
| Content from issues.apache.org is not included.CXF-6939 | can't install cxf-http-async feature |
| Content from issues.apache.org is not included.CXF-7008 | Regression: CXF-5788 - JMS replyToDestination doesn't work |
| Content from issues.apache.org is not included.CXF-7026 | o.a.c.transport.http.osgi.HttpServiceTrackerCust service leak |
| Content from issues.apache.org is not included.CXF-7034 | should close HttpServiceTracker in HTTPTransportActivator |
| Content from issues.jboss.org is not included.ENTESB-4398 | Arbitrary remote code execution with InvokerTransformer |
| Content from issues.jboss.org is not included.ENTESB-4933 | When cxf service is deployed to child container SwaggerFeature uses root container port instead |
| Content from issues.jboss.org is not included.ENTESB-4942 | missing requirements for features:install cxf-jaxrs-cdi |
| Content from issues.jboss.org is not included.ENTESB-4957 | missing package org.apache.geronimo.osgi.locator for features:install pax-*-tomcat |
| Content from issues.jboss.org is not included.ENTESB-5008 | quiet a few test failure on cxf 3.1.x.redhat-6-3-x-patch branch with JAVA8 |
| Content from issues.jboss.org is not included.ENTESB-5410 | please fix duplicate javax.mail in fuse |
| Content from issues.jboss.org is not included.ENTESB-5442 | Swagger2Feature throws an exception |
| Content from issues.jboss.org is not included.ENTESB-5460 | CXF and Camel need olingo version alignment in Fuse |
| Content from issues.jboss.org is not included.ENTESB-5589 | NCDFE when using JAX-WS schema validation on IBM java |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5700 | [fabric:create] Error executing command: Unable to create zookeeper server configuration |
| Content from issues.jboss.org is not included.ENTESB-5777 | can't install cxf-databinding-jibx |
| Content from issues.jboss.org is not included.ENTESB-5907 | CXF's JMSConfiguration replyToDestination does not have any effect |
| Content from issues.jboss.org is not included.ENTESB-5935 | intermittent ServerModel LinkageError when connecting to ssh container |
| Content from issues.jboss.org is not included.ENTESB-5938 | After Multiple Profile Deployments Fabric Container Runs Out of PermGen Space |
| Content from issues.apache.org is not included.FEDIZ-156 | SAMLRequest ID must not start with a Number |
| Content from issues.apache.org is not included.WSS-549 | Don't write out a ReferenceList if there are no elements to encrypt |
5.7. Fuse on JBoss EAP
Table 5.7. Fuse on EAP Issues Resolved in 6.3.0
5.8. Container - 6.3.0
Table 5.8. Container Issues Resolved in 6.3.0
| Issue Number | Description |
|---|---|
| Content from issues.apache.org is not included.COLLECTIONS-580 | [COLLECTIONS-580] Arbitrary remote code execution with InvokerTransformer |
| Content from issues.jboss.org is not included.ENTESB-1609 | Can not install fuse as system service on AIX7.1 |
| Content from issues.jboss.org is not included.ENTESB-3997 | admin:create && admin:start doesn't work after 6.2 P2 patch |
| Content from issues.jboss.org is not included.ENTESB-4055 | Improve Hawt.io Performance |
| Content from issues.jboss.org is not included.ENTESB-4156 | On Windows offline patching causes "javax.management.InstanceAlreadyExistsException: org.fusesource.insight:type=Log Query" |
| Content from issues.jboss.org is not included.ENTESB-4223 | Feature camel-spring security does not install spring-security-config bundle |
| Content from issues.jboss.org is not included.ENTESB-4231 | Unable to unzip RC4 prepatched zip on windows 2012 RC4 |
| Content from issues.jboss.org is not included.ENTESB-4398 | Arbitrary remote code execution with InvokerTransformer |
| Content from issues.jboss.org is not included.ENTESB-4443 | null log msg causes org.apache.felix.eventadmin.impl.adapter.LogEventAdapter to be removed |
| Content from issues.jboss.org is not included.ENTESB-4447 | Incompatible TypedQuery exception is thrown when application(Using JPA-Hibernate) bundle is refreshed/re-installed |
| Content from issues.jboss.org is not included.ENTESB-4450 | admin:connect default username is not the sme as admin:create |
| Content from issues.jboss.org is not included.ENTESB-4458 | bin\client.bat doesn't work on windows |
| Content from issues.jboss.org is not included.ENTESB-4495 | Hibernate and Bundle ClassLoaders out of sync on Bundle Refresh |
| Content from issues.jboss.org is not included.ENTESB-4616 | Space in path results in bin/karaf: line 417: [: /home/fuse/te: binary operator expected |
| Content from issues.jboss.org is not included.ENTESB-4742 | Default "org.osgi.framework.system.packages.extra" configuration should be empty |
| Content from issues.jboss.org is not included.ENTESB-4838 | Camel on EAP bundles Spring version other than Karaf |
| Content from issues.jboss.org is not included.ENTESB-4886 | 6.2.1 Patching mechanism should support applying rollup patch to non-fabric child containers |
| Content from issues.jboss.org is not included.ENTESB-4889 | Xslt Transformation seems to be broken in Fuse 6.2.1 |
| Content from issues.jboss.org is not included.ENTESB-4902 | Fuse 6.2.1 failed to handle maven repository url with special characters like "@" for authentication parameters. |
| Content from issues.jboss.org is not included.ENTESB-4903 | [Solaris 11] local: not found when starting fuse |
| Content from issues.jboss.org is not included.ENTESB-4921 | problem with installing / uninstalling features in fuse 6.3 |
| Content from issues.jboss.org is not included.ENTESB-4935 | admin script report wrong pid and wrong status |
| Content from issues.jboss.org is not included.ENTESB-4954 | can't install feature camel-spring-redis |
| Content from issues.jboss.org is not included.ENTESB-4955 | deltaspike-* features can't be installed (versions 1.3.0 or 1.5.1) |
| Content from issues.jboss.org is not included.ENTESB-4957 | missing package org.apache.geronimo.osgi.locator for features:install pax-*-tomcat |
| Content from issues.jboss.org is not included.ENTESB-4960 | ssh:sshd command lists default values twice |
| Content from issues.jboss.org is not included.ENTESB-4967 | Karaf Wrapper fails if Path to KARAF_HOME Contains Spaces |
| Content from issues.jboss.org is not included.ENTESB-4980 | [Karaf-service] Karaf-service.sh script does nothing on Debian (in docker) |
| Content from issues.jboss.org is not included.ENTESB-4997 | redirect parent and child instance std out to a karaf.out file |
| Content from issues.jboss.org is not included.ENTESB-4999 | Apply the same logic of ENTESB-4935 to karaf.bat script |
| Content from issues.jboss.org is not included.ENTESB-5003 | [Win+Karaf-service] Can't run .exe on win server 2012r2 |
| Content from issues.jboss.org is not included.ENTESB-5015 | Aries JPA unable inject jpa context in blueprint |
| Content from issues.jboss.org is not included.ENTESB-5045 | [Karaf-service.sh] Not working on AIX and HPUX |
| Content from issues.jboss.org is not included.ENTESB-5058 | 6.3.0 DR2 doesn't start on Windows |
| Content from issues.jboss.org is not included.ENTESB-5065 | localhost:8181/hawtio/index.html not available (404) |
| Content from issues.jboss.org is not included.ENTESB-5067 | "The syntax of the command is incorrect" error when running "shutdown -f" |
| Content from issues.jboss.org is not included.ENTESB-5104 | In JBoss Fuse shell, when running grep, there will be 3 ANSI reset sequence on each line. |
| Content from issues.jboss.org is not included.ENTESB-5118 | Invalid BundleContext when installing patch feature to admin:created container |
| Content from issues.jboss.org is not included.ENTESB-5131 | [6.3] Can't start fuse on solaris 10 |
| Content from issues.jboss.org is not included.ENTESB-5132 | [6.3] Solaris 10 does not like a first empty row in the service file |
| Content from issues.jboss.org is not included.ENTESB-5157 | Not able to login when user belongs to jaas PublickeyLoginModule. |
| Content from issues.jboss.org is not included.ENTESB-5179 | Maven proxy behavior broken |
| Content from issues.jboss.org is not included.ENTESB-5191 | Apparent mismatch between command count with tab completion |
| Content from issues.jboss.org is not included.ENTESB-5217 | Feature Installation - no Refresh of Fragment-Host bundle upon installation of fragment bundle |
| Content from issues.jboss.org is not included.ENTESB-5323 | javax.management.openmbean.KeyAlreadyExistsException thrown by hawtio-osgi-jmx |
| Content from issues.jboss.org is not included.ENTESB-5332 | Fuse doesn't start after unexpected termination |
| Content from issues.jboss.org is not included.ENTESB-5366 | Fuse client fails with java.security.InvalidAlgorithmParameterException |
| Content from issues.jboss.org is not included.ENTESB-5370 | Aries transaction manager fails with background connection validation |
| Content from issues.jboss.org is not included.ENTESB-5395 | Wildcard in NCName for Camel CXF Transport in Blueprint |
| Content from issues.jboss.org is not included.ENTESB-5399 | Fuse on windows does not start without data directory |
| Content from issues.jboss.org is not included.ENTESB-5401 | fix pax-http-tomcat jaxp-api dependencies |
| Content from issues.jboss.org is not included.ENTESB-5410 | please fix duplicate javax.mail in fuse |
| Content from issues.jboss.org is not included.ENTESB-5540 | Exceptions in log after *:help - Service cannot be cast: org.apache.felix.scr.impl.ScrGogoCommand |
| Content from issues.jboss.org is not included.ENTESB-5550 | Bundle "spring-security-config" from servicemix does not contain spring metadata |
| Content from issues.jboss.org is not included.ENTESB-5588 | Switchyard reference throws ClassCastException with IBM java |
| Content from issues.jboss.org is not included.ENTESB-5608 | Revert hard coded v1.7 jdk for darwin in karaf launch script introduced via KARAF-2921 |
| Content from issues.jboss.org is not included.ENTESB-5620 | wrapper:install on solaris11 lacks instructions to symlink scripts |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5683 | get Exception when enter "tab" from karaf console |
| Content from issues.jboss.org is not included.ENTESB-5700 | [fabric:create] Error executing command: Unable to create zookeeper server configuration |
| Content from issues.jboss.org is not included.ENTESB-5716 | Can't create child on 111, 115 |
| Content from issues.jboss.org is not included.ENTESB-5760 | Can't create child on ssh container |
| Content from issues.jboss.org is not included.ENTESB-5762 | Can't resolve any of the quickstarts in build #125 |
| Content from issues.jboss.org is not included.ENTESB-5792 | We are not properly replacing versions in client.bat in jboss-fuse-6.3.0.redhat-131 |
| Content from issues.jboss.org is not included.ENTESB-5795 | ldap connection pool not created when using ssl (ldaps) |
| Content from issues.jboss.org is not included.ENTESB-5850 | javax.management.openmbean.KeyAlreadyExistsException thrown at JMX org.apache.karaf - services |
| Content from issues.jboss.org is not included.ENTESB-5860 | Camel-amq quickstart is not processing files |
| Content from issues.jboss.org is not included.ENTESB-5869 | Exception when Encrypting with PGPDataFormat |
| Content from issues.jboss.org is not included.ENTESB-5917 | 6.2.1 R3 prevents base DN lookup in Tivoli LDAP Server |
| Content from issues.jboss.org is not included.ENTESB-5935 | intermittent ServerModel LinkageError when connecting to ssh container |
| Content from issues.jboss.org is not included.ENTESB-5942 | karaf jaas modules test failing on IBM JDK |
| Content from issues.jboss.org is not included.ENTESB-5961 | hawtio not showing activemq tab |
| Content from issues.jboss.org is not included.ENTESB-6101 | Fuse won't start with IBM java |
| Content from issues.jboss.org is not included.ENTMQ-1683 | *:help missing descriptions for activemq commands |
| Content from issues.apache.org is not included.KARAF-3240 | BundleWatcher should not depend to pax-url-mvn |
| Content from issues.apache.org is not included.KARAF-3327 | Incorrect LC_CTYPE parsing |
| Content from issues.apache.org is not included.KARAF-4005 | Different locations for KARAF_HOME and KARAF_BASE |
| Content from issues.apache.org is not included.KARAF-4024 | role.policy "group" ceased to function |
| Content from issues.apache.org is not included.KARAF-4123 | Provide a more dynamic default for serviceUrl configuration |
| Content from issues.apache.org is not included.KARAF-4150 | bin/status fails if KARAF_DEBUG is set |
| Content from issues.apache.org is not included.KARAF-4247 | Issues with LDAP caching |
| Content from issues.apache.org is not included.KARAF-4330 | Instance script doesn't return correct PID number if root instance is started two times |
| Content from issues.apache.org is not included.KARAF-4348 | [RBAC] Wildcard PIDs chosen before more specific ones |
| Content from issues.apache.org is not included.KARAF-4373 | Karaf.bat script produces "The syntax of the command is incorrect" even if it is working properly |
| Content from issues.apache.org is not included.KARAF-4499 | Can't start a crashed server on Windows |
| Content from issues.apache.org is not included.KARAF-4607 | ldap connection pool not created when using ssl (ldaps) |
| Content from issues.apache.org is not included.KARAF-4659 | Ability to disable ldap listeners |
| Content from issues.apache.org is not included.KARAF-4686 | ClassLoader leak with RmiRegistryFactory and sun.rmi.transport.tcp.TCPEndpoint |
| Content from issues.apache.org is not included.KARAF-4687 | ClassLoader leak with java.lang.Exception and karaf.exception library |
5.9. Fuse Fabric - 6.3.0
Table 5.9. Fuse Fabric Issues Resolved in 6.3.0
| Issue Number | Description |
|---|---|
| Content from issues.apache.org is not included.COLLECTIONS-580 | [COLLECTIONS-580] Arbitrary remote code execution with InvokerTransformer |
| Content from issues.apache.org is not included.CURATOR-126 | IllegalStateException in performBackgroundOperation during close |
| Content from issues.jboss.org is not included.ENTESB-1769 | "Error in initialization script: Command not found: shell:if" after fabric:create on fuse with P2 |
| Content from issues.jboss.org is not included.ENTESB-2699 | EnsembleRemove.applyEnsembleConfiguration() Throws StringIndexOutOfBoundsException |
| Content from issues.jboss.org is not included.ENTESB-3449 | Profile-rename Error executing command: versionId when not specifying version |
| Content from issues.jboss.org is not included.ENTESB-3945 | Profile import in fabric results in Container 'root' does not exist |
| Content from issues.jboss.org is not included.ENTESB-4012 | profile-import and profile-refresh don't download the latest snapshot |
| Content from issues.jboss.org is not included.ENTESB-4073 | Creating fabric with profile fabric leads to duplicated profile |
| Content from issues.jboss.org is not included.ENTESB-4138 | JMX mbean operation `setProfileProperty` is not working as expected. |
| Content from issues.jboss.org is not included.ENTESB-4167 | fabric-git-server defaults to admin role and may only be associated with one role |
| Content from issues.jboss.org is not included.ENTESB-4225 | Unable to scale down using fabric:profile-scale command |
| Content from issues.jboss.org is not included.ENTESB-4362 | jgit errors affecting patch management |
| Content from issues.jboss.org is not included.ENTESB-4367 | General patching problems on Windows |
| Content from issues.jboss.org is not included.ENTESB-4369 | Standby Fuse container in active/standby configuration does not expose an SSH service since 6.2 |
| Content from issues.jboss.org is not included.ENTESB-4374 | Fabric - Services - MQ, Wiki: Patch branches are visible as versions |
| Content from issues.jboss.org is not included.ENTESB-4387 | [Patch mechanism] Command patch:fabric-synchronize has wrong description |
| Content from issues.jboss.org is not included.ENTESB-4393 | [Patch mechanism] Provision status freezes on installing when upgrading child container |
| Content from issues.jboss.org is not included.ENTESB-4398 | Arbitrary remote code execution with InvokerTransformer |
| Content from issues.jboss.org is not included.ENTESB-4399 | Insight: quickly and periodically refreshes Hawtio and throws errors on remote Fabric containers |
| Content from issues.jboss.org is not included.ENTESB-4415 | Multiple Error messages while updating JBoss A-MQ using new patch mechanism |
| Content from issues.jboss.org is not included.ENTESB-4422 | [Patch mechanism] Option --upload in command patch:fabric-install doesn't work on Windows |
| Content from issues.jboss.org is not included.ENTESB-4431 | [Patch mechanism] Unable to upgrade ssh container with build 073 (container doesn't start) |
| Content from issues.jboss.org is not included.ENTESB-4432 | [Patch mechanism] Cannot create child or ssh container after 6.2.0 to 073 migration in offline environment |
| Content from issues.jboss.org is not included.ENTESB-4437 | zk group - deal with partial creation of sequential node |
| Content from issues.jboss.org is not included.ENTESB-4443 | null log msg causes org.apache.felix.eventadmin.impl.adapter.LogEventAdapter to be removed |
| Content from issues.jboss.org is not included.ENTESB-4451 | [Patch mechanism] Upgrading child container reverts user.properties to karaf default version |
| Content from issues.jboss.org is not included.ENTESB-4462 | [Patch mechanism] Unable to rollback child container to 1.0 after upgrade |
| Content from issues.jboss.org is not included.ENTESB-4469 | NullPointerException during patch:install |
| Content from issues.jboss.org is not included.ENTESB-4470 | Invalid boolean value exception after rollback |
| Content from issues.jboss.org is not included.ENTESB-4472 | [Patch mechanism] Upgrading SSH container results into wrong merged system.properties and general problem with reconnecting to fabric |
| Content from issues.jboss.org is not included.ENTESB-4474 | patch 6.2 GA >> 621 build 73 >> build 078 fails on "auth" bundle on windows |
| Content from issues.jboss.org is not included.ENTESB-4482 | [patching] patch:list shows patch as installed even-though installation failed with exception |
| Content from issues.jboss.org is not included.ENTESB-4485 | Provisioning containers fails with a java.lang.NullPointerException for Maven-URL |
| Content from issues.jboss.org is not included.ENTESB-4489 | Prevent hitting central.maven.org at Fabric creation |
| Content from issues.jboss.org is not included.ENTESB-4491 | [patching] NPE in bin/setenv resolver |
| Content from issues.jboss.org is not included.ENTESB-4494 | Fix Maven worrisome message about repos without ids |
| Content from issues.jboss.org is not included.ENTESB-4496 | NoNode for /fabric/registry/maven/proxy/download/p_0000000002 |
| Content from issues.jboss.org is not included.ENTESB-4497 | [patching] Changes in org.ops4j.pax.logging.cfg do not propagate to newer version |
| Content from issues.jboss.org is not included.ENTESB-4508 | HTTP proxy does not work for osgi:install and profile artifact resolution at the same time |
| Content from issues.jboss.org is not included.ENTESB-4574 | HTTP Gateway and URL parameters |
| Content from issues.jboss.org is not included.ENTESB-4610 | Fabric gateway fails because of incorrect use of ShutdownTracker |
| Content from issues.jboss.org is not included.ENTESB-4622 | Please update file name from jboss-fuse-full to jboss-fuse-karaf |
| Content from issues.jboss.org is not included.ENTESB-4694 | [itests] ExampleCamelClusterTest fails in 6-3-x branch |
| Content from issues.jboss.org is not included.ENTESB-4710 | [itests] ExampleCamelCxfTest problems in 6-3-x branch |
| Content from issues.jboss.org is not included.ENTESB-4742 | Default "org.osgi.framework.system.packages.extra" configuration should be empty |
| Content from issues.jboss.org is not included.ENTESB-4761 | Transitive Dependency on org.osgi.core 4.1.0 Breaks Unit Tests |
| Content from issues.jboss.org is not included.ENTESB-4770 | fix swagger dependencies in Fuse BOM |
| Content from issues.jboss.org is not included.ENTESB-4781 | fabric8 6.3 build fails with missing pom for quickstarts |
| Content from issues.jboss.org is not included.ENTESB-4796 | Setting KARAF_DATA Results in Error When Creating Fabric |
| Content from issues.jboss.org is not included.ENTESB-4808 | [itests] ServiceFactoryTest.testZkDisconnectFastReconnect fails sometimes on 6-3-x |
| Content from issues.jboss.org is not included.ENTESB-4816 | [patching] Fix detection of fabric env when initalizing patch management |
| Content from issues.jboss.org is not included.ENTESB-4820 | mvn fabric8:zip does not work for quickstart examples. |
| Content from issues.jboss.org is not included.ENTESB-4827 | [itests] ProfileManagementJolokiaTest/ProfileManagementProxyTest fail sometimes |
| Content from issues.jboss.org is not included.ENTESB-4834 | "start-level" property in <feature> element and 'start="false"' in <bundle> element didn't work in Fuse 6.2.1 |
| Content from issues.jboss.org is not included.ENTESB-4841 | Fabric8 - NullPointerException from GitDataStore when having hostname with underscore |
| Content from issues.jboss.org is not included.ENTESB-4845 | java.lang.ClassNotFoundException: net.sf.ehcache.distribution.RMICachePeer_Stub (no security manager: RMI class loader disabled) |
| Content from issues.jboss.org is not included.ENTESB-4862 | Hawtio-Viewing history on profile files throws exception |
| Content from issues.jboss.org is not included.ENTESB-4886 | 6.2.1 Patching mechanism should support applying rollup patch to non-fabric child containers |
| Content from issues.jboss.org is not included.ENTESB-4888 | OSGi configurations to the feature does not work in fabric mode if config name contains "-" character. |
| Content from issues.jboss.org is not included.ENTESB-4894 | fabric:create command terminates a script |
| Content from issues.jboss.org is not included.ENTESB-4902 | Fuse 6.2.1 failed to handle maven repository url with special characters like "@" for authentication parameters. |
| Content from issues.jboss.org is not included.ENTESB-4903 | [Solaris 11] local: not found when starting fuse |
| Content from issues.jboss.org is not included.ENTESB-4918 | The fabric:profile-export Command Does Not Export Sub-folders or Specific Profiles |
| Content from issues.jboss.org is not included.ENTESB-4939 | When Creating a A Fabric with External Repo Configuration is Lost Unless Manually Edited in Files |
| Content from issues.jboss.org is not included.ENTESB-4946 | wiring chain issue with package javax.servlet.http |
| Content from issues.jboss.org is not included.ENTESB-4956 | Fabric8 HTTP gateway does not respond to container version changes without a restart |
| Content from issues.jboss.org is not included.ENTESB-4957 | missing package org.apache.geronimo.osgi.locator for features:install pax-*-tomcat |
| Content from issues.jboss.org is not included.ENTESB-4970 | Http gateway logs "listening at port 9000" before being unable to bind to that port. |
| Content from issues.jboss.org is not included.ENTESB-4971 | admin permission is added to first user in users.propertie automatically by fabric:create command |
| Content from issues.jboss.org is not included.ENTESB-4992 | patch:add allows to add empty folder |
| Content from issues.jboss.org is not included.ENTESB-4994 | repeated ElasticSearch warning "Error executing request: MapperParsingException[failed to parse]; nested: JsonParseException[Non-standard token 'NaN': enable JsonParser.Feature.ALLOW_NON_NUMERIC_NUMBERS to allow" |
| Content from issues.jboss.org is not included.ENTESB-5003 | [Win+Karaf-service] Can't run .exe on win server 2012r2 |
| Content from issues.jboss.org is not included.ENTESB-5012 | Unnecessary default values in help of some commands |
| Content from issues.jboss.org is not included.ENTESB-5014 | [6.3.015] Can't create SSH container |
| Content from issues.jboss.org is not included.ENTESB-5022 | Authentication Error when Adding Containers to Ensemble |
| Content from issues.jboss.org is not included.ENTESB-5029 | A fabric server generated by "fabric:container-create-ssh" with "--ensemble-server" option will record ERROR log during it's boot up phase |
| Content from issues.jboss.org is not included.ENTESB-5034 | container-edit-jvm-options can not delete a jvm option and it also duplicates all "-D" options |
| Content from issues.jboss.org is not included.ENTESB-5060 | fabric:create causes java.lang.NullPointerException |
| Content from issues.jboss.org is not included.ENTESB-5065 | localhost:8181/hawtio/index.html not available (404) |
| Content from issues.jboss.org is not included.ENTESB-5075 | Fabric - issue with external git repo and provisioning |
| Content from issues.jboss.org is not included.ENTESB-5085 | Patch commands are only available with Fabric container provisioned with the jboss-fuse-full profile |
| Content from issues.jboss.org is not included.ENTESB-5105 | Some profiles in fabric doesn't work out of the box in Fuse running in offline env |
| Content from issues.jboss.org is not included.ENTESB-5107 | Cannot create fabric with user as member as Administrator group via bin/client script |
| Content from issues.jboss.org is not included.ENTESB-5109 | fabric:join command should display a message if container is already connected to fabric |
| Content from issues.jboss.org is not included.ENTESB-5119 | Problem with authentication when creating fabric |
| Content from issues.jboss.org is not included.ENTESB-5120 | [patching] Patching admin:created container causes that all previously installed features are removed |
| Content from issues.jboss.org is not included.ENTESB-5124 | cxf/rest quickstart "mvn -Ptest" fails |
| Content from issues.jboss.org is not included.ENTESB-5138 | [patching] patch:fabric-install removes previously added features from default profile |
| Content from issues.jboss.org is not included.ENTESB-5172 | Unable to install cxf-secure-rest quickstart |
| Content from issues.jboss.org is not included.ENTESB-5174 | WARN from jetty happens very regular |
| Content from issues.jboss.org is not included.ENTESB-5175 | All containers have to run while executing fabric:wait-for-provisioning |
| Content from issues.jboss.org is not included.ENTESB-5179 | Maven proxy behavior broken |
| Content from issues.jboss.org is not included.ENTESB-5186 | container-stop operation may report wrong outcome |
| Content from issues.jboss.org is not included.ENTESB-5191 | Apparent mismatch between command count with tab completion |
| Content from issues.jboss.org is not included.ENTESB-5206 | "Client is not started" Exception |
| Content from issues.jboss.org is not included.ENTESB-5213 | Bump licence headers to 2016 |
| Content from issues.jboss.org is not included.ENTESB-5225 | fabric:container-delete command does not display an appropriate message |
| Content from issues.jboss.org is not included.ENTESB-5228 | [Fabric] Support empty passwords in external git repos |
| Content from issues.jboss.org is not included.ENTESB-5242 | Patch:show command throws NPE in case of inexistent patch |
| Content from issues.jboss.org is not included.ENTESB-5253 | Profile update via git results in CheckoutConflictException |
| Content from issues.jboss.org is not included.ENTESB-5254 | Container-create-ssh does not respect --new-user and --new-user-password |
| Content from issues.jboss.org is not included.ENTESB-5257 | jsr311-api bundle not included in the distro |
| Content from issues.jboss.org is not included.ENTESB-5298 | profile-export does not export profiles |
| Content from issues.jboss.org is not included.ENTESB-5361 | Container-delete does not fail when the credentials are invalid |
| Content from issues.jboss.org is not included.ENTESB-5395 | Wildcard in NCName for Camel CXF Transport in Blueprint |
| Content from issues.jboss.org is not included.ENTESB-5396 | [patching] Upgrade of container is overriding profile properties |
| Content from issues.jboss.org is not included.ENTESB-5400 | ChildContainers don't have correct RBAC configuration. |
| Content from issues.jboss.org is not included.ENTESB-5402 | SSHContainers don't have correct RBAC configuration. |
| Content from issues.jboss.org is not included.ENTESB-5424 | Pushing invalid branch name to fabric git breaks version-list |
| Content from issues.jboss.org is not included.ENTESB-5433 | Fabric8 Maven Plugin with Multi-module Maven projects only append last module to the bundle list of the created profile on Jboss Fuse 6.2.1. |
| Content from issues.jboss.org is not included.ENTESB-5437 | Fabric HTTP GW does not recognize query params |
| Content from issues.jboss.org is not included.ENTESB-5443 | fabric8 jboss-fuse-full profile is missing some ACL entries for fabric:* commands |
| Content from issues.jboss.org is not included.ENTESB-5448 | camel-cxf-contract-first building fails with ibm1.8 java |
| Content from issues.jboss.org is not included.ENTESB-5453 | beginner/camel-log example uses invalid timer value |
| Content from issues.jboss.org is not included.ENTESB-5456 | java.lang.NullPointerException at io.fabric8.insight.elasticsearch.plugin.InsightIndicesHousekeeperService |
| Content from issues.jboss.org is not included.ENTESB-5461 | profile-refresh command does not update the content of added features.xml |
| Content from issues.jboss.org is not included.ENTESB-5463 | Creating version with invalid name responds with Profile name is invalid |
| Content from issues.jboss.org is not included.ENTESB-5475 | Missing javax.mail jar with the correct version |
| Content from issues.jboss.org is not included.ENTESB-5478 | Downloading of artifacts is frozen due to some file locks in local repository |
| Content from issues.jboss.org is not included.ENTESB-5488 | SSH container cannot resolve SNAPSHOT artifacts uploaded to fabric |
| Content from issues.jboss.org is not included.ENTESB-5490 | fabric:profile-refresh is deleting the folder under the profiles. |
| Content from issues.jboss.org is not included.ENTESB-5492 | [patching] handle overrides.properties better |
| Content from issues.jboss.org is not included.ENTESB-5513 | Fabric maven proxy is not reachable by agent |
| Content from issues.jboss.org is not included.ENTESB-5517 | [patching] allow patch descriptor files starting with jboss-fuse- or jboss-a-mq- name |
| Content from issues.jboss.org is not included.ENTESB-5562 | fabric:create should validate the value passed to "resolver" param |
| Content from issues.jboss.org is not included.ENTESB-5591 | Fabric git pushes rejected due to non fast forward |
| Content from issues.jboss.org is not included.ENTESB-5619 | [itests] ARQ/pax-exam tests affected by package refresh |
| Content from issues.jboss.org is not included.ENTESB-5633 | [patching] Problems upgrading pax-cdi, pax-web, jclouds features |
| Content from issues.jboss.org is not included.ENTESB-5634 | [patching] Migrate serialized container metadata during patching |
| Content from issues.jboss.org is not included.ENTESB-5635 | fabric join not allowing FQDN names throwing Container name 'abc.domain' is invalid. Container name must be: lower-case letters, numbers, and _ or - characters |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5682 | Status of installed 6.2.1 R2 and R3 patch on standalone container is false |
| Content from issues.jboss.org is not included.ENTESB-5691 | Remove fabric-groovy from fabric feature |
| Content from issues.jboss.org is not included.ENTESB-5700 | [fabric:create] Error executing command: Unable to create zookeeper server configuration |
| Content from issues.jboss.org is not included.ENTESB-5714 | JVM options for Fabric managed containers are not aligned |
| Content from issues.jboss.org is not included.ENTESB-5716 | Can't create child on 111, 115 |
| Content from issues.jboss.org is not included.ENTESB-5728 | Hawtio throws "Cannot connect to Jolokia to access this Java process" exception for user with role Monitor, while trying to access container perspective |
| Content from issues.jboss.org is not included.ENTESB-5741 | "org.eclipse.jgit.api.errors.JGitInternalException: Invalid ref name: baseline-ssh-fabric8-1.2.0.redhat-621117" |
| Content from issues.jboss.org is not included.ENTESB-5759 | A lot of connection refused in log when creating ssh in offline mode |
| Content from issues.jboss.org is not included.ENTESB-5760 | Can't create child on ssh container |
| Content from issues.jboss.org is not included.ENTESB-5761 | Ssh container in offline mode contains PatchException: can't find baseline |
| Content from issues.jboss.org is not included.ENTESB-5762 | Can't resolve any of the quickstarts in build #125 |
| Content from issues.jboss.org is not included.ENTESB-5816 | Changing ZooKeeper settings invalidates ZK client session |
| Content from issues.jboss.org is not included.ENTESB-5820 | HTTP gateway does not show CXF endpoints after container restart |
| Content from issues.jboss.org is not included.ENTESB-5832 | Fabric - Wiki: Void profiles version "container-history" appeared |
| Content from issues.jboss.org is not included.ENTESB-5836 | PatchException during AMQ container fabric:join |
| Content from issues.jboss.org is not included.ENTESB-5854 | etc/org.apache.karaf.features.cfg overwritten with default values on first start |
| Content from issues.jboss.org is not included.ENTESB-5898 | instance.properties not updated after ensemble-add |
| Content from issues.jboss.org is not included.ENTESB-5904 | jmx.acl.whitelist.properties across profiles |
| Content from issues.jboss.org is not included.ENTESB-5914 | patch:add allows to add incorrect file |
| Content from issues.jboss.org is not included.ENTESB-5926 | rest and secure-rest quickstarts do not work on fabric |
| Content from issues.jboss.org is not included.ENTESB-5935 | intermittent ServerModel LinkageError when connecting to ssh container |
| Content from issues.jboss.org is not included.ENTESB-5938 | After Multiple Profile Deployments Fabric Container Runs Out of PermGen Space |
| Content from issues.jboss.org is not included.ENTESB-5947 | Increase default ZooKeeper Retry and Retry Interval |
| Content from issues.jboss.org is not included.ENTESB-5951 | Shell SCR bundle redeploy loop with camel-amq quickstart |
| Content from issues.jboss.org is not included.ENTESB-5957 | Many fabric8 patching tests are failing on windows with UnsupportedOperationException |
| Content from issues.jboss.org is not included.ENTESB-5958 | Fabric - Services - Containers: Containers list disappears when a container migrated to a version not containing one of the current profiles |
| Content from issues.jboss.org is not included.ENTESB-5986 | REST Endpoints are registered under /fabric/registry/clusters/apis/ws/ instead of ..apis/rest |
| Content from issues.jboss.org is not included.ENTESB-6003 | handle PID file delete during patching |
| Content from issues.jboss.org is not included.ENTESB-6011 | Unable to patch fabric root container, when registered as system service on windows |
| Content from issues.jboss.org is not included.ENTESB-6032 | Unable to rollback standalone child container |
| Content from issues.jboss.org is not included.ENTMQ-1314 | PatchException: Invalid baseline-root-amq-6.2.1.redhat-071 specified |
| Content from issues.jboss.org is not included.ENTMQ-1517 | The jboss-a-mq-6.3.0.redhat-012.zip does not startup properly |
| Content from issues.jboss.org is not included.ENTMQ-1724 | Broker in fabric master/slave set up is shut down late when it loses connection to zookeeper |
| Content from issues.apache.org is not included.KARAF-3092 | Remove ${services-${karaf.framework}} variables from org.osgi.framework.system.capabilities |
| Content from issues.apache.org is not included.KARAF-4155 | Fall to feature start-level |
| Content from issues.apache.org is not included.SUREFIRE-1187 | [SUREFIRE-1187] JUnit4 Provider created unnecessary Runner instance |
| Content from issues.apache.org is not included.ZOOKEEPER-2380 | [ZOOKEEPER-2380] Deadlock between leader shutdown and forwarding ACK to the leader |
| Content from issues.apache.org is not included.ZOOKEEPER-2383 | [ZOOKEEPER-2383] Startup race in ZooKeeperServer |
5.10. Management Console - 6.3.0
Table 5.10. Issues Resolved in 6.3.0:
| Issue Number | Description |
|---|---|
| Content from issues.jboss.org is not included.ENTESB-2401 | [user experience] hawtio fabric wiki page missing picture |
| Content from issues.jboss.org is not included.ENTESB-3387 | RH Access - Links in RHA main menu vanish when mouse over |
| Content from issues.jboss.org is not included.ENTESB-3504 | The labels for the Actions submenu on the Wiki page disappear on mouse over |
| Content from issues.jboss.org is not included.ENTESB-3515 | Hawtio provides delete button for root container but it cannot be delete |
| Content from issues.jboss.org is not included.ENTESB-3956 | OSGi: fast switching OSGi tabs causes exception |
| Content from issues.jboss.org is not included.ENTESB-3957 | OSGi - Bundles: Clicking links in a Bundle details page opens the welcome page instead of collapsing a pane conent |
| Content from issues.jboss.org is not included.ENTESB-4021 | Camel: Route diagram isn't displayed in IE |
| Content from issues.jboss.org is not included.ENTESB-4055 | Improve Hawt.io Performance |
| Content from issues.jboss.org is not included.ENTESB-4080 | Can't delete queue created in Hawtio when name contains ":" |
| Content from issues.jboss.org is not included.ENTESB-4165 | ActiveMQ - Chart: PersistenceAdapter tree item has "View chart' under Chart tab and no data |
| Content from issues.jboss.org is not included.ENTESB-4166 | ActiveMQ - Browse: Checkboxes at message rows works badly after messages list is manually refreshed |
| Content from issues.jboss.org is not included.ENTESB-4176 | Camel - Camel Contexts - Attributes: Wrong ordering of some columns with text |
| Content from issues.jboss.org is not included.ENTESB-4177 | Camel - Camel Contexts - Attributes: Contexts table isn't refreshed after any context deleted |
| Content from issues.jboss.org is not included.ENTESB-4183 | Filtering is case sensitive |
| Content from issues.jboss.org is not included.ENTESB-4185 | OSGi - Bundles - Table view: Ordering of Version column content is wrong |
| Content from issues.jboss.org is not included.ENTESB-4186 | OSGi - Features: Filtering is case sensitive |
| Content from issues.jboss.org is not included.ENTESB-4193 | OSGi - Services: Bundle (number value) colomn ordering is lexicographical |
| Content from issues.jboss.org is not included.ENTESB-4194 | OSGi - Declarative Services: Activate button is enabled when Activated service is selected, Deactivate as well |
| Content from issues.jboss.org is not included.ENTESB-4209 | Preferences - Core - Host identification: All colors in color palette are white (IE10) |
| Content from issues.jboss.org is not included.ENTESB-4219 | About page contains unneccessarily 2 same links |
| Content from issues.jboss.org is not included.ENTESB-4232 | Containers - Profiles: Stop, Start, Delete buttons shouldn't be there |
| Content from issues.jboss.org is not included.ENTESB-4234 | Container detail - Provision list: Filtering is case sensitive |
| Content from issues.jboss.org is not included.ENTESB-4246 | Fabric - Wiki: Deleting default version causes exception and disables Wiki page |
| Content from issues.jboss.org is not included.ENTESB-4253 | Fabric - Services - APIs: "APIs, Container, Version" table columns allow only one direction of ordering |
| Content from issues.jboss.org is not included.ENTESB-4256 | Fabric - Services - EIPs: Diagram filtering is case sensitive |
| Content from issues.jboss.org is not included.ENTESB-4331 | Cross Site Scripting Vulnerabilities |
| Content from issues.jboss.org is not included.ENTESB-4350 | Camel on EAP - filtering is not working |
| Content from issues.jboss.org is not included.ENTESB-4352 | Camel on EAP - Route Diagram - ns_error_failure |
| Content from issues.jboss.org is not included.ENTESB-4365 | Unnecessary down arrow |
| Content from issues.jboss.org is not included.ENTESB-4366 | Camel on EAP - Routes - Clear messages should delete message |
| Content from issues.jboss.org is not included.ENTESB-4370 | Camel Debug - Create breakpoint button is not intuitive |
| Content from issues.jboss.org is not included.ENTESB-4372 | Cross in filter field is not unified |
| Content from issues.jboss.org is not included.ENTESB-4375 | Fabric - Services - APIs: Quickstarts link points to a blank page |
| Content from issues.jboss.org is not included.ENTESB-4379 | Camel on EAP - Creating endpoint without choosing component |
| Content from issues.jboss.org is not included.ENTESB-4380 | Camel on EAP - checkboxes are not editable |
| Content from issues.jboss.org is not included.ENTESB-4381 | Camel on EAP - Type converters - Enable/Disable statistics |
| Content from issues.jboss.org is not included.ENTESB-4385 | ContextCreateHandler executed on non camel enabled deployments |
| Content from issues.jboss.org is not included.ENTESB-4391 | Null user on EAP |
| Content from issues.jboss.org is not included.ENTESB-4404 | No automatic reload after Camel Preferences change |
| Content from issues.jboss.org is not included.ENTESB-4405 | Preferences - ID label does not work |
| Content from issues.jboss.org is not included.ENTESB-4407 | Camel on EAP - Showing / Hiding Inflight counter does not work |
| Content from issues.jboss.org is not included.ENTESB-4417 | Preferences - Server Logs: Log batch size setting doesn't work |
| Content from issues.jboss.org is not included.ENTESB-4418 | Camel - two Create Endpoint buttons do different things |
| Content from issues.jboss.org is not included.ENTESB-4516 | Location of containers is displayed differently under Containers and Services tabs |
| Content from issues.jboss.org is not included.ENTESB-4575 | OSGi - getElementsByTagName error |
| Content from issues.jboss.org is not included.ENTESB-4766 | Authorization not working for Hawtio on EAP |
| Content from issues.jboss.org is not included.ENTESB-4862 | Hawtio-Viewing history on profile files throws exception |
| Content from issues.jboss.org is not included.ENTESB-4892 | "viewer" has some rights unexpected in hawtio |
| Content from issues.jboss.org is not included.ENTESB-4919 | Child container does not inherit the location from its parent |
| Content from issues.jboss.org is not included.ENTESB-4928 | Missing convertBodyTo icon |
| Content from issues.jboss.org is not included.ENTESB-4933 | When cxf service is deployed to child container SwaggerFeature uses root container port instead |
| Content from issues.jboss.org is not included.ENTESB-4934 | Possible to Create Duplicate Container Processes in Hawtio |
| Content from issues.jboss.org is not included.ENTESB-4937 | Hawtio fails to show custom bundles in OSGi default view |
| Content from issues.jboss.org is not included.ENTESB-4996 | Viewer role able to create/delete queues and messages via Hawtio |
| Content from issues.jboss.org is not included.ENTESB-5013 | hawtio jetty threadpools tab shows no data |
| Content from issues.jboss.org is not included.ENTESB-5037 | Hawtio - clicking on Services/EIPs results in java.lang.SecurityException: Authentication Failed |
| Content from issues.jboss.org is not included.ENTESB-5059 | Fabric - Wiki: Several icons missing in the left navigation with checkboxes |
| Content from issues.jboss.org is not included.ENTESB-5062 | Fabric: missing all tabs except "Containers" |
| Content from issues.jboss.org is not included.ENTESB-5088 | Hawtio JavaScript error when accessing Quartz tab |
| Content from issues.jboss.org is not included.ENTESB-5191 | Apparent mismatch between command count with tab completion |
| Content from issues.jboss.org is not included.ENTESB-5196 | Vanishing items at various menus |
| Content from issues.jboss.org is not included.ENTESB-5198 | Logs: Often Parse error when loading logs |
| Content from issues.jboss.org is not included.ENTESB-5199 | Fabric - Containers - Profiles: Clicking profile's tags causes exception |
| Content from issues.jboss.org is not included.ENTESB-5200 | Fabric - Containers,Services: Remove Stop button when Root container selected |
| Content from issues.jboss.org is not included.ENTESB-5209 | Deleting topics doesn't have a confirmation dialog |
| Content from issues.jboss.org is not included.ENTESB-5213 | Bump licence headers to 2016 |
| Content from issues.jboss.org is not included.ENTESB-5226 | Hawtio change behavior of Activate/Deactivate buttons in OSGi/Declarative Services |
| Content from issues.jboss.org is not included.ENTESB-5244 | Fabric - Wiki - Delete version dialog: Change warning for default version |
| Content from issues.jboss.org is not included.ENTESB-5252 | Clicking on Jetty tab shows "Are you sure?" screen for a moment |
| Content from issues.jboss.org is not included.ENTESB-5324 | Health tab in Hawtio not being displayed for fabric containers |
| Content from issues.jboss.org is not included.ENTESB-5441 | Scaling Save and Cancel buttons are not disabled after cancel |
| Content from issues.jboss.org is not included.ENTESB-5525 | Fabric - Containers - Location: Filtering field filters containers instead of locations |
| Content from issues.jboss.org is not included.ENTESB-5566 | Multiple roles defined in hawtio.roles property not working in EAP |
| Content from issues.jboss.org is not included.ENTESB-5596 | OSGi - Declarative Services - {{row.id}} shows up |
| Content from issues.jboss.org is not included.ENTESB-5622 | User with Read-only privilege can delete/move messages through hawtio |
| Content from issues.jboss.org is not included.ENTESB-5629 | Authenticator.checkIfSubjectHasRequiredRoleOnWebsphere method is missing logic to handle multiple roles |
| Content from issues.jboss.org is not included.ENTESB-5647 | Need to add MRRC earlyaccess repo |
| Content from issues.jboss.org is not included.ENTESB-5657 | Fabric - Profiles - Deploy: Creating a new container with profiles version other than default fails |
| Content from issues.jboss.org is not included.ENTESB-5768 | Fabric - Wiki - profile detail: typing in add artifact field is mirrored to another text field |
| Content from issues.jboss.org is not included.ENTESB-5818 | Upgrade httpclient version to latest, at a minimum > 4.3.4 |
| Content from issues.jboss.org is not included.ENTESB-5921 | There is not Delete button in Hawtio for SSH container |
| Content from issues.jboss.org is not included.ENTESB-5935 | intermittent ServerModel LinkageError when connecting to ssh container |
| Content from issues.jboss.org is not included.ENTESB-5958 | Fabric - Services - Containers: Containers list disappears when a container migrated to a version not containing one of the current profiles |
| Content from issues.jboss.org is not included.ENTESB-5976 | Hawtio on EAP shows wrong Context Root |
| Content from issues.jboss.org is not included.ENTMQ-1078 | Some characters in the name of queue should not be allowed |
| Content from issues.jboss.org is not included.ENTMQ-1850 | ActiveMQ - Browse: Un/checking all messages doesn't work properly after any message deleted |
5.11. JON Plug-Ins
Table 5.11. JON Plug-In Issues Resolved in 6.3.0
| Issue | Description |
|---|---|
| Content from issues.jboss.org is not included.ENTESB-5213 | Bump licence headers to 2016 |
| Content from issues.jboss.org is not included.FUSEJON-128 | StorePercentUsage measurement value is returned by the plug-in as an integer rather then decimal |
Chapter 6. Enhancements
6.1. General - 6.3.0
Table 6.1. General Enhancements in 6.3.0
6.2. Messaging - 6.3.0
Table 6.2. Messaging Enhancements in 6.3.0
6.3. SwitchYard
Table 6.3. SwitchYard Enhancements in 6.3.0
6.4. Routing
Table 6.4. Routing Enhancements in 6.3.0
6.5. Web Services
Table 6.5. Web Services Enhancements in 6.3.0
| Enhancement | Description |
|---|---|
| Content from issues.jboss.org is not included.ENTESB-4135 | Update to the JMS 2.0 API |
| Content from issues.jboss.org is not included.ENTESB-4597 | Review examples shipped in extras directory for camel & cxf |
| Content from issues.jboss.org is not included.ENTESB-5239 | Upgrade Xalan bundle to 2.7.2_3 |
| Content from issues.apache.org is not included.CXF-3344 | Runtime Exceptions should not be wrapped. Exceptions should not be logged and rethrown in AbstractFaultChainInitiatorObserver |
| Content from issues.apache.org is not included.CXF-4242 | Add exception name to faultstring/detail/stackTrace |
| Content from issues.apache.org is not included.CXF-5193 | Support fixed data type |
| Content from issues.apache.org is not included.CXF-5311 | Support OAuth2 JWT token |
| Content from issues.apache.org is not included.CXF-5439 | Introduce annotations for marking CXF interceptors and features to enable the auto-discovery |
| Content from issues.apache.org is not included.CXF-5582 | Enhance CXF LogBrowser to receive Log events in real time via WebSocket |
| Content from issues.apache.org is not included.CXF-5606 | WADL to Java code generator should translate wadl:doc into Java documentation |
| Content from issues.apache.org is not included.CXF-5669 | Create JAX-RS service for managing 3rd party client registrations |
| Content from issues.apache.org is not included.CXF-5674 | CXF Support in "Audience Restriction" of SAML 2 (SOAP) |
| Content from issues.apache.org is not included.CXF-5854 | Add property "refreshTemplates" to XSLTJaxbProvider |
| Content from issues.apache.org is not included.CXF-5891 | ReadHeadersInterceptor performances improvement |
| Content from issues.apache.org is not included.CXF-5902 | Provide utility support for Jwe composite AesCbcHmac content encryption algorithm |
| Content from issues.apache.org is not included.CXF-5908 | Making Claims clonable |
| Content from issues.apache.org is not included.CXF-5914 | Extend AbstractPolicyProvider.getEffectivePolicy() with optional message parameter |
| Content from issues.apache.org is not included.CXF-5922 | Secure CXF WSDL with standard HTTP Authentication |
| Content from issues.apache.org is not included.CXF-5925 | JEXL Support for STS Claim Mappings |
| Content from issues.apache.org is not included.CXF-5926 | Extend SSL KeyManagers with password callback handler |
| Content from issues.apache.org is not included.CXF-5927 | Claim Mapping Utils |
| Content from issues.apache.org is not included.CXF-5929 | WADL to Java code generator should support mappings to parameterized types |
| Content from issues.apache.org is not included.CXF-5932 | Monitor contention at org.apache.cxf.jaxrs.utils.JAXRSUtils.processParameters(OperationResourceInfo, MultivaluedMap, Message) |
| Content from issues.apache.org is not included.CXF-5934 | Make WadlGenerator more easily extensible |
| Content from issues.apache.org is not included.CXF-5937 | CXF Servlets should optionally react to X-Forwarded headers |
| Content from issues.apache.org is not included.CXF-5944 | Get Jwe and Jws code to the stage where it can be documented |
| Content from issues.apache.org is not included.CXF-5948 | wadl2java -inheritResourceParams: put parent param first |
| Content from issues.apache.org is not included.CXF-5954 | Jwe and Jws JAX-RS filters should be able to use JWK stores |
| Content from issues.apache.org is not included.CXF-5956 | wadl2java: support 'repeating' attribute for response param |
| Content from issues.apache.org is not included.CXF-5959 | support to specify instance.id of ManagedBus |
| Content from issues.apache.org is not included.CXF-5960 | Provide a default encrypting OAuth2 provider |
| Content from issues.apache.org is not included.CXF-5962 | Make LogBrowser sample also run in OSGi |
| Content from issues.apache.org is not included.CXF-5975 | SecurityToken::isExpired: add clock skew option |
| Content from issues.apache.org is not included.CXF-5979 | Allow some headers to be returned in WebSocket's streaming responses |
| Content from issues.apache.org is not included.CXF-5984 | Provide a simple way start a decoupled servlet endpoint |
| Content from issues.apache.org is not included.CXF-5986 | wadl2java maven plugin: add support for filename wildcards |
| Content from issues.apache.org is not included.CXF-5990 | Integration custom parser |
| Content from issues.apache.org is not included.CXF-6006 | StreamingOutput in JAXRS client proxies |
| Content from issues.apache.org is not included.CXF-6009 | Monitor contention at org.apache.cxf.transport.http.Headers |
| Content from issues.apache.org is not included.CXF-6019 | WSDLGetUtils: original exception isn't logged by exceptions in WSDL parser |
| Content from issues.apache.org is not included.CXF-6042 | Support certificate constraints in JAX-RS XML Signature |
| Content from issues.apache.org is not included.CXF-6043 | Multi User BaseDN Support for LdapClaimsHandler |
| Content from issues.apache.org is not included.CXF-6046 | Enhance SwaggerFeature to support JAX-RS annotations |
| Content from issues.apache.org is not included.CXF-6047 | Extend the STSTokenValidator to be able to call the issue binding |
| Content from issues.apache.org is not included.CXF-6048 | Support roles in the AuthPolicyValidatingInterceptor |
| Content from issues.apache.org is not included.CXF-6051 | Support sp13:Nonce + sp13:Created in the UsernameTokenInterceptor |
| Content from issues.apache.org is not included.CXF-6054 | Add a property to allow using unsigned saml tokens as principals |
| Content from issues.apache.org is not included.CXF-6064 | Improve WADL Generator Extensibility for ID generation |
| Content from issues.apache.org is not included.CXF-6074 | Add configured XmlAdapters |
| Content from issues.apache.org is not included.CXF-6079 | static-resource-list cache control |
| Content from issues.apache.org is not included.CXF-6081 | Make it easier to control the way AccessTokenService checks the passwords |
| Content from issues.apache.org is not included.CXF-6084 | Critical Header for JWS |
| Content from issues.apache.org is not included.CXF-6087 | Add a way to exclude (multiple) SSL/TLS protocols in the HTTPJ namespace |
| Content from issues.apache.org is not included.CXF-6098 | Use RSA-SHA256 by default when issuing tokens in the STS |
| Content from issues.apache.org is not included.CXF-6107 | Supporting (Un)marshaller aware XML Readers and Writers in jaxb data binding |
| Content from issues.apache.org is not included.CXF-6110 | AbstractSTSClient MEX: download XML schema from Location |
| Content from issues.apache.org is not included.CXF-6120 | Optionally disable the creation of the JMS Security Context for incoming messages |
| Content from issues.apache.org is not included.CXF-6124 | Switch http transport to use HttpService for OSGi |
| Content from issues.apache.org is not included.CXF-6131 | JAX-RS resource spring auto-discovery doesn't work in OSGi |
| Content from issues.apache.org is not included.CXF-6133 | Introduce Jwe and Jws exception classes to make it easier to provide dedicated JAX-RS exception mappers |
| Content from issues.apache.org is not included.CXF-6135 | CXF should be installable in karaf 4 minimal |
| Content from issues.apache.org is not included.CXF-6141 | KeyType information in STS Audit Log |
| Content from issues.apache.org is not included.CXF-6142 | OAuth2 AccessTokenValidator needs to accept more parameters |
| Content from issues.apache.org is not included.CXF-6148 | Adding support for xsd:choice in Javascript generator |
| Content from issues.apache.org is not included.CXF-6150 | Override XSLTJaxbProvider xsl path at runtime |
| Content from issues.apache.org is not included.CXF-6157 | Support storing of OAuth2 redirection state in a session token |
| Content from issues.apache.org is not included.CXF-6162 | Adding support for xsd:group ref in Javascript generator |
| Content from issues.apache.org is not included.CXF-6164 | OAuthClientUtils Consumer class needs to be moved to a standalone class |
| Content from issues.apache.org is not included.CXF-6167 | Add an ability to specify SOAP error parser for Javascript client |
| Content from issues.apache.org is not included.CXF-6168 | Avoid ServletController synchronizing on the destination by default |
| Content from issues.apache.org is not included.CXF-6173 | Unable to configure CXF StAX properties on a per-endpoint/client basis if a JAX-WS handler is configured |
| Content from issues.apache.org is not included.CXF-6175 | STS: warning message is not informative, in case if service doesn't match |
| Content from issues.apache.org is not included.CXF-6191 | Avoid Spring usage by configuration in ClassHelper |
| Content from issues.apache.org is not included.CXF-6199 | Allow scalability for slow services on jms |
| Content from issues.apache.org is not included.CXF-6200 | CXF JAX-RS Model extension should be usable without custom service classes |
| Content from issues.apache.org is not included.CXF-6206 | JAASLoginInterceptor: Return proper unauthorized response when JAAS login with basic auth fails |
| Content from issues.apache.org is not included.CXF-6220 | JWA algorithm representation code needs to be cleaned up |
| Content from issues.apache.org is not included.CXF-6223 | Support message property for encryption certificate |
| Content from issues.apache.org is not included.CXF-6227 | JAX-WS client performance improvements |
| Content from issues.apache.org is not included.CXF-6232 | Refactor CXF's Atmosphere based WebSocket transport for more flexible and extensible handling |
| Content from issues.apache.org is not included.CXF-6238 | Java2WADL : Generating response status attribute |
| Content from issues.apache.org is not included.CXF-6244 | ContentDisposition should support UTF-8 filenames |
| Content from issues.apache.org is not included.CXF-6251 | Allow org.apache.cxf.logging.enabled to have a value of "pretty" for pretty printing |
| Content from issues.apache.org is not included.CXF-6255 | WSS4JInInterceptor: "Security header, but it's a fault" |
| Content from issues.apache.org is not included.CXF-6267 | Refactor issuing and renewing SAML token functionality into utility class |
| Content from issues.apache.org is not included.CXF-6268 | Make cxf-codegen-plugin toolchains aware during maven build |
| Content from issues.apache.org is not included.CXF-6277 | Enhance the X509TokenValidator to also validate X509Data DOM Elements |
| Content from issues.apache.org is not included.CXF-6282 | Add ability to have proxies implement AutoCloseable |
| Content from issues.apache.org is not included.CXF-6283 | Support binary attributes in the LDAPClaimsHandler |
| Content from issues.apache.org is not included.CXF-6286 | Make request logging more Modular |
| Content from issues.apache.org is not included.CXF-6308 | Make WebSocket transport's embedded jetty mode to use atmosphere if available |
| Content from issues.apache.org is not included.CXF-6329 | Allow multiple atmosphere interceptors to be configured for the websocket transport |
| Content from issues.apache.org is not included.CXF-6333 | Support Inclusive C14N via security policy |
| Content from issues.apache.org is not included.CXF-6334 | Add the ability to plug in custom security policy validators for various assertions |
| Content from issues.apache.org is not included.CXF-6335 | Explicitly set HTTPConduit on client inbound message |
| Content from issues.apache.org is not included.CXF-6337 | Support the redirection directly via the injected JAX-RS ServletContext context |
| Content from issues.apache.org is not included.CXF-6341 | Add atmosphere when installing feature cxf-transports-websocket-server |
| Content from issues.apache.org is not included.CXF-6344 | Support system file location for JexlClaimMapper scripts |
| Content from issues.apache.org is not included.CXF-6345 | Support Logging in JexlClaimMapper scripts |
| Content from issues.apache.org is not included.CXF-6353 | provide a not typed way to configure cxf jaxrs clients |
| Content from issues.apache.org is not included.CXF-6363 | Introduce JwsHeaders |
| Content from issues.apache.org is not included.CXF-6372 | Generating distinct claim values for multi-value LDAP attributes |
| Content from issues.apache.org is not included.CXF-6381 | Upgrade to pax exam 4.5.0 and allow to test with karaf 4 |
| Content from issues.apache.org is not included.CXF-6394 | Add an option to add the namespace map of the container element in the message |
| Content from issues.apache.org is not included.CXF-6399 | Add attributes transform handling in transform feature |
| Content from issues.apache.org is not included.CXF-6400 | Make ws-security.callback-handler optional for generating a WS-Security signature |
| Content from issues.apache.org is not included.CXF-6401 | Change the order that the set of security results are searched to create a security context |
| Content from issues.apache.org is not included.CXF-6404 | HTTPConduit performance improvements |
| Content from issues.apache.org is not included.CXF-6407 | Use default JVM cipher suites if no filters are specified |
| Content from issues.apache.org is not included.CXF-6411 | Improve NoOsgi Blueprint Integration |
| Content from issues.apache.org is not included.CXF-6414 | Add a way of including TLS protocols in the Jetty server |
| Content from issues.apache.org is not included.CXF-6417 | Investigate how the logging of binary attachment parts can be disabled |
| Content from issues.apache.org is not included.CXF-6419 | Update JMSEndpoint properties using EndpointInfo |
| Content from issues.apache.org is not included.CXF-6420 | Maven cxf-java2ws-plugin copies to the maven repository only the last wsdl of multiple services/executions - overwrites the others |
| Content from issues.apache.org is not included.CXF-6421 | Slim Exchange map down |
| Content from issues.apache.org is not included.CXF-6425 | Check for external transactions in PollingMessageListenerContainer |
| Content from issues.apache.org is not included.CXF-6438 | Optimize ExtensionInvocationHandler |
| Content from issues.apache.org is not included.CXF-6440 | New metrics component doesn't record metrics for Rest resources |
| Content from issues.apache.org is not included.CXF-6470 | Make SimplePrinciple Serializable |
| Content from issues.apache.org is not included.CXF-6476 | Introduce Swagger v1.5 feature (v2.0 specification) |
| Content from issues.apache.org is not included.CXF-6478 | Introduce the option to disable using query parameters to populate the form maps |
| Content from issues.apache.org is not included.CXF-6482 | Old javax.servlet.http version in oauth2 bundle |
| Content from issues.apache.org is not included.CXF-6483 | Sort ConfigurerImpl Matchers by a number of literal characters |
| Content from issues.apache.org is not included.CXF-6498 | Update JAX-RS 2.0 ClientImpl to support CXF features |
| Content from issues.apache.org is not included.CXF-6499 | WADL Generator should optionally ignore path params for the same path method evaluation |
| Content from issues.apache.org is not included.CXF-6508 | JAASLoginInterceptor should allow named Principals |
| Content from issues.apache.org is not included.CXF-6509 | CXF is mysterious about invalid JAX-RS bean classes |
| Content from issues.apache.org is not included.CXF-6521 | RS SAML Out Interceptors should be able to reuse tokens set by STSTokenOutInterceptor |
| Content from issues.apache.org is not included.CXF-6525 | Support for http://docs.oasis-open.org/wss/oasis-wss-SwAProfile-1.1#Attachment-Content-Only when using WSS-Policy |
| Content from issues.apache.org is not included.CXF-6557 | Use the default swagger-ui html page in swagger2 sample |
| Content from issues.apache.org is not included.CXF-6562 | ResourceOwnerGrantHandler: doesn't have getter for loginHandler |
| Content from issues.apache.org is not included.CXF-6565 | DOM4JProvider should support suppressing XML declarations |
| Content from issues.apache.org is not included.CXF-6566 | Update WADLGenerator to avoid converting existing resources to DOM |
| Content from issues.apache.org is not included.CXF-6568 | Default WebApplicationExceptionMapper should be optionally made less specific |
| Content from issues.apache.org is not included.CXF-6571 | Adding an option in Swager2Feature to scan non-swagger annotated resources |
| Content from issues.apache.org is not included.CXF-6572 | OAuth2 Hawk Scheme requests |
| Content from issues.apache.org is not included.CXF-6586 | Missing some bean properties in Swagger2Feature |
| Content from issues.apache.org is not included.CXF-6610 | Throttling Interceptors can not abort but only delay overflowing requests |
| Content from issues.apache.org is not included.CXF-6623 | Add support for nested @BeanParam's |
| Content from issues.apache.org is not included.CXF-6625 | Wadl-to-Java should be able to generate custom method annotation classes |
| Content from issues.apache.org is not included.CXF-6633 | Enhance Swagger feature with optional dynamic basePath, tags and Javadocs handling |
| Content from issues.apache.org is not included.CXF-6634 | Move DocumentationProvider interface out of .model.wadl. package |
| Content from issues.apache.org is not included.CXF-6643 | Upgrade Apache HTrace to 4.0 |
| Content from issues.apache.org is not included.CXF-6644 | Move Basic JSON parser code into a dedicated module |
| Content from issues.apache.org is not included.CXF-6645 | Introduce a 'jose.debug' property |
| Content from issues.apache.org is not included.CXF-6658 | Make ServletContextResourceResolver optionally ignored |
| Content from issues.apache.org is not included.CXF-6661 | WADLGenerator should optionally include xsi schemaLocation |
| Content from issues.apache.org is not included.CXF-6663 | Scope based authorization support for OAuth2 RS endpoints |
| Content from issues.apache.org is not included.CXF-6686 | Provide AccessTokenValidator RFC7662 |
| Content from issues.apache.org is not included.CXF-6690 | WADL2Java should try to split complex XJC parameters |
| Content from issues.apache.org is not included.CXF-6695 | SwaggerFeature: add support for @MatrixParam and @BeanParam |
| Content from issues.apache.org is not included.CXF-6712 | [cxf-java2wadl-plugin] Add parameter encoding to goal parsejavadoc |
| Content from issues.apache.org is not included.CXF-6716 | java2ws should log a warning message for a Holder parameter annoated with WebParam.Mode.IN property |
| Content from issues.apache.org is not included.CXF-6722 | OAuthDataProvider needs to have methods for listing client tokens |
| Content from issues.apache.org is not included.CXF-6732 | Allow SOAPAction to be overwritten via RequestContext property |
| Content from issues.apache.org is not included.CXF-6736 | Support login_hint at OidcClientCodeRequestFilter |
| Content from issues.apache.org is not included.CXF-6738 | Reduce contention on org.apache.cxf.binding.soap.SoapTransportFactory$SoapEndpointInfo |
| Content from issues.apache.org is not included.CXF-6739 | Reduce memory pressure in org.apache.cxf.attachment.AttachmentDeserializer |
| Content from issues.apache.org is not included.CXF-6766 | Option to disable XMLConstants.FEATURE_SECURE_PROCESSING in XSLTJaxbProvider |
| Content from issues.apache.org is not included.CXF-6767 | OSGI ServletImporter should be able to accept extra properties |
| Content from issues.apache.org is not included.CXF-6771 | JAX-RS ContextProvider should be able to support Servlet contexts |
| Content from issues.apache.org is not included.CXF-6774 | Allow ClientImpl to be thread-safe |
| Content from issues.apache.org is not included.CXF-6779 | Swagger Feature should become discoverable |
| Content from issues.apache.org is not included.CXF-6786 | avoid Error log from NamePasswordCallbackHandler |
| Content from issues.apache.org is not included.CXF-6789 | SwaggerFeature default resource package calculation should try to support multiple resource classes better |
| Content from issues.apache.org is not included.CXF-6802 | Decode ContentDisposition filename encoded with codepoints only |
| Content from issues.apache.org is not included.CXF-6808 | Update JWS/JWE utils to load named properties |
| Content from issues.apache.org is not included.CXF-6826 | Cache MediaTypeHeaderProvider.valueOf(String mType) results |
| Content from issues.apache.org is not included.CXF-6827 | OAuthRequestFilter should be able to cache token validation results |
| Content from issues.apache.org is not included.CXF-6831 | should be able to configure the certStore key type |
| Content from issues.apache.org is not included.CXF-6837 | Add cache for MessageBodyReader/Writer |
| Content from issues.apache.org is not included.CXF-6840 | xsd:import without schemaLocation does not get resolved in SchemaHandler |
| Content from issues.apache.org is not included.CXF-6861 | Introduce a typed JAXBElement provider |
| Content from issues.apache.org is not included.CXF-6903 | add a NameDigestPasswordCallbackHandler for JAASLoginInterceptor |
| Content from issues.apache.org is not included.CXF-6910 | don't need setSocketTimeout when create ahc RequestConfig |
| Content from issues.apache.org is not included.CXF-5118 | Create CXF interceptor which will use HTTPS client certificates to create JAAS SecurityContext |
| Content from issues.apache.org is not included.CXF-5607 | Support for CXF OAuth2 endpoints participating in OpenId-Connect flows |
| Content from issues.apache.org is not included.CXF-5909 | TLS Authenticated Handshake and Authentication/Authorization with JAAS by TLS Certificate |
| Content from issues.apache.org is not included.CXF-5923 | Create sample to demonstrate usage of search extension with Lucene and Tika |
| Content from issues.apache.org is not included.CXF-5996 | respect client cache headers |
| Content from issues.apache.org is not included.CXF-6028 | Improved metrics |
| Content from issues.apache.org is not included.CXF-6053 | Support JWS JSON Serialization |
| Content from issues.apache.org is not included.CXF-6085 | JWE JSON Serialization |
| Content from issues.apache.org is not included.CXF-6132 | Provide JAX-RS ServletContainerInitializer |
| Content from issues.apache.org is not included.CXF-6215 | Introduce JAX-RS DefaultMethod extension |
| Content from issues.apache.org is not included.CXF-6242 | Ability to configure the format of the marshalling / unmarshalling exceptions that are thrown by JAXB when schema validation is enabled. |
| Content from issues.apache.org is not included.CXF-6264 | Provide Swagger to CXF UserResource converter |
| Content from issues.apache.org is not included.CXF-6360 | Integration with Apache HTrace |
| Content from issues.apache.org is not included.CXF-6477 | Add "publish" attribute to jaxrs blueprint bean |
| Content from issues.apache.org is not included.CXF-6735 | Enable/Disable SecurityTokenReference with configuration for CXF/.NET interoperability |
| Content from issues.apache.org is not included.CXF-6784 | WS-Notification subscription should support renew |
| Content from issues.apache.org is not included.FEDIZ-134 | Create light-weight OIDC IDP |
| Content from issues.apache.org is not included.CXF-5855 | Introduce support for Server Sent Events |
| Content from issues.apache.org is not included.CXF-4780 | Enhance JAASAuthenticationFilter to support FORM login |
| Content from issues.apache.org is not included.CXF-4913 | Add 'validate' option to WADL to Java generator |
| Content from issues.apache.org is not included.CXF-5886 | Provide a default Ehcache based OAuth2 provider |
| Content from issues.apache.org is not included.CXF-5901 | Investigate how WebSocket Transport can support CORS |
| Content from issues.apache.org is not included.CXF-5941 | Update JAX-RS version to 2.0.1 |
| Content from issues.apache.org is not included.CXF-5993 | Update to Jettison 1.3.6 |
| Content from issues.apache.org is not included.CXF-6052 | Upgrade the Karaf version to support JDK8 |
| Content from issues.apache.org is not included.CXF-6121 | Update to Jettison 1.3.7 |
| Content from issues.apache.org is not included.CXF-6165 | Create OIDC OAuth2 demo |
| Content from issues.apache.org is not included.CXF-6253 | Upgrade async-http-client to 1.9.8 |
| Content from issues.apache.org is not included.CXF-6278 | Introduce MessageDigestInputStream utility class |
| Content from issues.apache.org is not included.CXF-6279 | Introduce X509 Certificate Path validation utility code |
| Content from issues.apache.org is not included.CXF-6280 | Consider providing a DirectAccessToken JAXRS service |
| Content from issues.apache.org is not included.CXF-6391 | Create JAX-WS and JAX-RS Spring Boot demo |
| Content from issues.apache.org is not included.CXF-6397 | Upgrade atmosphere to 2.3.0 |
| Content from issues.apache.org is not included.CXF-6449 | Upgrade Atmosphere to 2.3.2 |
| Content from issues.apache.org is not included.CXF-6487 | OIDC RP code needs to pass a verification test |
| Content from issues.apache.org is not included.CXF-6490 | Create OIDC Authentication Only demo |
| Content from issues.apache.org is not included.CXF-6503 | Investigate if WADL JavaDocProvider can report JavaDocs of inherited methods |
| Content from issues.apache.org is not included.CXF-6530 | Add a webapp version of Swagger2Feature sample using spring |
| Content from issues.apache.org is not included.CXF-6541 | Add an OSGi version of Swagger2Feature sample using blueprint |
| Content from issues.apache.org is not included.CXF-6725 | Remove deprecated JOSE configuration properties |
| Content from issues.apache.org is not included.CXF-6726 | Complete JOSE documentation |
| Content from issues.apache.org is not included.CXF-6815 | Upgrade Reflections bundle to version 0.9.10_3 |
| Content from issues.apache.org is not included.CXF-6818 | Upgrade to latest Jetty8 8.1.19.v20160209 |
| Content from issues.apache.org is not included.CXF-6853 | Support encoded value in @ApplicationPath |
| Content from issues.jboss.org is not included.ENTESB-4708 | [6.3] Summary of problems with version alignment |
| Content from issues.jboss.org is not included.ENTESB-5636 | 3rd party alignments - built from source strict alignments |
| Content from issues.apache.org is not included.CXF-6070 | NPE while calling a webservice using a clientproxy |
| Content from issues.apache.org is not included.CXF-6129 | CXF STS basic systests failure |
| Content from issues.apache.org is not included.CXF-6130 | all tests in org.apache.cxf.osgi.itests failed |
| Content from issues.apache.org is not included.CXF-6202 | Create JWS JoseCookBook tests |
| Content from issues.apache.org is not included.CXF-6318 | Execute JAXRS WebSocket systests with and without atmosphere |
| Content from issues.apache.org is not included.CXF-6346 | Unit test failures with JDK8 |
| Content from issues.apache.org is not included.CXF-6068 | Make org.apache.cxf.binding.soap.interceptor.ReadHeadersInterceptor compatible with WebSphere 7 |
| Content from issues.apache.org is not included.CXF-6704 | Upgrade to httpclient 4.5.x |
| Content from issues.apache.org is not included.CXF-6790 | change accessibility of WadlGenerator.getBaseUri(...) to protected |
6.6. Fuse on JBoss EAP
Table 6.6. Fuse on EAP Enhancements in 6.3.0
| Enhancement | Description |
|---|---|
| Content from issues.jboss.org is not included.ENTESB-4479 | Update Jenkins jobs to use Flaky Test Plugin and Surefire rerun failing tests option |
| Content from issues.jboss.org is not included.ENTESB-4685 | Package javadocs with distro |
| Content from issues.jboss.org is not included.ENTESB-5072 | Update to fuse-patch-2.1.0 |
6.7. Container - 6.3.0
Table 6.7. Container Enhancements in 6.3.0
6.8. Fuse Fabric - 6.3.0
Table 6.8. Fabric Enhancements in 6.3.0
| Enhancement | Description |
|---|---|
| Content from issues.apache.org is not included.KARAF-4449 | Upgrade to Aries proxy-impl 1.0.5 |
| Content from issues.jboss.org is not included.ENTESB-2705 | Appending value to property in default profile breaks property file |
| Content from issues.jboss.org is not included.ENTESB-3155 | mq-create : use default-version when no version is specified, instead of 1.0 |
| Content from issues.jboss.org is not included.ENTESB-4135 | Update to the JMS 2.0 API |
| Content from issues.jboss.org is not included.ENTESB-4221 | Please tidy up jetty port references in our configuration files |
| Content from issues.jboss.org is not included.ENTESB-4222 | Improve the recovery of fuse ensemble cluster |
| Content from issues.jboss.org is not included.ENTESB-4581 | Fabric8 jvm options for nodes should be applied when node is started using bin/karaf |
| Content from issues.jboss.org is not included.ENTESB-4583 | Need a way to change the user credentials for managing SSH containers |
| Content from issues.jboss.org is not included.ENTESB-4598 | Need a way to set "autopurge.purgeInterval" of Zookeeper. |
| Content from issues.jboss.org is not included.ENTESB-4600 | [patching] Add warning or error when applying patch for Fuse 6.1 on Fuse 6.2 |
| Content from issues.jboss.org is not included.ENTESB-4674 | jmxRole configuration not inherited from parent when creating child container |
| Content from issues.jboss.org is not included.ENTESB-4684 | Request to provide additional status in the fabric:container-list command |
| Content from issues.jboss.org is not included.ENTESB-4726 | Upgrade swagger to 1.5.4 |
| Content from issues.jboss.org is not included.ENTESB-4787 | Fabric child container's initial properties should default to those of its parent |
| Content from issues.jboss.org is not included.ENTESB-4917 | Enhance Exception Reporting In FabricFeaturesServiceImpl |
| Content from issues.jboss.org is not included.ENTESB-5041 | Add option to "fabric:requirements-export" command to indent requirements-export json output |
| Content from issues.jboss.org is not included.ENTESB-5052 | Update the camel-cxf-code-first and camel-cxf-contract-first quickstarts so they don't use the same endpoints |
| Content from issues.jboss.org is not included.ENTESB-5182 | Please include org.springframework/spring-webmvc in Fuse BOM |
| Content from issues.jboss.org is not included.ENTESB-5479 | Fabric should externalize jolokia-access.xml, or provide similar configuration facilities |
| Content from issues.jboss.org is not included.ENTESB-5533 | unable to delete resource from fabric:profile-edit --delete |
| Content from issues.jboss.org is not included.ENTESB-5537 | [patching] Make it easier to patch patching mechanism itself |
| Content from issues.jboss.org is not included.ENTESB-5805 | beginner/camel-log-wiki example uses invalid timer value |
| Content from issues.jboss.org is not included.ENTESB-4340 | Delete bin/deletefabric8 script |
| Content from issues.jboss.org is not included.ENTESB-4386 | Use system specific init scripts |
| Content from issues.jboss.org is not included.ENTESB-4440 | upgrade to jetty 9 |
| Content from issues.jboss.org is not included.ENTESB-4441 | upgrade to CXF 3.1 |
| Content from issues.jboss.org is not included.ENTESB-4852 | Support AMQ 7 clients and camel connector |
| Content from issues.jboss.org is not included.ENTESB-4901 | Missing --manual-ip parameter for fabric:container-resolver-set manualip |
| Content from issues.apache.org is not included.ARIES-1395 | Add a structure-only option to Blueprint xml-validation feature |
| Content from issues.apache.org is not included.CAMEL-9039 | Feature camel-core contains bundles, which should be made optional for micro-services deployment |
| Content from issues.jboss.org is not included.ENTESB-4806 | Race condition in Fabric environment deploying SAP Components to child container |
| Content from issues.jboss.org is not included.ENTESB-5243 | Upgrade pax-url to version >= 2.4.7 |
| Content from issues.jboss.org is not included.ENTESB-4708 | [6.3] Summary of problems with version alignment |
| Content from issues.jboss.org is not included.ENTESB-4857 | Disable geoIP by default |
| Content from issues.jboss.org is not included.ENTESB-5408 | Upgrade to Pax Logging 1.8.5 |
| Content from issues.jboss.org is not included.ENTESB-5636 | 3rd party alignments - built from source strict alignments |
| Content from issues.jboss.org is not included.ENTESB-5764 | [maven] Verify whether fabric-maven should serve SNAPSHOTs from defaultRepositories |
| Content from issues.jboss.org is not included.ENTESB-5803 | [patching] split patch-core to impl and api bundles |
6.9. Management Console - 6.3.0
Table 6.9. Enhancements in 6.3.0
| Enhancement | Description |
|---|---|
| Content from issues.jboss.org is not included.ENTESB-4479 | Update Jenkins jobs to use Flaky Test Plugin and Surefire rerun failing tests option |
| Content from issues.jboss.org is not included.ENTESB-4581 | Fabric8 jvm options for nodes should be applied when node is started using bin/karaf |
| Content from issues.jboss.org is not included.ENTESB-4599 | Hawtio: Update Camel tab for new or removed camel contexts/routes [Fabric mode] |
| Content from issues.jboss.org is not included.ENTESB-5479 | Fabric should externalize jolokia-access.xml, or provide similar configuration facilities |
| Content from issues.jboss.org is not included.ENTESB-5791 | Jolokia - Allow to override all the defaults at startup time |
| Content from issues.jboss.org is not included.ENTESB-4708 | [6.3] Summary of problems with version alignment |
| Content from issues.jboss.org is not included.ENTESB-5004 | Update Fuse Jenkins to use Build Pipelines |
| Content from issues.jboss.org is not included.ENTESB-5636 | 3rd party alignments - built from source strict alignments |
6.10. JON Plug-Ins
Table 6.10. JON Plug-In Enhancements in 6.3.0
| Enhancement | Description |
|---|---|
| Content from issues.jboss.org is not included.FUSEJON-126 | AMQ Restart via JBoss ON fails sometimes |
Chapter 7. Supported Configurations
7.1. Information on the Customer Portal
Legal Notice
Trademark Disclaimer