otmfaqForumsBlogsRegister
FAQMembers ListCalendarToday's PostsSearch


 Subscribe Blogs:RSS
 Subscribe Forums:RSS
OTMFAQ Home
OTMFAQ Blogs
OTMFAQ Forums
OTMFAQ Tutorials

OTM SIG
MavenWire


Integration and Data Mapping Integrating OTM / G-Log with external and legacy systems - including XML, WebServices, SOA, ESB, BPEL, EDI and Oracle's Fusion.

Tags: ,

Closed Thread
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old July 3rd, 2007, 16:07
Junior Member
 
Join Date: May 2007
Posts: 27
Thanks: 1
Thanked 1 Time in 1 Post
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 0
rkuruba is on a distinguished road
Lightbulb [SOLVED] intg_queue Empty after OTM installation

Why after OTM installation intg_queue table is empty it is supposed to have 5 queues?
inbound_aq, ack_aq, exception_aq, xml_stage_aq, query_reply_aq
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2 (permalink)  
Old July 4th, 2007, 04:09
chrisplough's Avatar
Site Moderator
 
Join Date: Jun 2006
Location: West Chester, PA
Posts: 821
Blog Entries: 7
Thanks: 53
Thanked 201 Times in 121 Posts
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 10
chrisplough has a spectacular aura aboutchrisplough has a spectacular aura aboutchrisplough has a spectacular aura about
Send a message via AIM to chrisplough
Re: intg_queue Empty after OTM installation

Hello!

I don't know why, but I've verified on 2 OTM v5.5 CU3 systems that the
INTG_QUEUE table is empty. So, at least, it seems that you're not alone.

--Chris
__________________
Chris Plough
MavenWire

www.MavenWire.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3 (permalink)  
Old July 5th, 2007, 21:59
Junior Member
 
Join Date: May 2007
Posts: 27
Thanks: 1
Thanked 1 Time in 1 Post
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 0
rkuruba is on a distinguished road
Re: intg_queue Empty after OTM installation

I am told by oracle that these will appear when a message is enqueued. I am going to test it out and see.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4 (permalink)  
Old July 9th, 2007, 04:05
Junior Member
 
Join Date: May 2007
Posts: 27
Thanks: 1
Thanked 1 Time in 1 Post
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 0
rkuruba is on a distinguished road
Re: intg_queue Empty after OTM installation

Chris!!.

How to expose inbound_aq to outside clients. Documentation talks about directly connecting to OTM database but doesn't give much details. I have created all the configuration that need to be done.

Thanks,
RK.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5 (permalink)  
Old July 9th, 2007, 13:50
chrisplough's Avatar
Site Moderator
 
Join Date: Jun 2006
Location: West Chester, PA
Posts: 821
Blog Entries: 7
Thanks: 53
Thanked 201 Times in 121 Posts
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 10
chrisplough has a spectacular aura aboutchrisplough has a spectacular aura aboutchrisplough has a spectacular aura about
Send a message via AIM to chrisplough
Re: intg_queue Empty after OTM installation

Hello

I haven't seen OAQ exposed over the Internet before - usually the integration engine or ESB (Enterprise Service Bus) is exposed and then does the translation of documents into the OTM or OAQ format and posts internally to the OAQ queue -- so I'd recommend looking into your security and translation needs to ensure this model best fits.

That being said, usually OAQ connects in using the Oracle OCI or JDBC drivers. For instance, when configuring Mule (an open-source ESB) to connect to OAQ, you define your connection as follows:
Code:
<mule-configuration id="TestConfiguration" version="1.0"> 
<connector name="oracleJmsConnector" 
className="org.mule.providers.oracle.jms.OracleJmsConnector"> 
<properties> 
<property name="url" value="jdbc:oracle:oci:@myhost" /> 
<property name="username" value="scott" /> 
<property name="password" value="tiger" /> 
</properties> 
</connector> 
<transformers> 
<transformer name="StringToXMLMessage" 
className="org.mule.providers.oracle.jms.transformers.StringToXMLMessage" 
returnClass="oracle.jms.AdtMessage" /> 
<transformer name="XMLMessageToString" 
className="org.mule.providers.oracle.jms.transformers.XMLMessageToString" 
returnClass="java.lang.String" /> 
</transformers> 
<global-endpoints> 
<endpoint name="XmlQueue" address="oaq://XML_QUEUE" transformers="StringToXMLMessage" /> 
</global-endpoints> 
<model name="Test Model"> 
<mule-descriptor name="XML-Driven UMO" implementation="com.foo.MyUMO"> 
<inbound-router> 
<endpoint address="oaq://XML_QUEUE" transformers="XMLMessageToString"> 
<properties> 
<property name="payloadFactory" value="oracle.xdb.XMLTypeFactory" /> 
</properties> 
</endpoint> 
</inbound-router> 
</mule-descriptor> 
</model> 
</mule-configuration>
or - you can use a one-line connection string like:
Code:
oaq://XML_QUEUE?url=jdbc:oracle:oci:scott/tiger@myhost
The connection is then made using the default db port.

(as a side note, some additional information for anyone using Mule can be found here:
Oracle AQ Integration - Mule - Mule--Open Source ESB (Enterprise Service Bus) and Integration Platform)

Thanks!
--Chris
__________________
Chris Plough
MavenWire

www.MavenWire.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6 (permalink)  
Old July 10th, 2007, 15:45
Junior Member
 
Join Date: May 2007
Posts: 27
Thanks: 1
Thanked 1 Time in 1 Post
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 0
rkuruba is on a distinguished road
Re: intg_queue Empty after OTM installation

Thanks Cris!!

From what you are saying if I understand correctly I can use JMS API and "oaq://XML_QUEUE?url=jdbcracleci:scott/tiger@myhost" connection string while making database connection to OTM and push JMS messages to this queue.

Is this right?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7 (permalink)  
Old July 10th, 2007, 16:01
chrisplough's Avatar
Site Moderator
 
Join Date: Jun 2006
Location: West Chester, PA
Posts: 821
Blog Entries: 7
Thanks: 53
Thanked 201 Times in 121 Posts
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 10
chrisplough has a spectacular aura aboutchrisplough has a spectacular aura aboutchrisplough has a spectacular aura about
Send a message via AIM to chrisplough
Re: intg_queue Empty after OTM installation

Correct - you can make a connection to OTM's Oracle DB (which has OAQ enabled) and post directly to it. The transactions will have to be formatted for OAQ and (I believe) need to be in G-Log XML format. You're able to use JMS as your central integration protocol, however, between your integration server (like Mule in my previous post) and external systems.

--Chris
__________________
Chris Plough
MavenWire

www.MavenWire.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8 (permalink)  
Old December 17th, 2007, 13:59
chrisplough's Avatar
Site Moderator
 
Join Date: Jun 2006
Location: West Chester, PA
Posts: 821
Blog Entries: 7
Thanks: 53
Thanked 201 Times in 121 Posts
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 10
chrisplough has a spectacular aura aboutchrisplough has a spectacular aura aboutchrisplough has a spectacular aura about
Send a message via AIM to chrisplough
Re: intg_queue Empty after OTM installation

I ran across another Open Source ESB recently, that looks very promising - Open ESB.

https://open-esb.dev.java.net/

It's also integrated with the Netbeans IDE, making development easier.

--Chris
__________________
Chris Plough
MavenWire

www.MavenWire.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
OTM installation nikesh mohanlal Reports / FTI and Other Analytics 3 February 20th, 2008 12:19
Creating the Empty schema gokul Database Administration 1 December 28th, 2007 05:56
[SOLVED] Installation Error: Security Violation: User:'DBA.ADMIN' has insufficient p chrisplough Installation and Upgrades 4 July 5th, 2007 02:53
[SOLVED] Fixing OTM Oracle Reports after Patch Installation - Fixing File Permissions chrisplough Patches 0 June 13th, 2007 13:14
[SOLVED] 5.5 CU2 Installation Issues chrisplough Patches 0 January 10th, 2007 00:58



All times are GMT. The time now is 21:23.
Copyright © 2008, Open Book Solutions LLC. All rights reserved.

Sponsored by MavenWire - MavenWire.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37