Author |
Message |
Topic: Problem in Calling Stored Procedure |
jlaisbett
Replies: 5 Views: 3167
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jun 17, 2014 1:21 pm Subject: Problem in Calling Stored Procedure |
For SQL server you need SET NOCOUNT ON; within your stored procedure if not set on the database by default.
The behaviour you are seeing is what normally occurs when that's not set. |
Topic: How to know whether my MQ&Broker is i586 or x64????? |
jlaisbett
Replies: 8 Views: 4487
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Apr 23, 2012 3:07 am Subject: How to know whether my MQ&Broker is i586 or x64????? |
The easiest way would be to check task manager while it's running, if it's 32 bit it will show up with *32 next to it. If it doesn't have that then it's 64 bit.
Unless it's a 32 bit version of Wind ... |
Topic: Extending JavaCompute Node |
jlaisbett
Replies: 33 Views: 18772
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Apr 03, 2012 12:43 pm Subject: Extending JavaCompute Node |
Just out of curiosity, how are you getting to the BrokerEnvironmentDetails class from your flows, is it via a compute node or a java compute node?
I haven't specifically come across something sayin ... |
Topic: Extending JavaCompute Node |
jlaisbett
Replies: 33 Views: 18772
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 02, 2012 7:20 pm Subject: Extending JavaCompute Node |
Extending MbJavaComputeNode is completely fine if for example you want to have a parent class for several JCN's but instantiating a class that extends it is not.
Brokers class loaders have very spe ... |
Topic: cannot get sucessful response when hitting a webservice |
jlaisbett
Replies: 13 Views: 6797
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 01, 2012 12:10 am Subject: cannot get sucessful response when hitting a webservice |
Your problem is more the need to set a HTTP header like so:
Content-Type: application/soap+xml; charset=utf-8
There are ways of doing this using the HTTPRequest node but I can't remember off the ... |
Topic: cannot get sucessful response when hitting a webservice |
jlaisbett
Replies: 13 Views: 6797
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jan 31, 2012 11:50 pm Subject: cannot get sucessful response when hitting a webservice |
Might pay to try a SOAPRequest node instead of the HTTPRequest node as your first attempt, if you have a wsdl anyway it shouldn't be too difficult to set it up. |
Topic: cannot get sucessful response when hitting a webservice |
jlaisbett
Replies: 13 Views: 6797
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jan 31, 2012 11:34 pm Subject: cannot get sucessful response when hitting a webservice |
Are you using a HTTPRequest node or a SOAPRequest node (or something else) and what version of SOAP?
These kind of issues are normally the result of a mismatch in HTTP headers between broker and th ... |
Topic: Rollback required when calling store procedure |
jlaisbett
Replies: 4 Views: 3858
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jan 31, 2012 11:09 pm Subject: Rollback required when calling store procedure |
In most cases message broker can roll back work done by a stored procedure when using Automatic transaction mode by throwing exceptions appropriately, that functionality is not restricted to direct SQ ... |
Topic: Compute node lifecycle in WMB 7.0.0.3 |
jlaisbett
Replies: 10 Views: 6125
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 27, 2012 12:29 am Subject: Compute node lifecycle in WMB 7.0.0.3 |
A JCN class is instantiated once per usage, i.e. if you have the same JCN class used by two different nodes in the same flow then it will be instantiated twice, once per node.
That said if you have ... |
Topic: Using Third party Jar files in Message broker JCN |
jlaisbett
Replies: 50 Views: 19152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jan 18, 2012 11:52 pm Subject: Using Third party Jar files in Message broker JCN |
We use java ... Kind of. Although useful for us it's primarily a skill set thing. We do however follow certain rules:
When working with messages always use the broker API. Don't try to wrap XML in ... |
Topic: Struggling with subflows in v8 |
jlaisbett
Replies: 14 Views: 9547
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jan 16, 2012 11:30 am Subject: Struggling with subflows in v8 |
How I believe it works (and I could be wrong) is anything in a library that is deployed directly to the execution group can be shared by any flows and updated independently.
If however you use flow ... |
Topic: EG JVM Memory build up with every message processed |
jlaisbett
Replies: 6 Views: 4475
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 12, 2012 11:54 pm Subject: EG JVM Memory build up with every message processed |
I'll assume you are using Java nodes in which case 2 common causes of memory leaks are:
Not calling clearMessage()
Using try catch blocks that handle exceptions of one of the Mb*Exception types ... |
Topic: Error occured whilst trying to locate a Java Class /method |
jlaisbett
Replies: 7 Views: 9950
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Aug 16, 2011 12:45 am Subject: Error occured whilst trying to locate a Java Class /method |
I believe your problem is the fact that your java method throws Exception, that won't work. I don't know if it's even possible to change the ESQL to work with Java methods that throw Exception as I'm ... |
Topic: JVM Configuration at Execution Group Level |
jlaisbett
Replies: 3 Views: 2338
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 04, 2011 2:59 am Subject: JVM Configuration at Execution Group Level |
http://publib.boulder.ibm.com/infocenter/wmbhelp/v7r0m0/topic/com.ibm.etools.mft.doc/an09143_.htm |
Topic: Need to Map only the element without attribute |
jlaisbett
Replies: 3 Views: 2577
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 04, 2011 1:15 am Subject: Need to Map only the element without attribute |
You need to map the value of the element rather than the element as a whole. I think there's a function or something you use for this but I can't remember what it is at the moment, it's fieldValue or ... |