Author |
Message |
Topic: Basic Authorization with SSL and Proxy |
jharringa
Replies: 2 Views: 3135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 16, 2009 10:47 am Subject: Basic Authorization with SSL and Proxy |
Yeah, we're getting through the proxy alright but we appear to be failing at the endpoint. I have them looking at their logs to see if they can determine why their server appears to have closed the co ... |
Topic: Basic Authorization with SSL and Proxy |
jharringa
Replies: 2 Views: 3135
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 16, 2009 10:21 am Subject: Basic Authorization with SSL and Proxy |
I have been digging around to make sure that I'm doing this correctly but haven't found anything definitive. Here is my scenario:
MQInput -> Compute -> HTTPRequest
From the broker I need t ... |
Topic: ATOMIC block and SHARED variables confusion |
jharringa
Replies: 1 Views: 3899
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jun 30, 2009 6:56 am Subject: ATOMIC block and SHARED variables confusion |
In InfoCenter the documentation says:
It is not necessary to use the BEGIN ATOMIC construct in flows that will never be deployed with more than one instance (but it might be unwise to leave this t ... |
Topic: Reference To Shared Variables |
jharringa
Replies: 10 Views: 11426
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 17, 2009 2:29 pm Subject: Reference To Shared Variables |
It doesn't appear to work for me (after some quick tests...). Maybe there has been a fix after 6.1.0.1?
 |
Topic: Reference To Shared Variables |
jharringa
Replies: 10 Views: 11426
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 17, 2009 5:52 am Subject: Reference To Shared Variables |
You could pass a message tree into the procedure and then copy the resulting tree into the ROW. Unfortunately that will cost you a tree copy on top of your query. |
Topic: FileInputNode Size limit? |
jharringa
Replies: 12 Views: 9485
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 17, 2009 4:47 am Subject: FileInputNode Size limit? |
There are some comments from mqpaul on increasing the size limits of the FileInput node.
I can't find it. Anyways I can't split the file, because it's a tar file. The FileInputNode size can be incr ... |
Topic: Reference To Shared Variables |
jharringa
Replies: 10 Views: 11426
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 16, 2009 12:57 pm Subject: Reference To Shared Variables |
I believe that you need to send in a message tree for this. You can't just send through a row. |
Topic: UUIDASCHAR in AIX |
jharringa
Replies: 1 Views: 2423
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 16, 2009 12:54 pm Subject: UUIDASCHAR in AIX |
We are using UUIDASCHAR to generate a unique identifier. On our local Windows installation everything appears to work fine but once we deploy our flow to AIX we see the UUID being generated with the l ... |
Topic: FileInputNode Size limit? |
jharringa
Replies: 12 Views: 9485
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 16, 2009 12:22 pm Subject: FileInputNode Size limit? |
If I understand correctly, this is a limitation on the FileInput node and I do not believe it can be changed. In the past, I have use the FileInput to read line by line for files that can get larger t ... |
Topic: Try-Catch node before compute ? |
jharringa
Replies: 2 Views: 1870
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 16, 2009 12:12 pm Subject: Try-Catch node before compute ? |
What do you mean by "So we have the statements that delete the RHF header in compute2"? Does this mean that you are not passing that header on to OutputRoot? Could you post the code that you ... |
Topic: CData within CData question |
jharringa
Replies: 9 Views: 7438
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 13, 2008 4:11 pm Subject: CData within CData question |
Interesting. I must not have digged in deep enough.
All very great recommendations! I think that they may be able to base64 encode the message and I'll just need to call a static Java method to de ... |
Topic: CData within CData question |
jharringa
Replies: 9 Views: 7438
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 13, 2008 12:21 pm Subject: CData within CData question |
That makes sense.
I'm guessing that there are unsafe scenarios that I'm not thinking of for this. Just out of curiousity, would you be able to give me an example?
In the meantime, they are OK wi ... |
Topic: CData within CData question |
jharringa
Replies: 9 Views: 7438
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 13, 2008 11:09 am Subject: CData within CData question |
Nothing in the XML specification allows you to nest CDATA tags. The definition of CDATA is clear on this.
This is understood. I believe that is why the other application is converting the xml chara ... |
Topic: CData within CData question |
jharringa
Replies: 9 Views: 7438
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 13, 2008 10:49 am Subject: CData within CData question |
Yes. I've tried to do that and I think the issue is that I have character entities within the CDATA tag. Essentially the parser error on that is that there is no Root tag found at that location on the ... |
Topic: CData within CData question |
jharringa
Replies: 9 Views: 7438
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 13, 2008 10:13 am Subject: CData within CData question |
I am currently receiving an XML message like this:
<?xml version="1.0" encoding="UTF-8"?>
<SomeXML>
<MyElement><![CDATA[<?xml version=" ... |