Apêndice A. Material de Referência
A.1. Avisos de operação de migração de subsistema JacORB
The migrate
operation is not able to process all resources and attributes. The following table lists some of the warnings you might see when you run either the migrate
or describe-migration
operation for the jacorb
subsystem.
Se você vir entradas "Não foi possível migrar" ou "Não pode migrar" na saída da operação migrate
, isto indica que a migração da configuração do servidor foi completada com sucesso porém não conseguiu migrar automaticamente todos os elementos e atributos. Você deve seguir as sugestões fornecidas pelo "avisos de migração" para modificar estas configurações.
Mensagens de aviso | O que significa / Como resolver |
---|---|
A migração |
A operação $ EAP_HOME/bin/standalone.sh --admin-only |
Propriedades X não podem ser emuladas utilizando OpenJDK ORB e não são suportadas |
A configuração de propriedade específica não é suportada e não é incluída na configuração do novo subsistema
Propriedades não suportadas incluem: |
As propriedades X usam expressões. Propriedades de configuração que são usadas para resolver essas expressões devem ser transformadas manualmente para o novo formato do subsistema |
Propriedades que usam expressões devem ser configuradas manualmente pelo administrador.
Por exemplo, o subsistema |
Não é possivel migar: o novo subsistema |
A mensagem contém a explicação. |
A.2. Avisos para a operação de migração de subsistema de mensagem
The migrate
operation is not able to process all resources and attributes. The following table lists some of the warnings you might see when you run either the migrate
or describe-migration
operation for the messaging
subsystem.
Se você vir entradas "Não foi possível migrar" ou "Não pode migrar" na saída da operação migrate
, isto indica que a migração da configuração do servidor foi completada com sucesso porém não conseguiu migrar automaticamente todos os elementos e atributos. Você deve seguir as sugestões fornecidas pelo "avisos de migração" para modificar estas configurações.
Mensagens de aviso | O que significa / Como resolver |
---|---|
A operação |
A operação $ EAP_HOME/bin/standalone.sh --admin-only |
Não foi possível migar o atributo |
A mensagem contém explicação e indica como fazer para corrigir o problema. |
Não foi possível migar o atributo |
A mensagem contém explicação e indica como fazer para corrigir o problema. |
Não foi possível migrar o atributo |
A mensagem contém explicação e indica como fazer para corrigir o problema. |
Não foi possível migar o atributo |
O recurso |
As classes que fornecem X são descartadas durante a migração. Para usá-las no novo subsistema |
O suporte de interceptores de mensagem está significativamente diferente no JBoss EAP 7. Todos os interceptores configurados em versões prévias do subsistema são descartados durante a migração. Consulte Migrando interceptores de mensagem para mais informações. |
Não foi possível migrar a configuração de alta disponibilidade de X. Os seus atributos |
Isto significa que os atributos |
Não foi possível migar o atributo |
A mensagem contém explicação e indica como fazer para corrigir o problema. |
Não foi possível migar o atributo |
A mensagem contém explicação e indica como fazer para corrigir o problema. |
Não foi possível migar o atributo |
A mensagem contém explicação e indica como fazer para corrigir o problema. |
Não foi possível migar o atributo |
O recurso |
Não foi possível criar |
Os recursos remotos herdados de |
Não foi possível migrar o atributo X a partir do recurso Y. O atributo utiliza uma expressão que pode ser resolvida de modo diferente dependendo das propriedades do sistema. Após a migração, este atributo deve ser adicionado novamente com um valor real ao invés de uma expressão. |
Este aviso aparece quando a migração não consegue resolver o atributo X para um valor concreto durante o processo de migração. O valor é descartado e o atributo deve ser migrado manualmente. Isto acontece nos seguintes casos:
|
Não foi possível migrar atributo X a partir do recurso Y. Este atributo não é suportado pelo novo subsistema |
Alguns atributos não são mais suportados no novo subsistema
|
Não é possível migrar o atributo |
A mensagem contém a explicação. |
Substituir os atributos preteridos broadcast-group ou discovery-group
Se for recomendado que você substitua os atributos broadcast-group
ou discovery-group
com o atributo socket-binding
, você pode adicionar o novo atributo usando a CLI de gerenciamento.
Este exemplo presume que você está migrando um servidor autônomo que contém a seguinte configuração discovery-group
no subsistema messaging
.
<discovery-groups> <discovery-group name="my-discovery-group"> <group-address>224.0.1.105</group-address> <group-port>56789</group-port> </discovery-group> </discovery-groups>
Quando você executa a operação migrate
para o subsistema messaging
, você vê os seguintes avisos e resultado:
[standalone@localhost:9999 /] /subsystem=messaging:migrate { "outcome" => "success", "result" => {"migration-warnings" => [ "WFLYMSG0084: Can not migrate attribute group-address from resource [ (\"subsystem\" => \"messaging-activemq\"), (\"server\" => \"default\"), (\"discovery-group\" => \"my-discovery-group\") ]. Use instead the socket-binding attribute to configure this discovery-group.", "WFLYMSG0084: Can not migrate attribute group-port from resource [ (\"subsystem\" => \"messaging-activemq\"), (\"server\" => \"default\"), (\"discovery-group\" => \"my-discovery-group\") ]. Use instead the socket-binding attribute to configure this discovery-group." ]} }
A operação migrate
cria um discovery-group
chamado "my-discovery-group" no novo subsistema messaging-activemq
que agora está configurado como o que segue.
<discovery-group name="my-discovery-group"/>
Agora você deve usar o seguinte comando da CLI de gerenciamento para criar um elemento socket-binding
no arquivo de configuração do servidor chamado "my-discovery-group-socket-binding".
/socket-binding-group=standard-sockets/socket-binding=my-discovery-group-socket-binding:add(multicast-address=224.0.1.105, multicast-port=56789)
A seguir, adicione o socket-binding
recém criado ao discovery-group
chamado "my-discovery-group" no subsistema messaging-activemq
no arquivo de configuração do servidor usando o seguinte comando da CLI de gerenciamento.
/subsystem=messaging-activemq/server=default/discovery-group=my-discovery-group:write-attribute(name=socket-binding,value=my-discovery-group-socket-binding)
Estes comandos criam o seguinte XML no arquivo de configuração do servidor.
<subsystem xmlns="urn:jboss:domain:messaging-activemq:1.0"> <server name="default"> ... <discovery-group name="my-discovery-group" socket-binding="my-discovery-group-socket-binding"/> ... </server> </subsystem> ... <socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}"> ... <socket-binding name="my-discovery-group-socket-binding" multicast-address="224.0.1.105" multicast-port="56789"/> ... </socket-binding-group>
A.3. Avisos para operação de migração de subsistema web
The migrate
operation is not able to process all resources and attributes. The following table lists some of the warnings you might see when you run either the migrate
or describe-migration
operation for the web
subsystem.
Se você vir entradas "Não foi possível migrar" ou "Não pode migrar" na saída da operação migrate
, isto indica que a migração da configuração do servidor foi completada com sucesso porém não conseguiu migrar automaticamente todos os elementos e atributos. Você deve seguir as sugestões fornecidas pelo "avisos de migração" para modificar estas configurações.
Mensagens de aviso | O que significa / Como resolver |
---|---|
Operação de migração permitida somente em modo admin |
A operação $ EAP_HOME/bin/standalone.sh --admin-only |
Não foi possível migrar recurso X |
O comportamento exibido por este recurso na versão anterior de JBoss EAP não foi migrado. O administrador deve verificar se o novo subsistema |
Não foi possível migrar o atributo X a partir do recurso Y. |
O comportamento exibido por este atributo de recurso na versão anterior de JBoss EAP não foi migrado. O administrador deve verificar se o novo subsistema See Web Subsystem Migration Operation Attribute Warnings for the list of attributes that are not migrated. |
Não foi possível migrar conector SSL pois nenhuma configuração SSL está definida. |
A mensagem contém a explicação. |
Não foi possível migrar atributo |
A mensagem contém a explicação. |
Não foi possível migrar a expressão |
A mensagem contém a explicação. |
Não foi possível migrar a válvula X |
O comportamento exibido por este recurso na versão anterior de JBoss EAP não foi migrado. O administrador deve verificar se o novo subsistema This warning can occur for the following valves:
|
Não foi possível migrar atributo X a partir da válvula Y |
The behavior exhibited by this valve attribute in the previous release of JBoss EAP was not migrated. The administrator must verify if the new
|
Web Subsystem Migration Operation Attribute Warnings
The migrate
operation is not able to process all JBoss Web attributes. See the following reference tables for information about how to migrate the unprocessed attributes manually.
Web SSL Connector Attributes
The following attributes were used in JBoss EAP 6 to configure the SSL connector. OpenSSL native libraries are not supported in JBoss EAP 7 so there are no equivalent settings.
Attribute | Descrição | Undertow Equivalent |
---|---|---|
ca-revocation-url |
The file or URL that contains the revocation list. |
No equivalent in Undertow. |
certificate-file |
When using OpenSSL encryption, the path to the file containing the server certificate. |
No equivalent in Undertow. |
ssl-protocol |
The SSL protocol string. |
No equivalent in Undertow. |
verify-depth |
The maximum number of intermediate certificate issuers checked before deciding that the clients do not have a valid certificate. |
No equivalent in Undertow. |
Web Static Resource Attributes
The following static-resources
element attributes were used to describe how static resources were handled by the DefaultServlet
or by the WebdavServlet
. There are no equivalents for these attributes because WebDAV is not supported by Undertow. For more information, see https://issues.jboss.org/browse/JBEAP-1036.
Attribute | Descrição | Undertow Equivalent |
---|---|---|
disabled |
Enable the default Servlet mapping. |
No equivalent setting in Undertow. |
file-encoding |
File encoding to be used when reading static files. |
No equivalent setting in Undertow. |
max-depth |
Maximum recursion for |
This is a WebDAV setting and WebDAV is not supported by Undertow. |
read-only |
Allow write HTTP methods (PUT, DELETE). |
This is a WebDAV setting and WebDAV is not supported by Undertow. |
secret |
Secret for WebDAV locking operations. |
This is a WebDAV setting and WebDAV is not supported by Undertow. |
sendfile |
Enable sendfile if possible, for files bigger than the specified byte size. |
This is set to a sensible default value in Undertow and is not configurable. |
webdav |
Enable WebDAV functionality. |
WebDAV is not supported by Undertow. |
Web SSO Resource Attributes
SSO is handled differently than in the previous release and there are no equivalent attribute settings in JBoss EAP 7.
JBoss Web Attribute | Descrição | Undertow Equivalent |
---|---|---|
cache-container |
Name of the cache container to use for clustered SSO. |
This setting is no longer needed in Undertow. This works by default across a distributed clustered environment. |
cache-name |
Name of the cache to use for clustered SSO. |
This setting is no longer needed in Undertow. This works by default across a distributed clustered environment. |
reauthenticate |
Whether each request should cause a reauthentication. |
There is no equivalent setting in Undertow, which behaves similarly to the |
Web Access Log Attributes
JBoss Web Attribute | Descrição | Undertow Equivalent |
---|---|---|
resolve-hosts |
Whether to enable resolving hosts for access logging. |
Use the setting on the connector to accomplish the same behavior. |
Web Connector Attributes
JBoss Web Attribute | Descrição | Undertow Equivalent |
---|---|---|
executor |
The name of the executor that should be used to process the threads of this connector. |
You now reference a worker that is defined in the See Migrate the Threads Subsystem Configuration for more information. |
proxy-binding |
The socket binding to define the host and port that is used when sending a redirect. |
There is no direct equivalent. See https-listener Attributes in the JBoss EAP Configuration Guide for available configuration options. |
redirect-port |
The port for redirection to a secure connector. |
This attribute was deprecated in JBoss EAP 6 and replaced with See https-listener Attributes in the JBoss EAP Configuration Guide for more information. |
A.4. Migrate JBoss Web System Properties Reference
This reference describes how to map system properties previously used for JBoss Web configuration to the equivalent configuration for Undertow in JBoss EAP 7.
JBoss EAP 6 System Property |
Description |
Equivalent in JBoss EAP 7 | |
jvmRoute |
Provides a default value for the
It supports |
Management CLI command: /subsystem=undertow:write-attribute(name=instance-id,value=VALUE) | |
org.apache.tomcat.util.buf.StringCache.byte.enabled |
If |
No equivalent configuration | |
org.apache.tomcat.util.buf.StringCache.char.enabled |
If |
No equivalent configuration | |
org.apache.tomcat.util.buf.StringCache.cacheSize |
The size of the String cache. If the value is not specified, the default value of |
No equivalent configuration | |
org.apache.tomcat.util.buf.StringCache.maxStringSize |
The maximum length of String that will be cached. If the value is not specified, the default value of |
No equivalent configuration | |
org.apache.tomcat.util.http.FastHttpDateFormat.CACHE_SIZE |
The size of the cache to use parsed and formatted date value. If the value is not specified, the default value of |
No equivalent configuration | |
org.apache.catalina.core.StandardService.DELAY_CONNECTOR_STARTUP |
If |
No equivalent configuration | |
org.apache.catalina.connector.Request.SESSION_ID_CHECK |
If |
No equivalent configuration | |
org.apache.coyote.Constants.USE_CUSTOM_STATUS_MSG_IN_HEADER |
If |
Must be enabled programmatically by implementing a custom | |
org.apache.tomcat.util.http.Parameters.MAX_COUNT |
The maximum number of parameters that can be parsed in a post body. If exceeded, parsing fails using an |
Management CLI command: /subsystem=undertow/server=default-server/http-listener=default:write-attribute(name=max-parameters,value=VALUE) /subsystem=undertow/server=default-server/https-listener=default:write-attribute(name=max-parameters,value=VALUE) /subsystem=undertow/server=default-server/ajp-listener=default:write-attribute(name=max-parameters,value=VALUE) | |
org.apache.tomcat.util.http.MimeHeaders.MAX_COUNT |
The maximum number of headers that can be sent in the HTTP request. If exceeded, parsing will fail using an |
Management CLI command: /subsystem=undertow/server=default-server/http-listener=default:write-attribute(name=max-headers,value=VALUE) /subsystem=undertow/server=default-server/https-listener=default:write-attribute(name=max-headers,value=VALUE) /subsystem=undertow/server=default-server/ajp-listener=default:write-attribute(name=max-headers,value=VALUE) | |
org.apache.tomcat.util.net.MAX_THREADS |
The maximum number of threads a connector is going to use to process requests. The default value is |
Management CLI command: /subsystem=io/worker=default:write-attribute(name=task-max-threads, value=VALUE) | |
org.apache.coyote.http11.Http11Protocol.MAX_HEADER_SIZE |
The maximum size of the HTTP headers, in bytes. If exceeded, parsing will fail using an |
Management CLI command: /subsystem=undertow/server=default-server/http-listener=default:write-attribute(name=max-header-size,value=VALUE) /subsystem=undertow/server=default-server/https-listener=default:write-attribute(name=max-header-size,value=VALUE) /subsystem=undertow/server=default-server/ajp-listener=default:write-attribute(name=max-header-size,value=VALUE) | |
org.apache.coyote.http11.Http11Protocol.COMPRESSION |
Allows using simple compression with the HTTP connector. The default value is |
Configure a filter using the management CLI: # Create a filter /subsystem=undertow/configuration=filter/gzip=gzipfilter:add() /subsystem=undertow/server=default-server/host=default-host/filter-ref=gzipfilter:add() | |
org.apache.coyote.http11.Http11Protocol.COMPRESSION_RESTRICTED_UA |
User agents regexps that will not receive compressed content. The default value is empty. |
Configure a predicate in a filter using the management CLI: # Use a predicate in a filter /subsystem=undertow/configuration=filter/gzip=gzipfilter:add() /subsystem=undertow/server=default-server/host=default-host/filter-ref=gzipfilter:add(predicate="regex[pattern='AppleWebKit',value=%{i,User-Agent}]") | |
org.apache.coyote.http11.Http11Protocol.COMPRESSION_MIME_TYPES |
Content type prefixes of compressible content. The default value is |
Configure a predicate in a filter using the management CLI: # Use a predicate in a filter /subsystem=undertow/configuration=filter/gzip=gzipfilter:add() /subsystem=undertow/server=default-server/host=default-host/filter-ref=gzipfilter:add(predicate="regex[pattern='text/html',value=%{o,Content-Type}]") | |
org.apache.coyote.http11.Http11Protocol.COMPRESSION_MIN_SIZE |
Minimum size of content that will be compressed. The default value is |
Configure a predicate in a filter using the management CLI: # Use a predicate in a filter /subsystem=undertow/configuration=filter/gzip=gzipfilter:add() /subsystem=undertow/server=default-server/host=default-host/filter-ref=gzipfilter:add(predicate="max-content-size[value=MIN_SIZE]") | |
org.apache.coyote.http11.DEFAULT_CONNECTION_TIMEOUT |
Default socket timeout. The default value is |
Management CLI command: /subsystem=undertow/server=default-server/http-listener=default:write-attribute(name=no-request-timeout,value=VALUE) /subsystem=undertow/server=default-server/https-listener=default:write-attribute(name=no-request-timeout,value=VALUE) /subsystem=undertow/server=default-server/ajp-listener=default:write-attribute(name=no-request-timeout,value=VALUE) | |
org.jboss.as.web.deployment.DELETE_WORK_DIR_ONCONTEXTDESTROY |
Use this property to remove |
No equivalent configuration | |
org.apache.tomcat.util.buf.StringCache.trainThreshold |
Specifies the number of times |
No equivalent configuration |
JBoss EAP 6 System Property |
Description |
Equivalent in JBoss EAP 7 | |
org.apache.el.parser.COERCE_TO_ZERO |
If |
System property is still valid and processed by the EL |
JBoss EAP 6 System Property |
Description |
Equivalent in JBoss EAP 7 | |
org.apache.jasper.compiler.Generator.VAR_EXPRESSIONFACTORY |
The name of the variable to use for the expression language expression factory. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.compiler.Generator.VAR_INSTANCEMANAGER |
The name of the variable to use for the instance manager factory. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING |
If |
System property has not changed | |
org.apache.jasper.Constants.DEFAULT_TAG_BUFFER_SIZE |
Any tag buffer that expands beyond |
System property has not changed | |
org.apache.jasper.runtime.JspFactoryImpl.USE_POOL |
If |
System property has not changed | |
org.apache.jasper.runtime.JspFactoryImpl.POOL_SIZE |
The size of the ThreadLocal PageContext. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.JSP_SERVLET_BASE |
The base class of the Servlets generated from the JSPs. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.SERVICE_METHOD_NAME |
The name of the service method called by the base class. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.SERVLET_CLASSPATH |
The name of the ServletContext attribute that provides the class path for the JSP. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.JSP_FILE |
The name of the request attribute for |
System property has not changed | |
org.apache.jasper.Constants.PRECOMPILE |
The name of the query parameter that causes the JSP engine to just pregenerate the servlet but not invoke it. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.JSP_PACKAGE_NAME |
The default package name for compiled JSP pages. If value not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.TAG_FILE_PACKAGE_NAME |
The default package name for tag handlers generated from tag files. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.TEMP_VARIABLE_NAME_PREFIX |
Prefix to use for generated temporary variable names. If value is not specified, the default value of |
System property has not changed | |
org.apache.jasper.Constants.USE_INSTANCE_MANAGER_FOR_TAGS |
If |
System property has not changed | |
org.apache.jasper.Constants.INJECT_TAGS |
If |
System property has not changed |
JBoss EAP 6 System Property |
Description |
Equivalent in JBoss EAP 7 | |
org.apache.catalina.connector.RECYCLE_FACADES |
If this is |
No equivalent configuration | |
org.apache.catalina.connector.CoyoteAdapter.ALLOW_BACKSLASH |
If this is |
No equivalent configuration | |
org.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH |
If this is |
Management CLI command: /subsystem=undertow/server=default-server/http-listener=default:write-attribute(name=allow-encoded-slash,value=VALUE) /subsystem=undertow/server=default-server/https-listener=default:write-attribute(name=allow-encoded-slash,value=VALUE) /subsystem=undertow/server=default-server/ajp-listener=default:write-attribute(name=allow-encoded-slash,value=VALUE) | |
org.apache.catalina.STRICT_SERVLET_COMPLIANCE |
If value is not specified, |
Compliant by default | |
org.apache.catalina.core.StandardWrapperValve.SERVLET_STATS |
If |
No equivalent configuration | |
org.apache.catalina.session.StandardSession.ACTIVITY_CHECK |
If this is |
No equivalent configuration |
A.5. Compatibilidade e interoperabilidade entre os lançamentos
Esta seção descreve a compatibilidade e interoperabilidade de cliente e servidor EJB e componentes de mensagem entre os lançamentos JBoss EAP 5, JBoss EAP 6, e JBoss EAP 7.
EJB remoto via IIOP
Você não deve encontrar problemas em quaisquer das seguintes configurações.
- Conexão a partir de um cliente JBoss EAP 5 para um servidor JBoss EAP 7
- Conexão a partir de um cliente JBoss EAP 6 para um servidor JBoss EAP 7
- Conexão a partir de um cliente EAP 7 para um servidor JBoss EAP 6
- Conexão a partir de um cliente JBoss EAP 7 para um servidor JBoss EAP 5
EJB remoto usando JNDI
Você não deve encontrar problemas em quaisquer das seguintes configurações.
- Conexão a partir de um cliente JBoss EAP 6 para um servidor JBoss EAP 7
- Conexão a partir de um cliente EAP 7 para um servidor JBoss EAP 6
JBoss EAP 6 fornecia suporte para a especificação EJB 3.1 e introduziu o uso de espaço de nomes JNDI globais padronizados, que ainda são usados em JBoss EAP 7. Devido à alteração dos espaço de nomes JNDI, as seguintes configurações não são compatíveis:
- Conexão a partir de um cliente JBoss EAP 5 para um servidor JBoss EAP 7 ou JBoss EAP 6
- Conexão a partir de um cliente JBoss EAP 7 ou JBoss EAP 6 para um servidor JBoss EAP 5
Para mais informações sobre alterações de espaço de nome JNDI padronizados, consulte Alterações JNDI no Guia de Migração de JBoss EAP 6
EJB remoto utilizando @WebService
Você não deve encontrar problemas em quaisquer das seguintes configurações.
- Conexão a partir de um cliente JBoss EAP 5 para um servidor JBoss EAP 7
- Conexão a partir de um cliente JBoss EAP 6 para um servidor JBoss EAP 7
- Conexão a partir de um cliente EAP 7 para um servidor JBoss EAP 6
- Conexão a partir de um cliente JBoss EAP 7 para um servidor JBoss EAP 5
Cliente autônomo de mensagem
Você não deve encontrar problemas em quaisquer das seguintes configurações.
- Conexão a partir de um cliente JBoss EAP 6 para um servidor JBoss EAP 7
- Conexão a partir de um cliente EAP 7 para um servidor JBoss EAP 6
Nas seguintes configurações, se o cliente estiver usando a API HornetQ de mensagem específica ao invés da API JMS genérica, a conexão é possível. Contudo, as pesquisas JNDI devem ser endereçadas utilizando a extensão de nome JNDI herdada de JBoss EAP que é distribuída com JBoss EAP 7.
- Conexão a partir de um cliente JBoss EAP 5 para um servidor JBoss EAP 7
O sistema de mensagens integrado ao JBoss EAP 7 não pode conectar-se ao HornetQ 2.2.x que é distribuído com JBoss EAP 5 devido a questões de incompatibilidade de protocolo. Por esta razão, as seguintes configurações não são compatíveis.
- Conexão a partir de um cliente JBoss EAP 7 para um servidor JBoss EAP 5
Messaging MDBs
Você não deve encontrar problemas em quaisquer das seguintes configurações.
- Conexão a partir de um cliente JBoss EAP 6 para um servidor JBoss EAP 7
- Conexão a partir de um cliente EAP 7 para um servidor JBoss EAP 6
Nas seguintes configurações, se o cliente estiver usando a API HornetQ de mensagem específica ao invés da API JMS genérica, a conexão é possível. Contudo, as pesquisas JNDI devem ser endereçadas utilizando a extensão de nome JNDI herdada de JBoss EAP que é distribuída com JBoss EAP 7.
- Conexão a partir de um cliente JBoss EAP 5 para um servidor JBoss EAP 7
O sistema de mensagens integrado ao JBoss EAP 7 não pode conectar-se ao HornetQ 2.2.x que é distribuído com JBoss EAP 5 devido a questões de incompatibilidade de protocolo. Por esta razão, as seguintes configurações não são compatíveis.
- Conexão a partir de um cliente JBoss EAP 7 para um servidor JBoss EAP 5
Pontes JMS
Você não deve encontrar problemas em quaisquer das seguintes configurações.
- Conexão a partir de um cliente JBoss EAP 5 para um servidor JBoss EAP 7
- Conexão a partir de um cliente JBoss EAP 6 para um servidor JBoss EAP 7
- Conexão a partir de um cliente EAP 7 para um servidor JBoss EAP 6
- Conexão a partir de um cliente JBoss EAP 7 para um servidor JBoss EAP 5
Revised on 2018-01-05 08:51:00 EST