Author |
Message |
Topic: MQJMS1006: invalid value for JMS_IBM_Character_Set: ISO8859 |
mq_novice
Replies: 1 Views: 4229
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 16, 2006 6:50 am Subject: this may help... |
http://www-1.ibm.com/support/docview.wss?uid=swg1IC39432
hope this can help |
Topic: WebSphere MQ JMS Provider error on start up |
mq_novice
Replies: 3 Views: 3876
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 09, 2006 9:10 am Subject: Thanks |
Thanks!
I got it.
it turns out to be it's MQ bug in WAS...
here is the resolution...
http://www-1.ibm.com/support/docview.wss?uid=swg1PK17866
http://www-1.ibm.com/support/docview.wss?uid= ... |
Topic: WebSphere MQ JMS Provider error on start up |
mq_novice
Replies: 3 Views: 3876
|
Forum: IBM MQ Java / JMS Posted: Mon Jul 17, 2006 11:39 am Subject: WebSphere MQ JMS Provider error on start up |
Hi,
WebSphere MQ Queue Connection Factories is defined in WebSphere App Server v5 (on AIX).
The configuration has everything that needed except for Queue Manager name. Queue Manager name is aut ... |
Topic: unwanted text in message... |
mq_novice
Replies: 6 Views: 5346
|
Forum: IBM MQ Java / JMS Posted: Wed Jun 28, 2006 8:13 am Subject: no stripping... |
it seems to be that stripping header is impossible without using MQ specific code...
I'm going to try the createQueue and will let you know if any success... |
Topic: unwanted text in message... |
mq_novice
Replies: 6 Views: 5346
|
Forum: IBM MQ Java / JMS Posted: Wed Jun 28, 2006 6:20 am Subject: Destination.setTargetClient ? |
Thanks for the reply guys.
I don't really see the method Destination.setTargetClient...
Is that a MQ specific? I'm trying to do this without any MQ specific code.. just with all JMS codes...
t ... |
Topic: unwanted text in message... |
mq_novice
Replies: 6 Views: 5346
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 27, 2006 12:07 pm Subject: unwanted text in message... |
now that I can send message to the queue...
QueueSender sender = session.createSender(queue);
sender.send(session.createTextMessage("1234"));
and when I ch ... |
Topic: MQ in WebSphere, need advise |
mq_novice
Replies: 12 Views: 7761
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 27, 2006 12:01 pm Subject: finally got it.. |
thanks all for your help and replies...
finally got it..
my first mq app is working after I get rid of the below line...
Context environment = (Context)initContext.lookup("java:comp/env"); ... |
Topic: MQ in WebSphere, need advise |
mq_novice
Replies: 12 Views: 7761
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 27, 2006 11:37 am Subject: for now... |
yes.. I am sure that I will...
but I'm really frustrated right now...
InitialContext initContext = new InitialContext();
Context environment = (Context)initContext.lookup( ... |
Topic: MQ in WebSphere, need advise |
mq_novice
Replies: 12 Views: 7761
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 27, 2006 8:40 am Subject: trying to set up examples |
thanks for your reply.
I'm still looking at the examples from IBM.. since I am using WebSphere Studio V5 and IBM Websphere MQ...
However, the documentation keeps mentioning using JMSAdmin to set ... |
Topic: MQ in WebSphere, need advise |
mq_novice
Replies: 12 Views: 7761
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 27, 2006 7:45 am Subject: yes. |
Thans for the reply Vitor. yes.. I have the code that's not using Connection pooling or any kind.. just MQJAVA connect to remote MQ server, drop the message into the queue.
It's fairly simply oper ... |
Topic: MQ in WebSphere, need advise |
mq_novice
Replies: 12 Views: 7761
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 27, 2006 6:19 am Subject: that's why I'm confused... |
I'm looking at many examples but none of them illustrate how I can connect ot the QUEUE in IBM MQ Server. Many tutorials talk about P2P or Pub/Sub, sending messages and receiving messages but I just ... |
Topic: MQ in WebSphere, need advise |
mq_novice
Replies: 12 Views: 7761
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 27, 2006 5:28 am Subject: thanks |
Thanks for all you replies. I also found out that I should look into JMS.. I'm using WebSphere Studio v5 and need to connect to IBM MQ...
basically, (as you already noticed from above)
Connect to ... |
Topic: MQ in WebSphere, need advise |
mq_novice
Replies: 12 Views: 7761
|
Forum: IBM MQ Java / JMS Posted: Mon Jun 26, 2006 11:59 am Subject: MQ in WebSphere, need advise |
Hi. I'm extremely new to MQ and all and not entirely sure where to look at.
I have a Stateless Session EJB in WebSphere that does nothing but putting a message to a queue.
So every single time, ... |