Author |
Message |
Topic: How to use MQI calls in ASP |
Beaula
Replies: 10 Views: 13018
|
Forum: General IBM MQ Support Posted: Wed Dec 22, 2004 3:24 am Subject: MQSeries & ASP |
I tried to reinstall MQSeries 5.2 on Windows 2000 and I executed my old application written in VB. I am getting Run time error 53, MQM.DLL file not found. I set the variable as given below, still I am ... |
Topic: How to use MQI calls in ASP |
Beaula
Replies: 10 Views: 13018
|
Forum: General IBM MQ Support Posted: Tue Dec 21, 2004 5:23 am Subject: MQSeries & ASP |
<%@ language = VBscript %>
<html>
<head><title>Putting a test message</title></head>
<body>
<%
Set MQSess = Server.CreateObject("MQAX200.MQSessio ... |
Topic: Develop a web based application to read messages |
Beaula
Replies: 9 Views: 5717
|
Forum: IBM MQ Java / JMS Posted: Tue Oct 05, 2004 8:36 am Subject: Develop a web based application to read messages |
If you are using only MQSeries, the application architecture goes like this.
The Web enabled appliaction resides on the app server or if its a simple application it will be deployed on the web server ... |
Topic: Develop a web based application to read messages |
Beaula
Replies: 0 Views: 1149
|
Forum: General IBM MQ Support Posted: Sat Oct 02, 2004 1:07 am Subject: Develop a web based application to read messages |
I have very little idea about the web servers and can somebody guide me to know the right methodology.
Is that the web enabled application which we develop needs to reside on a web server and the c ... |
Topic: Develop a web based application to read messages |
Beaula
Replies: 9 Views: 5717
|
Forum: IBM MQ Java / JMS Posted: Sat Oct 02, 2004 1:05 am Subject: Develop a web based application to read messages |
Hi,
I am new to developing web enabled application.
I would like to read messages transmitted by IBM MQSeries server through a web enabled application and format it to a predefined output forma ... |
Topic: How to use MQI calls in ASP |
Beaula
Replies: 10 Views: 13018
|
Forum: General IBM MQ Support Posted: Thu Oct 09, 2003 11:29 pm Subject: How to use MQI calls in ASP |
If you don't know how to integrate VB into ASP, I'm not sure you know either VB or ASP very well.
Here's some sample code.<%@ language = VBscript %>
<html>
<head><title>Pu ... |
Topic: How to use MQI calls in ASP |
Beaula
Replies: 10 Views: 13018
|
Forum: General IBM MQ Support Posted: Thu Oct 09, 2003 2:31 am Subject: How to put the MQSeries code in ASP |
Just like you do with Visual Basic.
I have a sample application where i have used MQPUT Call to connect to the queue. I dont have any idea to integrate the same with ASP. Can you please tell me the ... |
Topic: How to use MQI calls in ASP |
Beaula
Replies: 10 Views: 13018
|
Forum: General IBM MQ Support Posted: Wed Oct 08, 2003 1:18 am Subject: How to use MQI calls in ASP |
How can we use MQ Series call (MQPUT, MQGET etc.) on an ASP page. Can some one expalin this ?. |
Topic: Integrating MQSeries with ASP Code |
Beaula
Replies: 0 Views: 1526
|
Forum: General IBM MQ Support Posted: Thu Oct 02, 2003 9:39 pm Subject: Integrating MQSeries with ASP Code |
Can any one help me to write a small code to integrate an ASP Cde with MQSeries to put and get a message ?... |
Topic: Unable to start the channel |
Beaula
Replies: 7 Views: 4793
|
Forum: IBM MQ API Support Posted: Thu Mar 13, 2003 4:55 am Subject: Unable to start the channel |
Suppose if you have two queue managers on the same box
For example:
QM1 listening on port 1414
QM2 listening on port 1415
The SDR channel on QM1 should be defined such that the conname attribute ... |
Topic: Unable to start the channel |
Beaula
Replies: 7 Views: 4793
|
Forum: IBM MQ API Support Posted: Tue Mar 11, 2003 8:56 pm Subject: Channel not Starting |
Does the machine name given in your sender channel resolve? Can you ping the receiver machine?
I created two queue managers on the same machine and defined a sender-receiver channel pair. The List ... |
Topic: Unable to start the channel |
Beaula
Replies: 7 Views: 4793
|
Forum: IBM MQ API Support Posted: Tue Mar 04, 2003 8:13 am Subject: Unable to start the channel |
I have problem with starting the channel. I defined a sender receiver channel with the same name on Queue managers on the same machine. I gave the machine name properly in the sender channel.
I g ... |
Topic: Put Message Header as Correlation ID |
Beaula
Replies: 1 Views: 1995
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 03, 2003 3:54 am Subject: Put Message Header as Correlation ID |
I would like to put a message header of 100 charecters to the messages, I am sending. But since the Correlation ID is defined as MQBYTE24, I am able to get maximum of 24 charecters only.
Is there a ... |
Topic: Putting Data on Windows NT from OS/390 |
Beaula
Replies: 6 Views: 4156
|
Forum: General IBM MQ Support Posted: Thu Feb 27, 2003 12:11 am Subject: Character Code ID & Encoding |
1) define your message as MQFMT_STRING (the best and most convienent way of dealing with conversion)
2) set the CCSID in MQMD to MQCCSI_Q_MGR (it's default)
3) set proper queue managers CCSID (on bo ... |
Topic: Puuting Message from OS/390 to WINNT |
Beaula
Replies: 6 Views: 3685
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 26, 2003 11:10 pm Subject: Puuting Message from OS/390 to WINNT |
Beaula,
You can use NATIVE CCSID, and Encoding in your M/F application when putting the message on NT queue. You will then use WMQI to read the message from input queue and parse it against appropr ... |