websphere-8

java.io.NotSerializableException: org.omnifaces.taghandler.Converter

耗尽温柔 提交于 2019-12-02 05:24:46
问题 I would like to use OmniFaces ListConverter as my converter on PrimeFaces autocomplete . Unfortunately the following exception pops out when I tried to. As far as I'm concerned, JSF converters are not required to implement Serializable interface. I read the java ee 6 tutorial and was unable to find such a statement. References links : http://docs.oracle.com/javaee/6/tutorial/doc/bnaus.html http://docs.oracle.com/javaee/6/api/javax/faces/convert/Converter.html I had the feeling that MyFaces is

ActiveMQ 5.11 with WebSphere Application Server 8.5

馋奶兔 提交于 2019-12-02 04:44:28
问题 Does anybody know which jars from ActiveMQ 5.11 I need to use with IBM Websphere Application Server 8.5 in order to create a new ActiveMQ JMS Provider? I found discussions related to older ActiveMQ versions that don't seem applicable anymore because the way ActiveMQ is packaged has changed: https://www.ibm.com/developerworks/community/blogs/timdp/entry/using_activemq_as_a_jms_provider_in_websphere_application_server_7149?lang=en ActiveMQ 5.11 doesn't seem to have activemq-core anymore,

ActiveMQ 5.11 with WebSphere Application Server 8.5

≡放荡痞女 提交于 2019-12-02 02:28:08
Does anybody know which jars from ActiveMQ 5.11 I need to use with IBM Websphere Application Server 8.5 in order to create a new ActiveMQ JMS Provider? I found discussions related to older ActiveMQ versions that don't seem applicable anymore because the way ActiveMQ is packaged has changed: https://www.ibm.com/developerworks/community/blogs/timdp/entry/using_activemq_as_a_jms_provider_in_websphere_application_server_7149?lang=en ActiveMQ 5.11 doesn't seem to have activemq-core anymore, activeio-core is under "optional", and ActiveMQ seems to have switched from commons-logging to slf4j, which

java.io.NotSerializableException: org.omnifaces.taghandler.Converter

寵の児 提交于 2019-12-02 02:14:45
I would like to use OmniFaces ListConverter as my converter on PrimeFaces autocomplete . Unfortunately the following exception pops out when I tried to. As far as I'm concerned, JSF converters are not required to implement Serializable interface. I read the java ee 6 tutorial and was unable to find such a statement. References links : http://docs.oracle.com/javaee/6/tutorial/doc/bnaus.html http://docs.oracle.com/javaee/6/api/javax/faces/convert/Converter.html I had the feeling that MyFaces is trying to unserialize any object used on my page. How can I handle that situation? Environment

JSPG0122E: Unable to parse EL function in Websphere 8

独自空忆成欢 提交于 2019-12-01 23:32:33
问题 I am moving a web application from Websphere 6.1 to Websphere 8, and I am encountering the following error in one of my JSP pages: com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /jsp/myJsp.jsp: /jsp/myJsp.jsp(863,4) --> JSPG0122E: Unable to parse EL function ${not empty rowVo.operation.package}. at com.ibm.ws.jsp.translator.visitor.validator.ELValidator.validateElFunction(ELValidator.java:500) at com.ibm.ws.jsp.translator.visitor.validator

WebSphere liberty class loading PARENT LAST as default

廉价感情. 提交于 2019-12-01 21:42:28
问题 I have been investigating using WebSphere's Liberty profile as a light weight alternative to having a fully fledged WebSphere instance deployed on my local machine (late to the party, I know). 1 thing that I can not figure out: How do I set Parent Last class loading to be default? I want to deploy any application and have it automatically be parent last. I am aware that I can deploy an EAR with the deployment.xml to trigger parent last class, or run a Jython script. However, I would rather

JSPG0122E: Unable to parse EL function in Websphere 8

烈酒焚心 提交于 2019-12-01 21:32:49
I am moving a web application from Websphere 6.1 to Websphere 8, and I am encountering the following error in one of my JSP pages: com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /jsp/myJsp.jsp: /jsp/myJsp.jsp(863,4) --> JSPG0122E: Unable to parse EL function ${not empty rowVo.operation.package}. at com.ibm.ws.jsp.translator.visitor.validator.ELValidator.validateElFunction(ELValidator.java:500) at com.ibm.ws.jsp.translator.visitor.validator.ELValidator.validateELExpression(ELValidator.java:122) at com.ibm.ws.jsp.translator.visitor.validator

WebSphere liberty class loading PARENT LAST as default

风格不统一 提交于 2019-12-01 20:04:55
I have been investigating using WebSphere's Liberty profile as a light weight alternative to having a fully fledged WebSphere instance deployed on my local machine (late to the party, I know). 1 thing that I can not figure out: How do I set Parent Last class loading to be default? I want to deploy any application and have it automatically be parent last. I am aware that I can deploy an EAR with the deployment.xml to trigger parent last class, or run a Jython script. However, I would rather have it be the default behavior. Any ideas anyone? WebSphere Version: Liberty 8.5.5.8 If you're trying to

Use JASPIC auth module on WebSphere 8.5

浪子不回头ぞ 提交于 2019-12-01 04:24:10
问题 I have a JASPIC auth module that works really well on GlassFish, WildFly and WebLogic. Now we have a new customer who uses WebSphere 8.5, and I can't get the auth module to run properly there. The problem is that WebSphere doesn't accept the username that the auth module puts in the CallerPrincipalCallback. Our other supported servers just accept this, but WebSphere for some reason thinks it needs to perform some extra checks. After investigating the issue I stumbled upon this one: https:/

best place to put properties file in IBM websphere 8.5?

微笑、不失礼 提交于 2019-11-30 14:05:42
In our existing application properties file is embedded in a jar file ,we decided to move properties file outside of ear(application) , what is the best place to put properties file in IBM websphere 8.5 ? so that i can retrieve path with WAS Environment variables and file should be available to all nodes in a cluster .. You can use the classloader directories for that. I would use the directory classes (you might need to create) under $WEBSPHERE_HOME/AppServer/classes and drop your properties there. You should than be able to find them from any of your applications / servers. Check the Class