ESB_ERROR Topic Subscription Problems

I am having problems subscribing as a consumer of ESB_ERROR, when I deploy I receive the following message. I was hoping that someone might be able to help me.
The Resource Adapter AQ Adapter was unable to activate the endpoint oracle.tip.adapter.jms.inbound.JmsConsumeActivationSpec:{OpaqueSchema=true, UseMessageListener=false, DestinationName=java:comp/resource/ESB/Topics/ORAESB.ESB_ERROR, PayloadType=TextMessage} due to the following reason: javax.resource.ResourceException: Unrecognized interaction spec oracle.tip.adapter.jms.inbound.JmsConsumeActivationSpec
<activationAgents>
<activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="ESBErrors">
<property name="portType">Consume_Message_ptt</property>
</activationAgent>
</activationAgents>
<definitions
name="ESBErrors"
targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/jms/ESBErrors/"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/jms/ESBErrors/"
xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
xmlns:jca="http://xmlns.oracle.com/pcbpel/wsdl/jca/"
xmlns:opaque="http://xmlns.oracle.com/pcbpel/adapter/opaque/"
xmlns:pc="http://xmlns.oracle.com/pcbpel/"
xmlns:hdr="http://xmlns.oracle.com/pcbpel/adapter/jms/"
>
<import namespace="http://xmlns.oracle.com/pcbpel/adapter/jms/" location="jmsAdapterInboundHeader.wsdl"/>
<types>
<schema targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/opaque/"
xmlns="http://www.w3.org/2001/XMLSchema" >
<element name="opaqueElement" type="base64Binary" />
</schema>
</types>
<message name="Consume_Message_msg">
<part name="opaque" element="opaque:opaqueElement"/>
</message>
<portType name="Consume_Message_ptt">
<operation name="Consume_Message">
<input message="tns:Consume_Message_msg"/>
</operation>
</portType>
<binding name="Consume_Message_binding" type="tns:Consume_Message_ptt">
<pc:inbound_binding />
<operation name="Consume_Message">
<jca:operation
DestinationName="java:comp/resource/ESB/Topics/ORAESB.ESB_ERROR"
UseMessageListener="false"
PayloadType="TextMessage"
ActivationSpec="oracle.tip.adapter.jms.inbound.JmsConsumeActivationSpec"
OpaqueSchema="true" >
</jca:operation>
<input>
<jca:header message="hdr:InboundHeader_msg" part="inboundHeader"/>
</input>
</operation>
</binding>
<service name="ESBErrors">
<port name="Consume_Message_pt" binding="tns:Consume_Message_binding">
<jca:address location="ESBTopics/Topics/ESB_ERROR" UIConnectionName="SOADevelopment"
ManagedConnectionFactory="oracle.tip.adapter.jms.JmsManagedConnectionFactory"
mcf.ConnectionFactoryLocation="java:comp/resource/ESB/TopicConnectionFactories/TCF"
mcf.IsTopic="true"
mcf.IsTransacted="true"
mcf.FactoryProperties=""
mcf.Username="orajms"
mcf.Password="<password>"
UIJmsProvider="OJMS" />
</port>
</service>
<plt:partnerLinkType name="Consume_Message_plt" >
<plt:role name="Consume_Message_role" >
<plt:portType name="tns:Consume_Message_ptt" />
</plt:role>
</plt:partnerLinkType>
</definitions>
Edited by: newsoftDEV on Jul 23, 2009 6:46 AM
Using JDeveloper 10.1.3.4
BPEL and ESB are 10.1.3.4
Edited by: newsoftDEV on Jul 23, 2009 10:24 AM

My Problem was that I was using the wrong resource provider

Similar Messages

  • Same WCF service endpoint to multiple topic/subscriptions

    I have a WCF endpoint that I would like to subscribe to multiple topic/subscriptions with the same interface. 
    Then once it gets to the .svc, route based on the brokered message properties. 
    (This is sort of how we have it set up in Neuron ESB with service connectors). 
    This is so we don’t need a .svc file for every subscription in our setup.
    When I try to add 2 endpoints in the web config, it throws:
    The value could not be added to the collection, as the collection already contains an item of the same type: 'Microsoft.ServiceBus.TransportClientEndpointBehavior'. This collection only supports one instance of each type.
    Here is my config:
    <service
    name ="SBWcfService2.TopicService">
    <endpoint
    name =
    "TopicService"
    listenUri="sb://localservicebus:10354/ServiceBusDefaultNamespace/wcftopic1/Subscriptions/Wcf2Sub"
    address ="sb://localservicebus:10354/ServiceBusDefaultNamespace/wcftopic1"
    binding="netMessagingBinding"
    bindingConfiguration="messagingBinding"
    contract="SBMessage.IMessageTopicContract"
    behaviorConfiguration="endpointBehavior"/>
    <endpoint
    name =
    "TopicService2"
    listenUri="sb://localservicebus:10354/ServiceBusDefaultNamespace/wcftopic2/Subscriptions/Wcf2Sub2"
    address ="sb://localservicebus:10354/ServiceBusDefaultNamespace/wcftopic2"
    binding="netMessagingBinding"
    bindingConfiguration="messagingBinding"
    contract="SBMessage.IMessageTopicContract"
    behaviorConfiguration="endpointBehavior"/>       
    </service>
    So I took out the behaviorConfiguration in 1 of the 2 endpoint configs, this allowed me to hit the endpoint like every other time. 
    When it doesn’t work it gave me a 404 server error saying resource cannot be found. 
    Event viewer shows:
    There was no channel actively listening at 'http://{{ServerName}}/SBWcfService2/TopicService.svc'. This is often caused by an incorrect address URI
    If I change localservicebus to my computer name, I can hit the endpoint without the resource failure, but I can’t receive messages.
    Searching online I couldn’t find much, the below link it the closest I could find with a similar problem:
    http://stackoverflow.com/questions/25668693/system-argumentexception-while-browsing-wcf-service-with-multiple-azure-service
    Any help would be greatly appreciated
    Thanks,
    -Nick N

    This is one way to do it according to Microsoft
    http://azure.microsoft.com/en-us/documentation/articles/service-bus-dotnet-how-to-use-topics-subscriptions/
    The key point is: You don't listen to specific subscription, you listen to the service bus.
    Here is a brief description of key steps
    connectionString to your servicebus
    Endpoint=sb://yourServiceNamespace.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedSecretValue=yourKey
    Suppose Topics in your servicebus is Topic1
    Suppose Subscriptions to your Topic1 are Sub1, Sub2
    To receive messages from Topic1 for Sub1, Sub2
    SubscriptionClient Client =
        SubscriptionClient.CreateFromConnectionString
                (connectionString, "Topic1", "Sub1"); //or change to Sub2
    Client.Receive();
    // Continuously process messages received from Sub1 (or Sub2) subscription
    while (true)
       BrokeredMessage message = Client.Receive();
       if (message != null)
    The web.config that listens to the topic for subscriptions looks like this
        <services>
          <service name="aaaaa">
            <endpoint address="sb://xxxxx.servicebus.windows.net/yyyyy"
                      behaviorConfiguration="sharedSecretClientCredentials"
                      binding="netTcpRelayBinding"
                      contract="wwwww"/>
          </service>
        </services>
        <behaviors>
          <endpointBehaviors>
            <behavior name="sharedSecretClientCredentials">
              <transportClientEndpointBehavior>
                <tokenProvider>
                  <sharedSecret issuerName="owner" issuerSecret="zzzz"/>
                </tokenProvider>
              </transportClientEndpointBehavior>
            </behavior>
          </endpointBehaviors>
        </behaviors>
    Frank

  • WCF service application hosted in IIS for reading Windows server service bus topic/subscription

    We have a WCF service application(not web application) which is deployed in IIS 8 pointing to the windows server service bus topic/subscription. We have configured the WCF service with applicationInitialization feature of IIS 8 to warm up.
    But the WCF service is not reading any message from the topic/subscription.
    configured in web.config file as below
    <system.webServer>
    <applicationInitialization>
    <add initializationPage="/MyService.svc" />
    </applicationInitialization>
    </system.webServer>
    When we run the same from visual studio its reading messages from topic/subscription.
    any configuration/settings which we are missing?

    You probably  didn't initialize correctly the auto-start. Btw. I would recommend you to use AppFabric for this feature. It is more transparent in development and production.
    Please take a look on following posts:
    http://social.technet.microsoft.com/wiki/contents/articles/1284.host-wcf-services-with-service-bus-endpoints-in-iis-and-windows-server-appfabric.aspx
    http://developers.de/blogs/damir_dobric/archive/2009/10/11/iis-7-5-and-always-running-web-applications.aspx
    http://developers.de/blogs/damir_dobric/archive/2010/06/11/appfabric-issue-with-aoutostart.aspx
    Damir Dobric
    developers.de
    daenet.de
    daenet.eu
    daenet.com

  • I no longer recieve email notification on topic subscriptions

    I used to receive email notification for topics I subscribe, or post to.
    This has stopped, and I have changed nothing in my settings. I went back and looked and I have send email immediately selected, but I still receive no notification by email.
    thank you
    jomala
    Also I am having problems with some other settings, I changed my settings to view 50 per page and I still get only 10, I have tried to change this SEVERAL times and I still get no change.
    Message was edited by: Jomala27

    Hi jomala!
    Email notifications of Subscriptions, has been problematic for quite some time, as evidenced by these Search Discussions Results.
    There are numerous other members of  Discussions who are having the same problem, and have previously posted regarding the issue.
    There has been a great deal of maintenance activity, going on in the past month or more. I don't know if this has caused this problem or not, but hopefully, this issue will eventually be corrected.
    For the time being, if you click on My Subscriptions, you should be able to discern which Topics have new content, as they will be marked with a .
    Regarding your other My Settings issue, after you have made the desired changes, are you clicking on Save, at the bottom of the page?
    ali b

  • Re: Subscription problem: Still shows zero credit

    i apply for subscription for india $19.19 amount dabit but skype minit dont updat and that problem i face from last 3 month

     r_patel1912 wrote:
    I know my all minits consumed on 24 july. But after that i cancel old subscription and apply for new one on date 24 july. This new subscription amount already deduct on 24 july and status deleverd, i got confermation mail from skype but this new subscriprion still not work at i wrote
    Hello
    I'll explain this one more time and, if you still don't understand, please contact Skype customer service
    Because you have violated our posting guidelines by repeatedly posting multiple messages I am left with no option but to suspend your posting privileges.
    It doesn't matter when you pay, your Subscription minutes will be added on the first day of your current billing cycle. This is July 29th 2014 in your case.
    Read my post above CAREFULLY.
    TOPIC CLOSED.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Creative cloud subscription problem

    I have just purchased Creative cloud
    I can install programs only as trials.
    Adobe app manager is showing try at almost all programs
    I have chated with some adobe reps but they could'nt solve the problem
    Any ideas?

    FLo67 if you choose the option to License this Software and enter your Adobe ID, tied to your Creative Cloud subscription, what happens?  You can find more details at http://forums.adobe.com/message/4592768#4592768?promoid=KBHJO.

  • IPhoto - MobileMe gallery subscription - problem with password-protected

    I am having a peculiar problem with subscribed galleries from MobileMe in iPhoto 08 and iPhoto 09. For galleries that have password-protection enabled, the full URL of the gallery subscription feed is pulled through as the Subscription title instead of the gallery title.
    For example "http://gallery.e.com/ACCOUNT-NAME/XXXXXX/?webdav-method-truthget&depth=infinit y&feedfmt=atom....
    This doesn't occur for public MobileMe galleries. The title of the gallery comes across and the URL of the subscription is hidden.
    Anyone having similar problems? Local Genius Bar couldn't help and assumed it was just a bug, but it doesn't seem to be typical of Apple.
    As an aside, it would also be nice to have these feed subscriptions behave similarly to the way RSS subscriptions work in Mail, with the ability to select how often the feed is queried and indicate the number of new items. This would alert users of changes to feeds.
    Joe

    Upon further research, it appears that this problem occurs when publishing from either iPhoto or Aperture to MobileMe. The problem seems to be when a gallery is published and one chooses not to have the gallery appear on the main gallery page (hidden). It seems to have nothing to do with whether or not one protects the gallery with a password.
    So, Apple, if you are listening, can you provide any information on how to have the title of the gallery come through when subscribing using iPhoto while at the same time not listing the gallery on the main MobileMe gallery page? This seems to be a fixable bug.

  • Newsstand subscription problems

    I have a problem with one of the subscriptions @ newsstand, the store won't connect. The funny thing is that there are no problems with other subscriptions or restoring the older issues of the same magazine bought before the subscription. I am looking for a way to contact apple so they could cancel the purchase 'cause I cannot use the subscription anyway. Anyone's got an e-mail address or something.
    And yes, tried to reload and reinstall the app many times.

    You can contact the publication for information about your subscription or contact iTunes Store Support Team.
    http://www.apple.com/emea/support/itunes/contact.html

  • Skype India subscription problem

    Dear Skype Team,
    I am using Skype India Subscription 2500 Mins last two months.
    First month it is working Fine.
    So, I recommended Skype to my friends. but from last months Skype subscription is not working fine. Every Two Minutes automatically disconnecting the call. and lot of time there is a problem with Voice.
    Im trying to chat with your Live support also but they are also not responding.
    Today my subscription is going to Finish. If u try to Solve the problem today i will continue with skype. otherwise i will delete my account and my friends account from skype. and i will advise my friends to cancel the subscription from skype due to non responding and Voice call problem. My friends also having same problem in voce calls.Everyone is blaming me due to skype is recommended by me.
    Waiting for your valuable reply 
    Regards,
    Suhamsuhail

    ear Skype Team,
     I am using Skype India Subscription 800 Mins from yesterday (7/10/14) voice clarity very nice but every 2 minute automatically disconnceting tha call.then again i call same problem. i don't what problem with me. i'm using samsung s4 active. first time i purchase skype calling credit.
    please help me any one knows about this problem.
    live support i don't know how to contact. 
    thanks and best regards.

  • TS1702 How do I get iTunes to look into a subscription problem. Twice now my Times of London subscription has vanished on the 27th of the month. Not recognized so I cannot get into the newspaper even though I have 3 more days to go, and have automatic ren

    Reporting a problem from my bill just gets me sent around in circles. This has happened before last month, and seems to be linked with the upgrade to iOS 6.0.1. as problems started immediately after the upgrade. My subscription just seems to lock itself out even though it is still current and on auto renewal. Tried all the usual tricks.

    All I am getting from iTunes is an automatic reply.
    This has been going on since September and the iOS 6.0.1 update. I have been bumped from Times of London to iTunes and back each saying it is the others problem. iTunes is the final auto response after their several suggestions is to go to the creator of the app which does seem to make sense.
    It is a bizarre problem. All is okay for about three weeks then I am not allowed into my downloaded copy. If I try to go into a page on the paper which at that point I can see, I get bumped out with a message that a subscription is not available.  The app has been re-downloaded (several times from iTunes Canada).
    Nothing seems to work. I didn't have a problem with my subscription previously. Have had the paper for several months with no problems.
    I have tried to get this message to those who might be able to do something but come up against a brick wall of automated responses.

  • Nokia music subscription problem

    Hello,
    I am Mayur
    I purchased nokia lumia 720 on 5th January 2014
    my nokia music was working fine but from last 3 days whenever i try to download music it shows a message that there is problem with your nokia music subscription try again latter...
    what to do now???
    M.kothari

    "If you have an active Nokia MixRadio unlimited downloads subscription, this error is most likely due to connectivity issues. Please try to exit the app by pressing the Back key until the device Home screen is displayed. Then re-open the application and try again. If the problem persists, try using a faster network connection, e.g. WiFi."
    If above will not help, let us know. You may also contact your local Nokia Support providing the device's IMEI and your Nokia Music username/ID.

  • Interactive report : subscription problem

    I had set subscription for an interactive report. The frequency is Daily and there is no ending day.
    The report is received daily on my mail in html format, but it is blank (2.4 KB). Only search field & search button are displayed.
    There are not parameters to generate the report.
    Please suggest the solution.
    Sanjay
    Edited by: user12957777 on Oct 6, 2012 2:44 AM

    Hi Christina,
    i have a smilar problem with Email subscriptions, i don't use items, but i use collections in the where clause!
    Example:
    select * from PUMA_MMRDB_GSM_LB a
    where
    case
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'BRD' then 1
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'REGION' and (a.Region in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'REGION_M')) then 1
    when (select C001 from APEX_COLLECTIONS where COLLECTION_NAME = 'TMP_SELECTION') = 'NL' and (a.NL in (select C001 FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'NLK')) then 1
    end = 1
    Sometimes i see the Errror ORA-01722 in the 'error message' field of the apex_application_page_ir_sub view. I don't know if this related to the above.
    Can you point me in the right direction?
    thanks,
    Wolfgang

  • Lightroom 5 cc subscription problem

    Hi i have a active subscription for adobe creative cloud membership for photoshop and light room, though i have a active subscription its asking for me to activate the product !! how to rectify this issue ?? currently its in trial mode

    You need to uninstall the existing version of Lightroom that you have on your computer.This process will not interfere with your catalog, preferences and personal files. Then download the version that is available through the Creative Cloud application manager. The License key should then be automatically input.
    If you still have problems try this site for additional info.
      Lightroom and Creative Cloud FAQ
    If you go back to the first couple of answers to your original post, you will see exactly what was needed to rectify the situation.
    Quote "Lightroom CC must be installed via the Adobe Creative Cloud App. Uninstall the trial and install the CC version and you will be fine."

  • Office 365 subscription problem

    I have an office 365 subscription account. yesterday I opened a excel file and got the message- "ACCOUNT
    NOTICE  We've run into a problem with your office 365 subscription, and we need your help to fix it"  beside a REACTIVATE tab. And after clicking this tab my 365 a/c opens but the issue remains same. Now how to reactivate office 365 pro plus?

    Hi,
    For this issue, I recommend you ask your question in the Office 365 Community Forums. You might get a better answer in the Office 365 forum. Thanks for understanding.
    http://community.office365.com/en-us/forums/default.aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • ELearning Suite 6.1 Subscription Problem

    I purchased a subscription to eLearning Suite 6.1. The download included Adobe Acrobat XI Pro, but a trial version. Adobe says they are aware of the problem and are working on it. I was not given a target date for a solution.

    I cannot remember the exact question that is asked when you are told that there are XX days remaining for the trial. It is something like --- do you want to continue with the trial or do you have a license? Tell it that you have a license. You will then be prompted to log in to your Adobe account. The software should then update to a full version using your Subscriber information.

Maybe you are looking for

  • Triggering frequency measuremen​t with 9402 and cDAQ

    Hi all, I'm trying to take a speed measurement off of a shaft using a hall effect sensor and a 9402 module in a 4 module cDAQ 9174 chassis. I've used the low frequency measurement example using DAQmx but if the shaft isn't spinning I get a timeout er

  • Cant work out how to convert iMovie DV into ProRes

    Hi, I have a load of DV footage captured with iMovie. It does not play properly so I was advised to convert to proses. I selected the clips and went into Media Manager and selected Prores 422 (LT) PAL 48Mhz. It seemed to simply copy not reincode the

  • Target JSP report fails when called with a key defined in cgicmd.dat

    Hi, When I am calling the parameter form report as (on my local pc): http://rnbhatta-us:8888/reports/pf_sumsptype.jsp?gsi It works fine. Here 'gsi' is the KEY that has the userid/passwd@connect_string that I have defined in the cmgcgi.dat file on my

  • HT4623 How to download iOS 7 to iPad

    My 1st gen ipad has iOS 5.1.1 and I am trying to upgrade to ios7. when I go into software update, I get the message that my 5.1.1 is up to date. How do I get iOS 7 installed?

  • After Effects CC 2014 - Überordnung nicht möglich

    Hallo zusammen, Ich habe eine Frage. Ich arbeite seit kurzem mit After Effects und bin nun öfters auf dieses Problem gestoßen. Nachdem ich mit Mocha mehrere Punkte getrackt habe, habe ich diese problemlos in AE kopiert. Ich wollte nun den Effekt "Str