Author |
Message |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Mon Sep 30, 2002 10:24 am Subject: Re: Build problem? |
In the solution explorer for your assembly, right click on References and choose Add Reference. Pick the .NET tab and browse to the MQ.DLL choose it, then click Select and Ok.
For c#,
In your clas ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Mon Sep 30, 2002 7:16 am Subject: MQSeries.NET package |
It would definately be bad practice to not follow a documented close procedure before an object went out of scope. But it does happen. So it would be beneficial to implement a deconstructor to automat ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Sat Sep 28, 2002 7:50 am Subject: MQSeries.NET package |
The object that referenced the MQHandle does get garbage collected. However the handle does not. Because it is an unmanaged resource, unless IDispose is implemented the CLR does not know what to do wi ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Thu Sep 26, 2002 8:40 am Subject: BUG ALERT for Neil |
Neil, we have been using the handler now for a while to test it out. However, when we move it to our QA environment we run into a very serious issue.
Your objects do not implement the IDispose inte ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Thu Sep 19, 2002 11:05 am Subject: Re: How do I reset Mqseries.net |
I have downloaded your examples.
I created a small test app in VB.NET
with 2 buttons and 2 textboxs
Get button retrieves a message from queue
Put places message in Queue
I can do thisw fore ev ... |
Topic: Performance Primer |
Prophet
Replies: 6 Views: 4918
|
Forum: General IBM MQ Support Posted: Tue Sep 03, 2002 9:42 am Subject: Performance Primer |
Thanks all for the resposes.
I left out some testing data I should have included: We are using non-persistent messages and a Correlation ID lookup during these tests. Max handles, MaxChannels, and ... |
Topic: Performance Primer |
Prophet
Replies: 6 Views: 4918
|
Forum: General IBM MQ Support Posted: Mon Sep 02, 2002 4:17 pm Subject: Performance Primer |
Hello everyone. We are currently under going performance testing of our MQSeries connectivity at my company. I was wondering if anyone had any specific performance/scaling tips with dealing with MQ? W ... |
Topic: Using MQIC32.DLL in VB .Net |
Prophet
Replies: 3 Views: 3694
|
Forum: IBM MQ API Support Posted: Wed Aug 21, 2002 6:38 pm Subject: dont think it can be done... |
Im not entirely sure but am 90% sure that VB.NET cannot access code outside the CLR(common language runtime). It can only access COM components(such as MQAX200.dll) because of the COM Interop function ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Fri Aug 09, 2002 7:35 pm Subject: MQSeries.NET package |
Thank you very much I figured you were very busy. We actually did preliminary tests and got about double the performance from this then the regular MQAX. |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Thu Aug 08, 2002 9:49 am Subject: MQSeries.NET package |
Any word on possibly getting a strong named version of this wonderful proggy? We unfortunately cant use it if it isn't Strong named because of security reasons.
We would however love to take a ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Thu Jul 25, 2002 7:57 pm Subject: MQSeries.NET package |
without going into a lot of detail, a strong name basically does three things,
Strong names guarantee name uniqueness(versions, elimination of dll hell)
Strong names guarantee that no one can prod ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Thu Jul 25, 2002 8:09 am Subject: MQSeries.NET package |
Any way we could get you to strongly name the MQ.dll assembly? The assembly that will be calling it in our code is strong named and requires a strong named assembly to call. |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Wed Jul 24, 2002 9:58 am Subject: MQSeries.NET package |
Finally got an end to end test of connecting to a queue manager, opening a couple queues, sending and recieving, and finally disconnecting.(about 4 am this morning . When this dog gets a hold of a ... |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Tue Jul 23, 2002 6:45 am Subject: MQSeries.NET package |
pInvoke is definately the way to go. |
Topic: MQSeries.NET package |
Prophet
Replies: 100 Views: 138989
|
Forum: IBM MQ API Support Posted: Mon Jul 22, 2002 2:06 pm Subject: MQSeries.NET package |
The biggest problem with the COM MQ Libraries is that they are apartment threaded. This causes some serious performance issues in applications that use the GET with wait pattern. Basically while the t ... |