How to configure Message bridge

          Hi,
          I am trying to setup a JMS Message Bridge for prove of concept purpose in Weblogic
          7.0. Here is my configurations from config.xml:
          <JMSBridgeDestination
          AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDIXA"
          ConnectionFactoryJNDIName="weblogic.jms.testConnectionFactory"
          ConnectionURL="t3://localhost:7001"
          DestinationJNDIName="examples.queue2" Name="LocalBridge"
          UserName="kyang" UserPassword="{3DES}2LeceOSYOaRuCvrFshnBZg=="/>
          ConnectionFactoryJNDIName="weblogic.jms.ClientConnectionFactory"
          ConnectionURL="t3://localhost:7001"
          DestinationJNDIName="examples.queue1"
          Name="MQWeblogicDestination" UserName="kyang"/>
          <JMSConnectionFactory DefaultDeliveryMode="Persistent"
          DefaultTimeToDeliver="200" DefaultTimeToLive="1000"
          JNDIName="weblogic.jms.ClientConnectionFactory"
          LoadBalancingEnabled="false" MessagesMaximum="100"
          Name="ClientConnectionFactory" OverrunPolicy="KeepNew"
          ServerAffinityEnabled="false" Targets="examplesServer"/>
          <JMSConnectionFactory DefaultDeliveryMode="Non-Persistent"
          DefaultTimeToDeliver="200" DefaultTimeToLive="1000"
          FlowControlEnabled="false"
          JNDIName="weblogic.jms.testConnectionFactory"
          Name="testConnectionFactory" OverrunPolicy="KeepNew" Targets="examplesServer"/>
          <MessagingBridge Name="MyMessaging Bridge" Selector="*"
          SourceDestination="LocalBridge"
          TargetDestination="MQWeblogicDestination" Targets="examplesServer"/>
          I used a test client get InitialContext with url:"t3://localhost:7001" and send
          the message to "examples.queue2" which is "MyJMSQueue".
          From the monitor screen I found the message was put on "MyJMSQueue" but the message
          was nerver delieveried to the "examples.queue1".
          From the log, I got following message:
          <Jun 20, 2002 10:05:53 AM CDT> <Info> <MessagingBridge> <200012> <Bridge "MyMess
          aging Bridge" suceesfully found the two adapters configured for it.>
          Do you have any suggestions?
          Thanks a lot!
          

Don't worry about the log messages about
          "comp/env/wls-connector-resref".
          It is not a problem for the Messaging Bridge feature.
          The real problem is that you have an invalid selector for the
          MessagingBridge. A bridge selector has the same syntax as a JMS message
          selector. As you can see from the JMS specification, a message selector
          syntax is based on a subset of the SQL92 conditional expression syntax.
          I would suggest you try the bridge feature without any selection first
          and add the selector later.
          Dongbo
          Kenny Yang wrote:
          >
          > Mr.Xiao,
          > Thanks! Things are getting better after I made changes according to your suggestion.
          > Now the status is showing: Forwarding Messages. But I still have following exceptions
          > from the logging window:
          >
          > <Jun 20, 2002 1:38:50 PM CDT> <Info> <MessagingBridge> <200020> <Bridge "MyMessa
          > ging Bridge" is stopped.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <MessagingBridge> <200033> <Bridge "MyMessa
          > ging Bridge" is getting the connections to the two adapters.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <Connector> <190011> <Unable to locate cont
          > ext: java:/comp/env/wls-connector-resref>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <Connector> <190010> <Unable to determine R
          > esource Principal for Container Managed Security Context.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <Connector> <190011> <Unable to locate cont
          > ext: java:/comp/env/wls-connector-resref>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <Connector> <190010> <Unable to determine R
          > esource Principal for Container Managed Security Context.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <Connector> <190035> <There was/were 1 phys
          > ical connection(s) created with the following Meta Data: Product name of EIS ins
          > tance: Java Messaging Service Product version of EIS instance: 1.0.2 Maximum num
          > ber of connections supported from different processes: 0 User name for connectio
          > n: kyang>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <Connector> <190011> <Unable to locate cont
          > ext: java:/comp/env/wls-connector-resref>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <Connector> <190010> <Unable to determine R
          > esource Principal for Container Managed Security Context.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <MessagingBridge> <200031> <Bridge "MyMessa
          > ging Bridge" is configured to allow degradation of its quality of service in cas
          > es where the configured quality of service is not reachable.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <MessagingBridge> <200030> <Bridge "MyMessa
          > ging Bridge" is configured to work in "Atmost-once" mode and it is actually work
          > ing in "Atmost_once" mode.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <MessagingBridge> <200028> <Bridge "MyMessa
          > ging Bridge" starts transferring messages.>
          > <Jun 20, 2002 1:38:55 PM CDT> <Info> <MessagingBridge> <200026> <Bridge "MyMessa
          > ging Bridge" encountered some problems to one of its adapters or underlying syst
          > ems. It stopped transferring messages and will try to reconnect to the adapters
          > shortly. (Exception caught was java.lang.reflect.UndeclaredThrowableException)
          > java.lang.reflect.UndeclaredThrowableException: java.lang.reflect.InvocationTarg
          > etException: javax.resource.ResourceException: Error creating asynchronous consu
          > mer or setting message lisenter
          > at weblogic.jms.adapter.JMSBaseConnection.throwResourceException(JMSBase
          > Connection.java:1086)
          > at weblogic.jms.adapter.JMSBaseConnection.setMessageListenerInternal(JMS
          > BaseConnection.java:984)
          > at weblogic.jms.adapter.JMSBaseConnection.setMessageListener(JMSBaseConn
          > ection.java:892)
          > at weblogic.jms.adapter.JMSConnectionHandle.setMessageListener(JMSConnec
          > tionHandle.java:121)
          > at java.lang.reflect.Method.invoke(Native Method)
          > at weblogic.connector.common.internal.ConnectionWrapper.invoke(Connectio
          > nWrapper.java:92)
          > at $Proxy131.setMessageListener(Unknown Source)
          > at weblogic.jms.bridge.internal.MessagingBridge.beginForwarding(Messagin
          > gBridge.java:842)
          > at weblogic.jms.bridge.internal.MessagingBridge.execute(MessagingBridge.
          > java:922)
          > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
          > >
          >
          > where can I get the context:"comp/env/wls-connector-resref"?
          

Similar Messages

  • How to Montior Messaging Bridge weblogic 10.1?

    I got few message bridges in wlS 10.1 environment . i am unable to find where the option to monotor bridge. ( wls docs showing got to server -> services-> bridge) "This page summarizes the messaging bridge instances that have been explicitly targeted to this Server" but its telling no items to display. I went throug the following steps but no luck
    Monitor messaging bridge instances
    To monitor the status of all configured messaging bridges in your domain:
    In the left pane of the console, expand Environment and select Servers.
    Select the specific server instance where the messaging bridge is configured.
    In the right pane, select the top Services tab, then select Bridge.
    Select the bridge instance whose status you want to monitor.
    Same thing i do in 8.1 is servrver -> services->bridge under this tab there is optin "Monitor all messaging bridge runtimes" when we click on this it shows about ste status of all bridges configured for this sever (Active /Inactive)
    Can some one help same option in wls 10.1
    Thanks
    Subba
    Edited by: Subba R Kancharla on Feb 1, 2010 1:31 PM

    Perhaps you're running into a bug, please consider opening a case with customer support. As a work-around, you might want to try using Java or WLST to find and display the bridge's JMX runtime mbean (MessagingBridgeRuntime).
    Tom

  • How to configure message retries?

    I would like know how to configure automatic message retries.
    Below is the scenario,
    I have a flow that accepts XML files using File Adaptor. This File adaptor is connected to a DB adaptor. As soon as I feed File Adaptor with an XML file, it will be inserted into a database table. At some point if the database server is busy, it may not accept this incoming call. I want DB adaptor to retry these messages automatically n number of times. Where do I set this retry value?
    Thanks,
    -vena

    Hi.
    You can try the following:
    1 - If using BPEL:
    In the dbadapter partner link configuration, go to the property tab, and add the properties retryMaxCount and retryInterval. They will appear in your bpel.xml file
    2 - If using ESB, your routing service must call the DBAdapter synchronously.
    Then, in the ESB cosole, under tab Properties for the DBAdapter, add RetryCount and RetryInterval from the list.

  • How to configure Redundant Bridging

    Hi,
    A costumer has a wireless link (using bridges AIR-BR1410A-K9) as a main connection beetween its 2 offices. In short time plans to add a second wireless link as redundant connection.
    Documentation indicates the option redundant briding ( I attach the image) for redundancy or load balancing but any example for configuration is included.
    Does any of you have an example for this opción?
    Regards

    Hello,
    one way I've seen people doing is to configure an eterchannel on the switches as if they were directly connected via cable. The problem is that there is no detection of granular failure since it considers the link to AP + wireless link + link to AP on other side as only 1 cable. But you have the best load balancing.
    Redundancy without load-balancing is achieved through simply connecting the 2 links and have spanning tree configured. The document you gave explains how to configure STP on chapter 8.
    Is there any particular point that needs more clarification ?
    Regards,
    Nicolas

  • How to configure 8192 bridge domain default limit shows 2048

    Hello,
     How can i scale up bridge-domain from 2048 to 8192.
     As per the link (http://www.cisco.com/c/en/us/td/docs/routers/asr9000/software/asr9k_r4-1/lxvpn/configuration/guide/lesc41/lesc41p2mps.html) ASR9000 series routers can scale up to 8192 bridge-domains.
     However my ASR9k shows the l2vpn capability to be only around 2048. How can i configure 8192 bridge-domain
    RP/0/RSP0/CPU0:ci-asr9k#show l2vpn capability 
    Tue Feb 10 14:11:36.797 EST
    Capability mode: mixed-mode
    L2vpn all-capable: N
    System capability:
      VPLS Max MAC addresses: 32000 
      VPLS Max bridge-domains: 2048 
      VPLS Max attachment circuits: 32768 
      VPLS Max pseudowires: 32768 
      RSI bit size: 13 
      Per-AC drop counters supported: Y 
      VPLS Preferred path allowed: Y 
      VPLS Preferred path fallback enable allowed: Y 
      VPLS Preferred path fallback disable allowed: Y 
      MAC withdrawal allowed: Y 
      Max attachment circuits per bridge-domain: 16384 
      VPLS Max virtual forwarding interfaces: 2048 
      VPLS Max virtual forwarding interfaces per bridge-domain: 1 
      VPLS Max pseudowires per bridge-domain: 512 
      VPLS Max pseudowires per virtual forwarding interface: 512 
      VPWS PW redundancy supported: Y 
      VPLS Access PW supported: Y 
      Bundle AC supported: Y 
      Security config supported: Y 
      DHCP snooping supported: Y 
      VPLS Static MAC filter supported: Y 
      VPLS MAC configs on bridge port supported: Y 
      VPLS Flooding config on bridge port supported: Y 
      Flood unknown unicast disable supported: Y 
      IGMP snooping supported: Y 
      MMRP flood optimization supported: Y 
      MMRP flood optimization max multicast address entries: 8192 
      MMRP flood optimization max PW participants: 262144 
      VPLS MAC Aging Default Timer Value: 300 
      VPLS MAC Aging Min Timer Value: 300 
      VPLS MAC Aging Max Timer Value: 30000 
      VPWS Max attachment circuits: 32768 
      VPWS Max pseudowires: 32768 
      VPWS Preferred path fallback enable allowed: Y 
      VPWS Preferred path fallback disable allowed: Y 
    -Ramdas

    Are there any LC scale profiles configured in the admin mode? If so, that would reduce L2 resources. If you don't need the L3 profile, remove it and reboot the router to gain back 8k bridge domains.
    Regards, 
    /A

  • How to configure message archieving in PI 7.1 / 7.11 ?

    Hi,
    I would like to configure message archieving in PI 7.11. Please advise on the any document / help that explain the step.
    Thank You and Best Regards
    Fernand Lesmana

    The following guide explaing the step-by step procedure-
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/402fae48-0601-0010-3088-85c46a236f50&overridelayout=true
    Also, the following links/notes might be usefull-
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417200)ID1506029250DB00994126813914143097End?blog=/pub/wlg/12811
    Note 836092 - Archiving/deleting work items in the XI
    Note 872388 - Troubleshooting Archiving and Deletion in XI 3.0 / PI 7.0
    I think there is no difference in archival setup procedure with PI7.1 and its same as it is in PI7.0

  • How to monitor Message Bridge runtime using WLST

    Hi Readers,
    I would like to monitor Message Bridge runtime on weblogic 8.1 using WLST script.
    Can anybody tell if there is any possibility? Is there a MBEAN avaialble for Messaging Bridge.?
    Edited by: user13254842 on 09-Sep-2010 23:17

    Hi,
    I don't recall whether the console provides a way to monitor the bridge, or whether the MessagingBridgeRuntimeMBean hangs off of some parent mbean, but you can obtain arbitrary mbeans using standard JMX query calls.
    Some scratch code that I have:
      private static MBeanServerConnection getConnection(
        String urlStr,
        String username,
        String password,
        String mbeanServer
      ) throws Exception {
        // This code implicitly requires weblogic classes to be in the classpath
        // in order to run efficiently, but its possible to get it to work without
        // any WL at all.   See
        //   http://e-docs.bea.com/wls/docs90/jmx/accessWLS.html#1118690
        // The code could be changed to automatically detect if WL is in
        // the classpath, and switch to "iiop" mode if it isn't.
        URI url = new URI(urlStr);
        Hashtable h = new Hashtable();
        h.put(Context.SECURITY_PRINCIPAL, username);
        h.put(Context.SECURITY_CREDENTIALS, password);
        h.put(
          JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,
          JMX_PROTOCOL_PROVIDER
        JMXServiceURL serviceURL = new JMXServiceURL(
           url.getScheme(), url.getHost(), url.getPort(), JMX_JNDI_ROOT + mbeanServe
        JMXConnector connector = JMXConnectorFactory.connect(serviceURL, h);
        return connector.getMBeanServerConnection();
    conn = getConnection(url, user, pass, "weblogic.management.mbeanservers.domainruntime")
    String type = "JMSServerRuntime";    // not sure may need to add "MBean" or strip off "Runtime", bridge = "MessagingBridgeRuntime"
    Set xxx =    conn.queryMBeans(new ObjectName("*:Type=" + type + ",*"), null);Hope this helps,
    Tom
    Edited by: TomB on Jun 10, 2009 2:57 PM

  • How to configure Messaging so that it disconnects ...

    I've installed Nokia Messaging and configured my e-mail account. Even though I think I set it up properly it just WILL NOT disconnect from my wifi access point - even when the app is turned off and I manually close the internet connection it just keeps on reconnecting. I need an application I can use to check my email once or twice a week, not something that drains the hell out of my (already **bleep**) battery... Is there anything I can do, or should I replace Nokia Messaging with sth else (what?)?
    Solved!
    Go to Solution.

    On X6 no matter what I do, I can't  make it stay disconnected from the wifi or gprs. It was working well at e71, e72 ... so it is because of this latest version of NM ? Anyhow, if it's not working like before, its useless for me. Just as native email client is, if scrolling doesn't work. That is enough for me, by by NokLa 

  • How to configure message header in receiver http adapter?

    Hi all
    I need the outgoing message payload from receiver http adapter to backend system with below form.
    POST http://222.222.33.22 /HTTP1.0
    content-type:application/x-www-form-urlencoded
    USERID=xxxxxx&PASSWORD=xxxx&SRCID=10&CDDATE=20070601...........................................................................
    ×POST http://222.222.33.22 /HTTP1.0
    ○content-type:application/x-www-form-urlencoded
    ○USERID=xxxxxx&PASSWORD=xxxx&SRCID=10&CDDATE=20070601...........................................................................
    Is there a parameter to enable POST method as a part of message header outputing?
    thanks in advance.

    The parameters available in HTTP adapter for message header are:
    HeaderFieldFive     http://sap.com/xi/XI/System/HTTP
    HeaderFieldFour     http://sap.com/xi/XI/System/HTTP
    HeaderFieldOne     http://sap.com/xi/XI/System/HTTP
    HeaderFieldSix     http://sap.com/xi/XI/System/HTTP
    HeaderFieldThree     http://sap.com/xi/XI/System/HTTP
    HeaderFieldTwo     http://sap.com/xi/XI/System/HTTP
    HTTPDest     http://sap.com/xi/XI/System/HTTP
    TargetURL     http://sap.com/xi/XI/System/HTTP
    URLParamFive     http://sap.com/xi/XI/System/HTTP
    URLParamFour     http://sap.com/xi/XI/System/HTTP
    URLParamOne     http://sap.com/xi/XI/System/HTTP
    URLParamSix     http://sap.com/xi/XI/System/HTTP
    URLParamThree     http://sap.com/xi/XI/System/HTTP
    URLParamTwo     http://sap.com/xi/XI/System/HTTP

  • How to configure router in bridge mode

    Hi
    I have 2 cisco 2621 series routers to be configured in bridge mode.
    i'll be connecting this 2 routers using serial connection 128 lease line.
    the problem is im not sure how to configure this 2 routers in bridge mode.
    as far as i know, i need to issue the command no ip routing.
    is there anything else i need to do?
    can anyone guide me on how to configure
    the router in bridge mode? is there any support page for this is cisco website?
    thanks
    Jega

    Please check the link to the configuration guide below. It describes how to configure transparent bridging.
    http://www.cisco.com/en/US/products/sw/iosswrel/ps1831/products_configuration_guide_chapter09186a00800ca65a.html
    Regards,
    Leo

  • Weblogic 6.1sp1 - Weblogic 6.1sp1 in different domain messaging bridge configuration

    I'm trying to configure messaging bridge to send messages from WLS
              6.1sp1 to WLS 6.1sp1 in another domain and seems it doesn't work. I'm
              using following configuration, any idea?
              <MessagingBridge Name="BatchBridge"
              SourceDestination="BatchBridgeDestination" Started="true"
              TargetDestination="BatchBridgeSource" Targets="myserver"/>
              <BridgeDestination
              AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDIXA"
              Name="BatchBridgeSource"
              Properties="ConnectionURL=t3://localhost:7001;DestinationJNDIName=ngfs.batch.Queue;ConnectionFactoryJNDIName=jms.connection.BridgeConnectionFactoryXA"
              UserName="system" UserPassword="something"/>
              <BridgeDestination
              AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDIXA"
              Name="BatchBridgeDestination"
              Properties="ConnectionURL=t3://ngfsdev:8001;DestinationJNDIName=ngfs.batch.Test;ConnectionFactoryJNDIName=jms.connection.BridgeConnectionFactoryXA"
              UserName="system" UserPassword="something"/>
              

    Are the two servers having the same name?
              Try not to use the same name for different WebLogic servers.
              Also It is not recommended that different JMS servers or
              different JMS stores use the same name, even if they
              are on different WebLogic servers.
              Try it.
              Dongbo
              Vyacheslav wrote:
              >
              > I tryed what you adviced to me and it finally started to work on one
              > server. When both ConnectionURL point to t3://localhost:7001 it is
              > working. That is a progress already.
              > But when I'm pointing it to remote server it gives me exception. What
              > coud be the reason?
              > Configuration now looks like following:
              >
              > <MessagingBridge Name="BatchBridge"
              > SourceDestination="BatchBridgeSource" Started="true"
              > TargetDestination="BatchBridgeDestination"
              > Targets="myserver"/>
              >
              > <BridgeDestination
              > AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDIXA"
              > Name="BatchBridgeSource"
              > Properties="ConnectionURL=t3://localhost:7001;DestinationJNDI=ngfs.batch
              > .Queue;ConnectionFactoryJNDI=jms.connection.BridgeConnectionFactoryXA"
              > UserName="system" UserPassword="something"/>
              >
              > <BridgeDestination
              > AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDIXA"
              > Name="BatchBridgeDestination"
              > Properties="ConnectionURL=t3://ngfsdev:8001;DestinationJNDI=ngfs.batch.Test;ConnectionFactoryJNDI=jms.connection.BridgeConnectionFactoryXA"
              > UserName="system" UserPassword="something"/>
              >
              > I don't understand why it cannot connect.
              >
              > I have created factory jms.connection.BridgeConnectionFactoryXA on
              > remote server.
              > I have created queue ngfs.batch.Test on remote server.
              > What is wrong?
              >
              > Server output:
              >
              > configured = jms.connection.BridgeConnectionFactoryXA ra's =
              > jms.connection.Brid
              > geConnectionFactoryXA
              > Lookup: cfJNDI = jms.connection.BridgeConnectionFactoryXA
              > Username = system password = <cut>
              > configured = jms.connection.BridgeConnectionFactoryXA ra's =
              > jms.connection.Brid
              > geConnectionFactoryXA
              > Lookup: cfJNDI = jms.connection.BridgeConnectionFactoryXA
              > Username = system password = <cut>
              > weblogic.jms.common.JMSException: Connection not found
              > at weblogic.jms.dispatcher.InvocableManager.invocableFind(InvocableManag
              > er.java:121)
              > at weblogic.jms.dispatcher.Request.wrappedFiniteStateMachine(Request.jav
              > a:503)
              > at weblogic.jms.dispatcher.DispatcherImpl.dispatchSync(DispatcherImpl.ja
              > va:272)
              > at weblogic.jms.client.JMSConnection.sessionCreate(JMSConnection.java:26
              > 1)
              > at weblogic.jms.client.JMSXAConnection.createXAQueueSession(JMSXAConnect
              > ion.java:67)
              > at weblogic.jms.adapter.JMSBaseConnection.start(JMSBaseConnection.java:2
              > 00)
              > at weblogic.jms.adapter.JMSManagedConnectionFactory.createManagedConnect
              > ion(JMSManagedConnectionFactory.java:200)
              > at weblogic.connector.common.internal.ConnectionPool.makeResources(Conne
              > ctionPool.java:808)
              > at weblogic.connector.common.internal.ConnectionPool.getConnection(Conne
              > ctionPool.java:1441)
              > at weblogic.connector.common.internal.ConnectionPoolManager.getConnectio
              > n(ConnectionPoolManager.java:154)
              > at weblogic.connector.common.internal.ConnectionManagerImpl.allocateConn
              > ection(ConnectionManagerImpl.java:20)
              > at weblogic.jms.adapter.JMSBaseConnectionFactory.getTargetConnection(JMS
              > BaseConnectionFactory.java:157)
              > at weblogic.jms.bridge.internal.MessagingBridge.getConnections(Messaging
              > Bridge.java:543)
              > at weblogic.jms.bridge.internal.MessagingBridge.execute(MessagingBridge.
              > java:677)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              > <Jul 23, 2002 4:52:37 PM EDT> <Error> <Connector> <Error granting
              > connection req
              > uest.>
              >
              > "Dongbo Xiao" <[email protected]> wrote in message news:<[email protected]>...
              > > Having looked at your configuration again, I found an interesting thing,
              > > which may have caused the problem. Your bridge is configured to
              > > transfer messages from ngfs.batch.Test to ngfs.batch.Queue, while you
              > > expect to see it working in the reverse direction.
              > >
              > > Dongbo
              > >
              > > > > "Vyacheslav" <[email protected]> wrote in message
              > > > > news:[email protected]...
              > > > > > I'm trying to configure messaging bridge to send messages from WLS
              > > > > > 6.1sp1 to WLS 6.1sp1 in another domain and seems it doesn't work. I'm
              > > > > > using following configuration, any idea?
              > > > > >
              > > > > > <MessagingBridge Name="BatchBridge"
              > > > > > SourceDestination="BatchBridgeDestination" Started="true"
              > > > > > TargetDestination="BatchBridgeSource" Targets="myserver"/>
              > > > > >
              > > > > > <BridgeDestination
              > > > > > AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDIXA"
              > > > > > Name="BatchBridgeSource"
              > > > > >
              > > > >
              > > Properties="ConnectionURL=t3://localhost:7001;DestinationJNDIName=ngfs.batch
              > > > >
              > > .Queue;ConnectionFactoryJNDIName=jms.connection.BridgeConnectionFactoryXA"
              > > > > > UserName="system" UserPassword="something"/>
              > > > > >
              > > > > > <BridgeDestination
              > > > > > AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDIXA"
              > > > > > Name="BatchBridgeDestination"
              > > > > >
              > > > >
              > > Properties="ConnectionURL=t3://ngfsdev:8001;DestinationJNDIName=ngfs.batch.T
              > > > > est;ConnectionFactoryJNDIName=jms.connection.BridgeConnectionFactoryXA"
              > > > > > UserName="system" UserPassword="something"/>
              

  • Message bridge example

    Hi,
    I need the complete example on Message bridge in weblogic server. ie betwenn to weblogic jms server's??
    please help me out if some one know how to setup Message bridge between two weblogic servers
    Thank

    If your Sonic ESB is lik JMS poller then use JCA JMS adapter with BPEL for communication. It is a reliable option.
    If the Sonic ESB is a http service then access it as a webservice from BPEL.

  • How to configure an Alert message if communicationChannel(JMS) stops

    All,
    Is there a way how to configure an alert when the communication channel stops.
    <b>Scenario:</b>
    In the path Runtime workbench->Component Monitoring->Adapter Engine->Communication Channel monitoring, if we see that a communication channel has stopped(RED traffic light as Status), then can we trigger an alert notification for same.
    Currently we have alrerts configured for any message/s failure in the JMS Adapter Framework. So can we trigger simmilar alerts when a comm channel stops(for whatever reason).
    Thanks in advance
    RK

    Hi Sreeram,
    Thanks for the quick reply.
    We have a scenario where we activate individual channels at a given time. So in this case, Adapter will always be in RED as all queues are never running in our scenario.
    So we need an ALERT to be triggered for individual comm channels. Is theer any way that you can think of ?
    Thanks and regards
    RK

  • How to configure Broadcast messaging for IC Webclient profile

    Dear all,
    How to configure Broadcast messaging for IC Webclient profile. what are the prerequisites for it?
    We are not using EP interface for IC Webclient, then where can I find broadcast messaging URL in SAP CRM system.
    I have checked for the relevant BSP application, but could not find.
    Please help me to configure the scenario successfully, your help will be highly appreciated.
    Best regards,
    Raghu ram

    Hi raghu
    In CRM Broad cast messaging application is CRM _BM,
    Go to easy access u2013 go to favourites u2013 select add other objects - select BSP Applications- then select CRM_BM Application.
    Select that BSP application and test it u2026
    `
    Regards,
    Narsimha

  • How toremove messages from JMS Queue?how to configure queue in spring?

    Hi
    I have Confiured a JMS configaration in spring applicationConfiguaration.xml file
    <bean id="connectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
              <property name="brokerURL" value="tcp://localhost:61616"/>
              <property name="useAsyncSend" value="true"/>
         </bean>
         <bean id="queue" class="org.apache.activemq.command.ActiveMQQueue">
         <constructor-arg value="foo"/>
    </bean>
         <bean id="broker" class="org.apache.activemq.xbean.BrokerFactoryBean">
              <property name="config" value="classpath:activemq.xml" />
              <property name="start" value="true" />
         <!--          <property name="messageListener" ref="auditInterface"/> -->
         </bean>
         <bean id="auditInterface"
              class="org.springframework.jms.remoting.JmsInvokerProxyFactoryBean">
    <property name="serviceInterface" value="com.infiniti.gpn.auditing.AuditInterface"/>
    <property name="connectionFactory" ref="connectionFactory"/>
    <property name="queue" ref="queue"/>
    </bean>
         <bean id="listenerContainer" class="org.springframework.jms.listener.SimpleMessageListenerContainer">
    <property name="connectionFactory" ref="connectionFactory"/>
    <property name="destination" ref="queue"/>
    <property name="messageListener" ref="auditMessageListener"/>
         </bean>
    Sender is sedning messages continusly messages that messages r storing in queue , these r acupying more memory in RAM , due to that jboss is restarting for each request, is there any way to clean up messages in Queue ? if it is there then how will configure that queue in apllicationConfiguaration.xml file?
    Thanks in advance
    Nara

    I suggest posting your question on the [Spring Remoting and JMX forum|http://forum.springframework.org/forumdisplay.php?f=30].

Maybe you are looking for

  • Is there a way to automatically sync documents across devices in iCloud?

    I thought that iCloud would automatically find my Pages documents and sync them to my iPad and iPhone.  But I find that I must first download the doc from the cloud, edit it and then replace it to the cloud every time.  Surely there is another way to

  • Date number to a date

    Hi, I have a field that is type number but it holds a date in reality (the number of seconds since 1970, i think). How can I compare it with SYSDATE (like so): select event_uuid from nnm_event_detail where event_timestamp < SYSDATE – 35; DB Version i

  • Maximum recommended file size for public distribution?

    I'm producing a project with multiple PDFs that will be circulated to a goup of seniors aged 70 and older. I anticipate that some may be using older computers. Most of my PDFs are small, but one at 7.4 MB is at the smallest size I can output the docu

  • Checking the stock in multiple plants by creating STO to fulfil an order.

    Hi All, The requirement is to do a Stock Transfer from different Plants for fulfillment of Configuration Order(putting together different components to make one product) which always be done at one central plant. When configuration order is created t

  • Connecting (important!)

    hey there. first post. here is what i'm trying to accomplish. i had bought a dell a couple years back 02', and now i dont use it since i just purchased my 3rd mac, (mac mini). however i would like to use the dell (windows xp) as a storage device, the