websphere-liberty

Archive Installation for “Web Server Plug-ins for IBM WebSphere Application Server V9.0” instead of IM

馋奶兔 提交于 2021-02-10 14:22:59
问题 I want to install the "Web Server Plug-ins for IBM WebSphere Application Server V9.0" without the IBM InstallationManager just with an archive file. The archive installation was already possible for the "IBM HTTP Server V9.0" from e.g.: https://ak-delivery04-mul.dhe.ibm.com/sar/CMA/WSA/086do/0/9.0.0-WS-IHS-ARCHIVE-linux-x86_64-FP011.zip and just run the postinstall.sh. But for the aforementioned Web Server plugin, I cannot find an archive to download. Does anyone know if such an Installation

Archive Installation for “Web Server Plug-ins for IBM WebSphere Application Server V9.0” instead of IM

怎甘沉沦 提交于 2021-02-10 14:22:14
问题 I want to install the "Web Server Plug-ins for IBM WebSphere Application Server V9.0" without the IBM InstallationManager just with an archive file. The archive installation was already possible for the "IBM HTTP Server V9.0" from e.g.: https://ak-delivery04-mul.dhe.ibm.com/sar/CMA/WSA/086do/0/9.0.0-WS-IHS-ARCHIVE-linux-x86_64-FP011.zip and just run the postinstall.sh. But for the aforementioned Web Server plugin, I cannot find an archive to download. Does anyone know if such an Installation

Feature conflict between jsp-2.2 and adminCenter-1.0

旧巷老猫 提交于 2021-02-10 05:39:13
问题 I have downloaded the latest stable WLP runtime with JAVA EE7 for solaris environment. Version : 16.0.0.3 The zip file is extracted and profile is created. AdminCenter installed by using below command: .\installUtility install adminCenter-1.0 Server.xml file : <?xml version="1.0" encoding="UTF-8"?> <server description="new server"> <!-- Enable features --> <featureManager> <feature>jsp-2.2</feature> <feature>adminCenter-1.0</feature> </featureManager> <quickStartSecurity userName="admin"

Liberty : Intermediate context does not exist : jms/xyz

你离开我真会死。 提交于 2021-01-29 06:51:59
问题 I am working on migrating ear application to liberty. It is a web appliation that uses JMS with MQ messaging provider. For example in my stage.config.xml, we have following properties: MQQueue(0).CCSID MQQueue(0).baseQueueName MQQueue(0).jndiName MQQueue(0).name MQQueueConnectionFactory(0).CCSID MQQueueConnectionFactory(0).channel MQQueueConnectionFactory(0).connectionPool.ConnectionPool(0).maxConnections MQQueueConnectionFactory(0).description MQQueueConnectionFactory(0).host

Error executing CICS request while deploying app into IBM liberty Profile

社会主义新天地 提交于 2021-01-28 08:27:10
问题 I´ve got an app that works perfectly if I deploy it (in my local) into WAS. However, I´m getting the following exception connecting to CICS services if if deploy it into Liberty Profile (WebSphere Application Server 8.5.5.8/wlp-1.0.11.cl50820151201-1942) in IBM J9 VM, version pwa6470_27sr2fp10-20141218_02 (SR2 FP10) : com.ibm.connector2.cics.CICSUserInputException@a71e6144 [invalidProperties=<null>,errorCode=<null>,linkedException=<null>, detailMessage=CTG9628E InteractionSpec passed to

Are activation specs required for message-driven beans?

流过昼夜 提交于 2021-01-27 18:56:24
问题 I have a non-JMS MDB that I'm installing into a Websphere Liberty server. package mdb.test; import javax.ejb.MessageDriven; @MessageDriven() public class TheMDB implements MyOwnListener { public TheMDB() {} @Override public void onMyOwnMessage(MyOwnMessage message) {} } Without further configuration, the server gives the following message: [WARNING ] CNTR4015W : The message endpoint for the TheMDB message-driven bean cannot be activated because the mdb.test/TheMDB activation specification is

Connect to Websphere Liberty jmsServer from remote application server

坚强是说给别人听的谎言 提交于 2021-01-27 16:51:15
问题 Is it possible to connect to a queue deployed in Websphere Liberty from a remote application server? I use the free version of the product (Liberty 8.5.5.7). I configured connection factory in server.xml: <messagingEngine> <queue id="Queue1" receivedAllowed="false" maxMessageDepth="1000"/> </messagingEngine> <jmsQueueConnectionFactory jndiName="qcf/ConnectionFactory" connectionManagerRef="ConMgr2"> <properties.wasJms nonPersistentMapping="ExpressNonPersistent" persistentMapping=

Connect to Websphere Liberty jmsServer from remote application server

限于喜欢 提交于 2021-01-27 16:47:05
问题 Is it possible to connect to a queue deployed in Websphere Liberty from a remote application server? I use the free version of the product (Liberty 8.5.5.7). I configured connection factory in server.xml: <messagingEngine> <queue id="Queue1" receivedAllowed="false" maxMessageDepth="1000"/> </messagingEngine> <jmsQueueConnectionFactory jndiName="qcf/ConnectionFactory" connectionManagerRef="ConMgr2"> <properties.wasJms nonPersistentMapping="ExpressNonPersistent" persistentMapping=

ServletContextListener does not execute on deployment

你说的曾经没有我的故事 提交于 2021-01-27 13:48:55
问题 I am trying to initialize a streaming object when my war file is deployed. I wrote an Initializer class that implements ServletContextListener and added a listener-class tag to my web.xml. The issue is that the ContextInitialized Event occurs when I make the first request to my application and NOT when the app is deployed. Is there a better way to initialize my application? EDIT: public class Initializer implements ServletContextListener{ @Override public void contextDestroyed

Websphere Liberty : JMS Sessions don't work

Deadly 提交于 2020-05-17 06:12:05
问题 I am migrating EJB application from websphere 9.0 to Liberty. I am using the application server migration utility to help me with the migration. One of the listed issue is: Ported locally transacted JMS sessions do not work in Liberty I checked the details mentioned in the help, but I could not understand much from the details. 回答1: JMS sessions in general will work in Liberty. However, transacted JMS sessions won't work. Therefore, applications using transacted JMS sessions which are ported