ibm-mq

Is there a “feature” in Open Liberty to connect to IBM MQ, equivalent to wmqJmsClient-2.0 in Liberty Profile?

巧了我就是萌 提交于 2019-12-07 18:19:52
问题 IBM WebSphere Liberty Profile provides the "wmqJmsClient-2.0" feature to interact with IBM MQ Is there an equivalent for Open Liberty? [UPDATED] If not (as it seems), how to connect Open Liberty to IBM MQ? Should I develop an Open Liberty "feature" equivalent of the one available in WLP, based on the IBM MQ official RAR file (currently "9.1.0.0-IBM-MQ-Java-InstallRA.jar" ) ? Or is there a "generic" way to configure such a connection in Open Liberty? (I guess the question arises with other

IBM MQ - FFDC - CSIException: JMSCS0002 when I try to run from console

≡放荡痞女 提交于 2019-12-07 18:11:27
I writed some JAR which has a wrap communication with IBM MQ. When I try use that JAR in other app it works only when I run it in IDE or in console as maven: "C:\Program Files\Apache\maven\bin\mvn.bat" -Dexec.args="-classpath %classpath xx.xxx.xxx.Application" -Dexec.executable="C:\Program Files\Java\jdk1.7.0_71\bin\java.exe" -Dmaven.ext.class.path=C:\Users\myUser\AppData\Roaming\NetBeans\8.0.1\maven-nblib\netbeans-eventspy.jar;C:\Users\myUser\AppData\Roaming\NetBeans\8.0.1\maven-nblib\netbeans-cos.jar -Dfile.encoding=UTF-8 org.codehaus.mojo:exec-maven-plugin:1.2.1:exec When I try to run it in

Procedure to migrate from IBM MQ to ActiveMQ [closed]

眉间皱痕 提交于 2019-12-07 17:50:51
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . I just need to know some basic information or the procedure that is followed when migrating from IBM MQ server to ActiveMQ. We are planning to migrate our messaging systems from IBM MQ to Active MQ. To be specific the migration is from MQ V7.0 to ActiveMQ V5.7.0. What would be the

Java Spring JMS: JmsTemplate to IBM MQ

回眸只為那壹抹淺笑 提交于 2019-12-07 17:42:26
问题 Update It was my mistake I forget the ssl debugging running, it is super fast now and working like magic I have a Spring Boot application that connects to IBM MQ using spring JMS. I realized that the jmsTemplate is super slow compared to not using Spring at all. I am sure I have something not configured correctly. Hope Someone can help. I create a connection factory using IBM MQ 8 jar files. @Bean public ConnectionFactory connectionFactory() { properties.getCipherSpec()); MQConnectionFactory

is IBM MQ Message Segmentation possible using JMS?

耗尽温柔 提交于 2019-12-07 17:34:18
问题 Is it possible to implement message segmentation using JMS as it is in using Native IBM API as shown here. One posible solution I have read is message grouping for JMS. is anyone using this an alternative solution to Segmentation, using JMS? 回答1: Yes, you can implement message segmentation using JMS as described here. 回答2: No, that's not segmentation. That's grouping. It is similar, but it's also not using JMS. As far as I can tell, segmentation is not supported in IBM's implementation of JMS

WMQ V8 Connection Factory setup on Tomcat using JNDI

夙愿已清 提交于 2019-12-07 17:22:01
问题 Currently on our Tomcat configuration with JNDI is based on this recommendation which currently is working. How do I connect to a Websphere MQ (MQ Series) server using JMS and JNDI? Since we are upgrading to v8 I would like to take advantage of the JMS 2.0 features. This would require updating the jar files to the JMS 2.0 versions. So I have removed the following jars from the tomcat lib folder. com.ibm.mq.jar com.ibm.mqjms.jar connector.jar dhbcore.jar geronimo-j2ee-management_1.0_spec-1.0

Not seeing message properties that I set explicitly (Spring/JMS/MQ)

房东的猫 提交于 2019-12-07 14:29:51
问题 Two separate processes are communicating via JMS over MQ. The writer sets a string property: new MessageAction() { public void actOn(Message message) throws JMSException { logger.debug("Setting message property (GmmThreadId, CASHFLOW-1234)"); message.setStringProperty("GmmThreadId", "CASHFLOW-1234"); } }); This MessageAction is executed, as shown in the logs: Setting message property (GmmThreadId, CASHFLOW-1234) The reader uses a message selector to obtain this message. (using Spring's

Web Sphere 7.5 Add user

℡╲_俬逩灬. 提交于 2019-12-07 09:28:14
问题 How can i add new user to my queue in WebSphere 7.5 MQ Explorer? I have a 90 day trial version and I don't have a administrator console :/ I don't know why... I would like to connect to a queue that is placed on my server, but I can't connect with Administrator account. 回答1: First off, go get the non-expiring version for which the product name is MQ Advanced for Developers. As of this writing, it is available in v7.5 and v8.0 and it is free. If you want support, IBM will let you throw money

Multi Instance MQ set up

心不动则不痛 提交于 2019-12-07 07:38:24
I am trying to set up Multi Instance MQ. I have configured NFS and able to see the active and stand by instances using dspmq -x . However my doubt is after this setup how to proceed further. How can I configure the channel(s). I got CONNAME property should be use for this. e.g. CONNAME(<ip><port>,<ip><port>) . I am not aware how to do it exactly. How many listeners I need to start. For normal mode of MQ, I follow the below steps: 1. crtmqm QM 2. strmqm QM 3. runmqsc QM 4. runmqlsr -m QM -t tcp -p 1125 5. runmqsc QM 6. define channel(SYSTEM.ADMIN.SVRCONN) chltype(SVRCONN) mcauser('mqm') For

Spring Batch - Not all records are being processed from MQ retrieval

我们两清 提交于 2019-12-07 05:37:03
问题 I am fairly new to Spring and Spring Batch, so feel free to ask any clarifying questions if you have any. I am seeing an issue with Spring Batch that I cannot recreate in our test or local environments. We have a daily job that connects to Websphere MQ via JMS and retrieves a set of records. This job uses the out-of-the-box JMS ItemReader. We implement our own ItemProcessor, but it doesn't do anything special other than logging. There are no filters or processing that should affect incoming