Author |
Message
|
shalabh1976 |
Posted: Tue Jun 03, 2008 2:59 am Post subject: Integrating a system using XML over UDP |
|
|
 Partisan
Joined: 18 Jul 2002 Posts: 381 Location: Gurgaon, India
|
We have just recieved a very scratchy requirement where we need to integrate a system that uses XML over UDP to publish data. No known support for MQ. I think we may need to write an adapter to put the data into a file/MQ queue.
Is there any support for this protocol directly in Broker? _________________ Shalabh
IBM Cert. WMB V6.0
IBM Cert. MQ V5.3 App. Prog.
IBM Cert. DB2 9 DB Associate |
|
Back to top |
|
 |
shalabh1976 |
Posted: Mon Jun 23, 2008 10:51 pm Post subject: |
|
|
 Partisan
Joined: 18 Jul 2002 Posts: 381 Location: Gurgaon, India
|
Any help/answers on the above query will be appreciated. _________________ Shalabh
IBM Cert. WMB V6.0
IBM Cert. MQ V5.3 App. Prog.
IBM Cert. DB2 9 DB Associate |
|
Back to top |
|
 |
Gaya3 |
Posted: Tue Jun 24, 2008 12:15 am Post subject: |
|
|
 Jedi
Joined: 12 Sep 2006 Posts: 2493 Location: Boston, US
|
broker communicates with the help of MQ.
it seems to be an XML file transfering, am i right here.
if so there are some different options , where you can use FileInput/FileOuput Node to fetch the file and get processed in Broker side. _________________ Regards
Gayathri
-----------------------------------------------
Do Something Before you Die |
|
Back to top |
|
 |
elvis_gn |
Posted: Tue Jun 24, 2008 1:06 am Post subject: |
|
|
 Padawan
Joined: 08 Oct 2004 Posts: 1905 Location: Dubai
|
Hi Gaya3,
Gaya3 wrote: |
broker communicates with the help of MQ.
it seems to be an XML file transfering, am i right here.
if so there are some different options , where you can use FileInput/FileOuput Node to fetch the file and get processed in Broker side. |
I think shalabh1976 meant this by UDP
Regards. |
|
Back to top |
|
 |
mqmatt |
Posted: Tue Jun 24, 2008 1:13 am Post subject: |
|
|
 Grand Master
Joined: 04 Aug 2004 Posts: 1213 Location: Hursley, UK
|
I don't know of any node that supports UDP. You may need to write your own (either a user-defined or JavaCompute node). |
|
Back to top |
|
 |
nagarjun_vv |
Posted: Tue Jun 24, 2008 10:58 pm Post subject: |
|
|
Apprentice
Joined: 24 Jun 2008 Posts: 33
|
hi
You can support UDP(user defined properties) in any flow not inin particular node.
Regards XML we can use MQ node to get into the flow.
Can you be clear what you exactly needs. |
|
Back to top |
|
 |
billybong |
Posted: Wed Jun 25, 2008 12:42 am Post subject: |
|
|
 Disciple
Joined: 22 Jul 2005 Posts: 150 Location: Stockholm, Sweden
|
nagarjun_vv wrote: |
hi
You can support UDP(user defined properties) in any flow not inin particular node.
Regards XML we can use MQ node to get into the flow.
Can you be clear what you exactly needs. |
UDP refers to the transport protocol...
From what I've seen you can only use barebone TCP on 6.1 .
Dunno if MQIPT might have an UDP bridge, but it might be worth checking out. Then you could bridge from UDP to MQ -> Broker
<EDIT> MQIPT does only support TCP/IP it seems... No luck there.</EDIT> _________________ IBM Certified Solution Developer - WebSphere Message Broker V6.1
IBM Certified Solution Developer - WebSphere Integration Developer V6.0
IBM Certified System Administrator - WebSphere MQ V6.0
IBM Certified Solution Developer - WebSphere DataPower |
|
Back to top |
|
 |
fjb_saper |
Posted: Wed Jun 25, 2008 7:09 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
Shouldn't be too hard to write a java UDP receiver and put the outbound message to MQ.
Enjoy  _________________ MQ & Broker admin |
|
Back to top |
|
 |
jefflowrey |
Posted: Wed Jun 25, 2008 12:01 pm Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
fjb_saper wrote: |
Shouldn't be too hard to write a java UDP receiver and put the outbound message to MQ. |
It is easier to write a Java custom plugin Input node that doesn't need to know about MQ, though. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
fjb_saper |
Posted: Wed Jun 25, 2008 12:52 pm Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
jefflowrey wrote: |
fjb_saper wrote: |
Shouldn't be too hard to write a java UDP receiver and put the outbound message to MQ. |
It is easier to write a Java custom plugin Input node that doesn't need to know about MQ, though. |
Sure however I am not clear how you would scale and load balance this...  _________________ MQ & Broker admin |
|
Back to top |
|
 |
jefflowrey |
Posted: Wed Jun 25, 2008 1:56 pm Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
fjb_saper wrote: |
Sure however I am not clear how you would scale and load balance this...  |
In the same way you would scale and load-balance your solution.
Different ports being processed by different instances of the node. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
|