ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » Search

 Search found 46 matches
Author Message
  Topic: How to support both 273 and 546 encoding in .Net API app?
lifeng

Replies: 4
Views: 22486

PostForum: IBM MQ API Support   Posted: Sat Apr 12, 2008 6:35 pm   Subject: How to support both 273 and 546 encoding in .Net API app?
The content is always text. But I don't think I can change the sender's function. Like I mentioned before, I am converting an existing UNIX based system and that old program can handle both of these t ...
  Topic: How to support both 273 and 546 encoding in .Net API app?
lifeng

Replies: 4
Views: 22486

PostForum: IBM MQ API Support   Posted: Fri Apr 11, 2008 6:49 am   Subject: How to support both 273 and 546 encoding in .Net API app?
Hi,

I am working on a project that converts from UNIX to Windows/.Net API and I have successfully made the app working under 273 encoding. One problem we just discovered during our testing however, ...
  Topic: Coded Charactor set ID: 437 vs. 1200
lifeng

Replies: 10
Views: 10638

PostForum: IBM MQ API Support   Posted: Wed Mar 26, 2008 11:16 am   Subject: Coded Charactor set ID: 437 vs. 1200
Thanks Jefflowrey. That was it! I changed to

mqMsg->set_CharacterSet(437);
mqMsg->WriteString(msg);

That works for me.

Thank you again.

Lifeng
  Topic: Coded Charactor set ID: 437 vs. 1200
lifeng

Replies: 10
Views: 10638

PostForum: IBM MQ API Support   Posted: Wed Mar 26, 2008 9:27 am   Subject: Coded Charactor set ID: 437 vs. 1200
I changed from WriteString to WriteUTL and that gave me the right format now. But now I have a issue. The message written to the queue somehow has a one byte of hex"02" in the beginning. I w ...
  Topic: Coded Charactor set ID: 437 vs. 1200
lifeng

Replies: 10
Views: 10638

PostForum: IBM MQ API Support   Posted: Wed Mar 26, 2008 7:45 am   Subject: Coded Charactor set ID: 437 vs. 1200
Ok, here is the code:

static int MQPUT(String * msg, short indx, MQCHAR8 fmt, MQLONG options)
{
try
{
MQMessage* mqMsg = new MQMessage();
mqMsg->WriteString(msg);
mqMsg->Format = fmt ...
  Topic: Coded Charactor set ID: 437 vs. 1200
lifeng

Replies: 10
Views: 10638

PostForum: IBM MQ API Support   Posted: Wed Mar 26, 2008 7:36 am   Subject: Coded Charactor set ID: 437 vs. 1200
I am using Put, as below (in C++.Net):

mqQueue->Put(mqMsg, mqPutMsgOpts);

and here is how I set the options, mqPutMsgOpts:

pmo.Options |= MQPMO_NEW_MSG_ID;
...
  Topic: Coded Charactor set ID: 437 vs. 1200
lifeng

Replies: 10
Views: 10638

PostForum: IBM MQ API Support   Posted: Wed Mar 26, 2008 7:14 am   Subject: Coded Charactor set ID: 437 vs. 1200
Hi there,

My .Net program accesses MQ through MQ .Net API. For the most part it works fine, except one issue. The .Net program reads from input queue and writes to the output queue. Input messages ...
  Topic: How to read system events?
lifeng

Replies: 6
Views: 5129

PostForum: IBM MQ Java / JMS   Posted: Thu Mar 13, 2008 5:55 am   Subject: How to read system events?
fjb_saper,

First of all, I just realized that I started this thread on a wrong sub-group. I shouldn't be posting in MQ Java, since I am using .Net. Sorry about this.

To answer your question abou ...
  Topic: How to read system events?
lifeng

Replies: 6
Views: 5129

PostForum: IBM MQ Java / JMS   Posted: Wed Mar 12, 2008 6:34 pm   Subject: How to read system events?
Hi fjb_saper,

The reason why I want to know the connecting userid is because I DO NOT know the connecting userid. If I run the client program from machine that I logged on to, then I know the useri ...
  Topic: How to read system events?
lifeng

Replies: 6
Views: 5129

PostForum: IBM MQ Java / JMS   Posted: Wed Mar 12, 2008 1:11 pm   Subject: How to read system events?
As an example of what I asked about in the above post, I just got an MQRC_NOT_AUTHORIZED back from MQ and I looked at the message generated in SYSTEM.ADMIN.QMGR.EVENT queue, here is what I see:

07 ...
  Topic: How to read system events?
lifeng

Replies: 6
Views: 5129

PostForum: IBM MQ Java / JMS   Posted: Wed Mar 12, 2008 11:53 am   Subject: How to read system events?
Hi,

I enabled the Authority events from QM Manager and generated event messages in the SYSTEM.ADMIN.QMGR.EVENT. But the only way I can find to read the message is to go to the Data tab of the prope ...
  Topic: How to track client connection attempts from the MQ server?
lifeng

Replies: 3
Views: 3513

PostForum: IBM MQ API Support   Posted: Wed Mar 12, 2008 7:21 am   Subject: How to track client connection attempts from the MQ server?
Hi zpat,

It's not network issue. I always get error message/reason code back, such as MQRC_SECURITY_ERROR, or MQRC_NOT_AUTHORIZED. I think most of them have something to do with misconfigured user ...
  Topic: How to track client connection attempts from the MQ server?
lifeng

Replies: 3
Views: 3513

PostForum: IBM MQ API Support   Posted: Wed Mar 12, 2008 6:20 am   Subject: How to track client connection attempts from the MQ server?
Hi there,

I am testing my client program which have a lots of trouble connecting to MQ server. It would be very helpfull if I can, from the MQ server, track all the incoming connection requests, su ...
  Topic: .Net API client connection: What user account MQ server see?
lifeng

Replies: 4
Views: 4148

PostForum: IBM MQ API Support   Posted: Tue Mar 11, 2008 7:02 pm   Subject: .Net API client connection: What user account MQ server see?
Thanks so much jefflowrey! I did what you said and finally get my 2000 box (client) successfully connected to my 2003 server (MQ Server)!

Now it becomes interesting since the 2000 box is my worksta ...
  Topic: .Net API client connection: What user account MQ server see?
lifeng

Replies: 4
Views: 4148

PostForum: IBM MQ API Support   Posted: Tue Mar 11, 2008 2:54 pm   Subject: .Net API client connection: What user account MQ server see?
The code I use for making connetion is from help center documentaion and it works, at least when both client program and MQ server are local. But when I look at MQ Explorer, I really don't find a chan ...
Goto page 1, 2, 3, 4  Next Page 1 of 4

Jump to:  
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.