
Jboss
文章平均质量分 78
川川Jason
一个爱跑步的程序员
展开
-
JBoss EAP 6常见问题
1. Jboss EAP 6 配置 URI_ENCODINGIn order to set UTF-8 for URI encoding you have to edit the JBOSS_HOME/standalone/configuration/standalone.xml file and add a system property named org.apache.catalin...原创 2017-06-07 22:47:10 · 1521 阅读 · 0 评论 -
Jboss EAP 6 JAX-WS和JMS超时设置
1. WS Client Timeout在Jboss EAP 6中调用web service,发生以下错误:Invoke has thrown exception, unwinding now: org.apache.cxf.interceptor.Fault: Could not send Messagejava.net.SocketTimeoutException: Read ...原创 2017-05-10 11:02:40 · 498 阅读 · 0 评论 -
No EJB receiver available for handling ...
No EJB receiver available for handling ...在Jboss EAP 6中,调用远程EJB时出现这个错误, 原因可能是JNDI格式写错了。EJB JNDI的格式如下:ejb:<appName>/<moduleName>/<distinctName>/<beanName>!<viewClass...原创 2016-07-02 17:25:22 · 834 阅读 · 0 评论 -
Jboss AS 5/6升级时遇到的问题
1. Jboss AS 6使用jdk7时的异常处理异常信息为:org.jboss.wsf.stack.cxf.deployment.jms.JMSDescriptorProcessorImpl cannot be cast to org.jboss.wsf.spi.metadata.webservices.WebservicesDescriptorProcessor解决方...原创 2016-07-02 16:36:33 · 597 阅读 · 0 评论 -
Connecting VisualVM with a remote JBoss AS 7 / EAP6 JVM process
http://blog.akquinet.de/2012/11/01/connecting-visualvm-with-a-remote-jboss-as-7-eap6-jvm-process/VisualVM is a useful tool for monitoring and simple profiling of JVM processes. It integrates vario...原创 2014-10-10 21:04:05 · 156 阅读 · 0 评论 -
JBoss EAP6/AS7 Application Logging
The Blog http://blog.jyore.com/?p=234IntroductionWhen it comes down to it, logging is one of the most important parts of an application. Logging, when done correctly, allows us to monitor code ...原创 2014-04-25 12:41:23 · 245 阅读 · 0 评论 -
在Jboss EAP 6/Wildfly中使用Hibernate 3和JSF 1.2
在EAP 6中使用JSF1.2增加jboss-deployment-structure.xml文件,其内容如下:<jboss-deployment-structure> <deployment> <exclusions> <module name="javax.faces.api...原创 2016-04-28 15:39:13 · 477 阅读 · 0 评论 -
Jboss EAP 6启用CXF日志
1. 在standalone.xml配置文件中添加system-properties: <system-properties> <property name="org.apache.cxf.logging.enabled" value="true"/> </system-properties>2. 在logging s...原创 2015-05-04 16:01:27 · 187 阅读 · 0 评论 -
JBoss EAP 6与Apache通信的mod_jk配置
安装Apache 以下是httpd 2.2的安装步骤(如使用httpd 2.4,请参考Linux下安装Apache HTTP Server 2.4):1. 安装 下载解压后进入httpd的根目录,依次执行如下命令: # ./configure --prefix=PREFIX --enable-so --enable-mods-shared=most --en...原创 2013-12-04 17:55:01 · 310 阅读 · 0 评论 -
Jboss EAP 6 EJB调用常见问题
1. 调用EJB的三种方法调用EAP 6 EJB的第一种方法,使用JBoss API,如下:Properties p = new Properties();p.put("remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED", "false");p.put("remote.connection...原创 2017-03-13 17:59:10 · 455 阅读 · 0 评论