MDB Not able to consume the messages

Hi
The code below put the messages in the queue which I can see through the admin console
public class TestMDBClient {
public static void main(String [] args) throws JMSException,
NamingException {
final Context ic = getInitialContext();
final QueueConnectionFactory qcf = (QueueConnectionFactory)ic.lookup("jms/TestConnectionFactory");
// Lookup should specify the queue name that is mentioned as "mappedName" in MessageDriven Bean.
System.out.println("TEST ="+qcf);
final Queue destQueue = (Queue)ic.lookup("jms/TestQueue");
ic.close();
final QueueConnection connection = qcf.createQueueConnection();
try {
final QueueSession session = connection.createQueueSession(false, 0);
final QueueSender sender = session.createSender(destQueue);
final TextMessage msg = session.createTextMessage("Hello World from Message Driven Bean");
sender.send(msg);
System.out.println("Message Sent");
} catch (Exception ex) {
ex.printStackTrace();
} finally {
connection.close();
private static Context getInitialContext() throws NamingException {
Hashtable env = new Hashtable();
// Add InitialContext property assignments here.
env.put( Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory" );
// Note that by default WebLogic server is not created with security, so credentials are not needed.
// TODO: Verify the server address and port number
env.put(Context.PROVIDER_URL, "t3://localhost:7101");
return new InitialContext( env );
But My Mdb onMessage() is not getting executing
import javax.ejb.EJBException;
import javax.ejb.MessageDrivenBean;
import javax.ejb.MessageDrivenContext;
import javax.jms.Message;
import javax.jms.MessageListener;
public class TestMDBBean implements MessageDrivenBean, MessageListener {
private MessageDrivenContext _context;
public void ejbCreate() {
public void setMessageDrivenContext(MessageDrivenContext context) throws EJBException {
_context = context;
public void ejbRemove() throws EJBException {
public void onMessage(Message message) {
System.out.println("I am here ...");
System.out.println(message);
My config xml files are
<?xml version = '1.0' encoding = 'windows-1252'?>
<ejb-jar xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd" version="2.1"
xmlns="http://java.sun.com/xml/ns/j2ee">
<enterprise-beans>
<message-driven>
<description>Message-Driven Bean</description>
<display-name>TestMDB</display-name>
<ejb-name>TestMDB</ejb-name>
<ejb-class>oracle.apps.rms.model.TestMDBBean</ejb-class>
<messaging-type>javax.jms.MessageListener</messaging-type>
<transaction-type>Container</transaction-type>
</message-driven>
</enterprise-beans>
</ejb-jar>
<?xml version = '1.0' encoding = 'windows-1252'?>
<weblogic-ejb-jar xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-ejb-jar http://www.bea.com/ns/weblogic/weblogic-ejb-jar/1.0/weblogic-ejb-jar.xsd"
xmlns="http://www.bea.com/ns/weblogic/weblogic-ejb-jar">
<weblogic-enterprise-bean>
<ejb-name>TestMDB</ejb-name>
<message-driven-descriptor>
<destination-jndi-name>jms/TestQueue</destination-jndi-name>
</message-driven-descriptor>
<enable-call-by-reference>true</enable-call-by-reference>
</weblogic-enterprise-bean>
<message-destination-descriptor>
<message-destination-name>TestQueue</message-destination-name>
<destination-jndi-name>jms/TestQueue</destination-jndi-name>
</message-destination-descriptor>
</weblogic-ejb-jar>
I even tried with a standalone java program ; no luck there also .Any body can help ?
package oracle.apps.rms.model;
import java.util.Hashtable;
import javax.jms.*;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
public class Test implements MessageListener {
public final static String JNDI_FACTORY =
"weblogic.jndi.WLInitialContextFactory";
// ******Defines the JMS CONNECTION FACTORY JNDI name.******
public final static String JMS_FACTORY = "jms/TestConnectionFactory";
// ******Defines the QUEUE JNDI name.******
public final static String QUEUE = "jms/TestQueue";
private QueueConnectionFactory qconFactory;
private QueueConnection qcon;
private QueueSession qsession;
private QueueReceiver qreceiver;
private Queue queue;
private boolean quit = false;
public void onMessage(Message msg) {
try {
String msgText;
if (msg instanceof TextMessage) {
msgText = ((TextMessage)msg).getText();
} else {
msgText = msg.toString();
System.out.println("Message Received: " + msgText);
if (msgText.equalsIgnoreCase("quit")) {
synchronized (this) {
quit = true;
this.notifyAll();
} catch (JMSException jmse) {
System.err.println("An exception occurred: " + jmse.getMessage());
public void init(Context ctx, String queueName) throws NamingException,
JMSException {
qconFactory = (QueueConnectionFactory)ctx.lookup(JMS_FACTORY);
qcon = qconFactory.createQueueConnection();
qsession = qcon.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
queue = (Queue)ctx.lookup(queueName);
System.out.println(queue);
qreceiver = qsession.createReceiver(queue);
qreceiver.setMessageListener(this);
qcon.start();
public void close() throws JMSException {
qreceiver.close();
qsession.close();
qcon.close();
public static void main(String[] args) throws Exception {
String str = "t3://localhost:7101";
InitialContext ic = getInitialContext(str);
Test qr = new Test();
qr.init(ic, QUEUE);
System.out.println("JMS Ready To Receive Messages (To quit, send a \"quit\" message).");
synchronized (qr) {
while (!qr.quit) {
try {
qr.wait();
} catch (InterruptedException ie) {
ie.printStackTrace();
qr.close();
private static InitialContext getInitialContext(String url) throws NamingException {
Hashtable<String, String> env = new Hashtable<String, String>();
env.put(Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
env.put(Context.PROVIDER_URL, url);
return new InitialContext(env);
Thanks
Suneesh

Hi,
Please try the below one: http://weblogic-wonders.com/weblogic/2009/08/17/mdb3-0-sample-for-weblogic-application-server/ (if you want to try with MDB3.0)
If you want to continue with the MDB2.0 then please change the DDs as below:
*"weblogic-ejb-jar.xml"*
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-ejb-jar
xmlns="http://www.bea.com/ns/weblogic/90" xmlns:j2ee="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-ejb-jar.xsd">
<weblogic-enterprise-bean>
<ejb-name>TestMDB</ejb-name>
<message-driven-descriptor>
<destination-jndi-name>TestQ</destination-jndi-name>
</message-driven-descriptor>
</weblogic-enterprise-bean>
</weblogic-ejb-jar>
*"ejb-jar.xml"*
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"
version="2.1">
<enterprise-beans>
<message-driven>
<ejb-name>TestMDB</ejb-name>
<ejb-class>test.example.mdb.TestMDB</ejb-class>
<transaction-type>Container</transaction-type>
<activation-config>
<activation-config-property>
<activation-config-property-name>destinationType</activation-config-property-name>
<activation-config-property-value>javax.jms.Queue</activation-config-property-value>
</activation-config-property>
</activation-config>
</message-driven>
</enterprise-beans>
</ejb-jar>
I have uploaded My TestMDB Application in : http://www.4shared.com/file/ni4WBc6G/TestMDB.html you can get the "QueueSend.java" program from Step-6) of below link : http://weblogic-wonders.com/weblogic/2010/06/26/basic-jms-demo-using-weblogic-queue/
Thanks
Jay SenSharma
http://weblogic-wonders.com (Wonders Are Here)
Thanks
Jay SenSharma

Similar Messages

  • Not able to get the message from Queue using MQ adapter

    HI
    Using Mq adapter am able to put the message in a queue and am able to get the message if i select the schema type as opaque, but am not able to get the message if i specify any schema type and am getting timed out exception.
    Kindly help to proceed with this issue.

    Hi,
    Am also facing the same issue.
    I would be thankful if anyone can provide the solution

  • My ipod is disabled and says connect to itunes.  I am not able to get the message about restore??

    Ipod touch is disabled and says connect to itunes.  I have followed all  of the steps but am not getting the message to restore.

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen        
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • Not Able to Activate the Message Mapping in XI

    Hi All,
    I am facing error while activating a simple Message Mapping (Mapping which I have created using XI’s graphical mapping tool). What I understood from the error log is that, even though we are doing the graphical mapping, internally XI is creating a java mapping program. And while activation its basically compiling the graphical mapping (internally a java program) and while compilation this java program we are getting the error.
    we have XI 3 with SP17 version java 1.4.2_06 running
    i have copied the part of default.trace file which has the error
    #1.5#0011433286D800590000095B000023BC00041BABC8FCF82A#1156324532170#com.sap.engine.compilation#sap.com/com.sap.xi.repository#com.sap.engine.compilation.ExternalCompiler.compile()#RAKESHR#302#SAP J2EE Engine JTA Transaction : [657ffffffa42600cffffffac]#iscsapapp4w_NW2_106406950#RAKESHR#d9a3dc50328711dbbc700011433286d8#SAPEngine_Application_Thread[impl:3]_40##0#0#Error##Plain###Error while compiling :
    java.io.IOException: CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
         at java.lang.Win32Process.create(Native Method)
         at java.lang.Win32Process.<init>(Win32Process.java:66)
         at java.lang.Runtime.execInternal(Native Method)
         at java.lang.Runtime.exec(Runtime.java:566)
         at java.lang.Runtime.exec(Runtime.java:491)
         at java.lang.Runtime.exec(Runtime.java:457)
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:73)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.5#0011433286D800590000095D000023BC00041BABC8FDCA9D#1156324532217#XIREP.com.sap.aii.ib.server.mapping.exec.ServiceUtil#sap.com/com.sap.xi.repository#XIREP.com.sap.aii.ib.server.mapping.exec.ServiceUtil#RAKESHR#302#SAP J2EE Engine JTA Transaction : [657ffffffa42600cffffffac]#iscsapapp4w_NW2_106406950#RAKESHR#d9a3dc50328711dbbc700011433286d8#SAPEngine_Application_Thread[impl:3]_40##0#0#Error#1#/Applications/ExchangeInfrastructure/Repository#Plain###Compilation process error : CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Root cause:
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapS

    are you facing the problem for every mapping created ? Else try to delete the existing mapping and recreate the same.

  • I am trying to determine how I can take an email without an attachment and save it to a folder.  I am not able to paste the message anywhere.  I can copy but to no avail.  I want to set up folders in email to move and save emails.  How can this be done?

    I am trying to determine how I can save emails into folders in my email account.  No ability to create a folder to move an email over into.  How can I do this?

    If you are using iPad Mail app, in the left hand column tap the arrow in the top left corner until you return to where your main email address appears. This is the main account screen.
    Then tap the email address/account once.
    In the left column in the upper right, tap the Edit button.
    At the bottom of the left column/panel there is a New Mailbox button.
    Tap the button. At the top of the left column, a keyboard entry field appears.
    Thiis is where you tap and enter the name of your new Mailbox folder.
    Once done naming, click the done button at the top right of the left column and you are done.
    This is how you add additonal mailbox folders to your email account.
    Once the mailbox folders you need are created, you can return to any email entry, Tap the Edit button in the upper right of the left column, again. A button appears next to all the emails in the left column.
    Tap the buttons for the ones you wish to move to a particular mailbox folder, at the bottom of the left column, choose the Move button, then pick the mailbox folder to move the emails to and they will automatically move to that mailbox folder.

  • Not able to consume Message

    Hi,
    I am trying to publish a message with OSb proxy service and the message is getting successfully published in the JMS topic.
    We have a subscriber component whihc will subscribe to this JMS topic. The Durable subscriber has been created successfully in the console and seeing the total consumers as 1 in the statistics tab.
    The issue we are facing now here is, i am not able to see the message is not getting consumed by the subscriber. We have tried changing the " <property name="UseMessageListener" value="false"/>" to "true" and see the message is being consumed by the subscriber but it is going to pending state. Also we dont see any instance getting triggered.
    Please help me with any suggestion?
    Thanks,
    SV.

    Yes, you can receive messages in a stateless EJB, although this isn't best practice. I suspect the problem in your case has to do with an incorrectly specified selector (verify the syntax and that it would match a message). It's also possible that you have a bug in the sending application where the sender is transacted or transactional, and is failing to commit the associated transaction after calling send.
    If you have a synchronous request/response pattern this may mean that there's no need to leverage JMS at all (just call the remote method directly). Otherwise, if you need to process received messages on a server, then its usually best to use MDBs. Synchronous receives are relatively inefficient and also have the potential to block server threads for long periods of time. In addition, selectors themselves can be inefficient.
    Tom

  • Not able to consume messages in the remote weblogic server from Oracle SOA

    I am able to see the messages in the Queue.
    I just created a simple JMS adapter for outboud connection
    Consume operations parameters
    Queue Name : eis/JMS/REmoteQueue
    JNDI Name : eis/JMS/REmoteQueue
    Configuration for
    Remote Weblogic server ( weblogic 9.2)
    JMSModule: MyJMSModule
    Queue Information:
    Queue Name : REmoteQueue
    Destination name :eis/JMS/REmoteQueue
    JNDI Name: eis/JMS/REmoteQueue
    ConnectionFactory: TestFactory
    JNDI Name : jms/TestFactory
    SOA Oracle Weblogic server : Local Machine
    general information for this resource adapter Outbound Connection.
    JNDI Name: eis/JMS/RemoteQueue
    Property Name Property Type Property Value
    AcknowledgeMode : AUTO_ACKNOWLEDGE
    ConnectionFactoryLocation : jms/TestFactory
    FactoryProperties: java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory;java.naming.provider.url=t3://servername:xx;java.naming.security.principal=xxxxx;java.naming.security.credentials=xxxxx
    IsTopic : false
    IsTransacted :false
    Password :
    Username:
    I am not able to see any consumers in the remote machine.

    There are no errors /exceptions. The project is deployed, since it is a JMS adapter with consume operation it should poll the queue and get the message if it is available.
    This is the *.jca file for adapter.
    <adapter-config name="psoftconsume" adapter="Jms Adapter" wsdlLocation="psoftconsume.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
    <connection-factory location="eis/JMS/RemoteQueue" UIConnectionName="remotewls" UIJmsProvider="WLSJMS" adapterRef=""/>
    <endpoint-activation portType="Consume_Message_ptt" operation="Consume_Message">
    <activation-spec className="oracle.tip.adapter.jms.inbound.JmsConsumeActivationSpec">
    <property name="DestinationName" value="eis/JMS/RemoteQueue"/>
    <property name="UseMessageListener" value="false"/>
    <property name="PayloadType" value="TextMessage"/>
    </activation-spec>
    </endpoint-activation>
    </adapter-config>

  • To download an App the 3 security questions are required. But at the end, apple is not able to complete the task and gives an error message. No more downloads are possible. What can I do?

    to download an App the 3 security questions are required. But at the end, apple is not able to complete the task and gives an error message. No more downloads are possible. What can I do?

    Very Important, how much Free Space is on your Hard Drive first of all? Click on the Macintosh HD on the Desktop, then do a Get Info on it.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Do they launch OK while in Safe Mode?

  • Not able to see the Service Desk Message in "Solution_Manager"

    Hi Gurus,
    Can anyone help me solving my problem,
    We are using Solution Manager 4.0, and want to implement service desk for our systems. I have configured the solution manager service desk and we are able to rise the message from satellite system to solution manager, but i am not able to see those messages in "solution_manager" transaction under service desk in solman, but those messages are reflecting in transaction code "dnotifwl" under "No Processer assigned" option of Personal selection>Notifications Tab.
    Pease guide me to resolve the problem.
    Thanks,
    Krishna.J

    Hi Nico Effenberger ,
    Thanks for ur reply,
    1.have not copied slfn to zslf but modified the entries of slf1 and using directly. When i try to copy either it is copying only the entries or saying Entry zslf does not exists in DNOC_TYPE_NOTIF.
    2. I am having full authorisation sap_all, and sap_new for my system
    3. yes i have created a slfn based on this slf1 messages.
    It will be very helpfull if you could send me any doc related to solman service desk configuration you have done.
    thanks & regards
    Krishna Joish

  • I am not able to use the ftp export in Muse. When I enter my host, name and password, I get a long interlude of rainbow wheel and finally the message that my ftp host cannot be found. I have verified the name and that it is port 21. I can export to html a

    I am not able to use the ftp export in Muse. When I enter my host, name and password, I get a long interlude of rainbow wheel and finally the message that my ftp host cannot be found. I have verified the name and that it is port 21. I can export to html and use another ftp client to upload (to the same server) but this is tedious and making minor changes is painful. Have you encountered this and found a solution?

    Hi Susan,
    In that case I will recommend that you consult a local technician/IT team and see if there is some network connectivity issue with your machine.
    - Abhishek Maurya

  • I have Photoshop Lightroom 5 and have downloaded Camera Raw 8.7.1 &DNG converter successfully. I have a new Sony Alpha 7 11 model ILCE-A7M2 that is supported by LR5. I am still not able to see the RAW pictures. The message says preview unavailable for thi

    I have Photoshop Lightroom 5 and have downloaded Camera Raw 8.7.1 &DNG converter successfully. I have a new Sony Alpha 7 11 model ILCE-A7M2 that is supported by LR5. I am still not able to see the RAW pictures. The message says preview unavailable for this file DSC-ARW. Whatelse I should be doing to see my pictures? Can someone help?
    Anita

    The support for that camera was added in the very latest release of Lightroom, version 5.7.1. Having downloaded Camera Raw 8.7.1 will have no effect on Lightroom because Lightroom doesn't use the Camera Raw plug-in. You need to make sure you have updated Lightroom to the very latest release in order to have support for that camera.

  • Cannot get all the sounds in library to download. I get this message GarageBand was not able to install the new sounds. Close and re-open GarageBand to download and install them again.

    When I attempt to download all the sounds in my Garage Band library, I get this message.
    "GarageBand was not able to install the new sounds. Close and re-open GarageBand to download and install them again". When I do this, I get the same message again.
    CAn anyone advise how to get all the sounds in my Garageband library?

    the same here for the drummers sounds in garageband 10xxx

  • OAF page is not able to display the custom error messages

    Hi,
    I have extended a seeded CO and trying to throw few custom error messages.
    It was working fine, but suddenly it is not able to display the error messages(but checked that the error messages are still present in application) and saying "Message not found. Application: PER, Message Name: ...."
    Is there any profile option which enables the custom messages?
    Thanks,
    Ranita

    Hi,
    There is no profile to enable the Custom error Messages, u will use the diagnostistics for showing the messages in the custom page
    use the following syntax for writing a msg in Jdeveloper
    pageContext.writeDiagnostics(strClassName, "Initializing the vo....", OAWebBeanConstants.STATEMENT);
    and enable the following profile option to yes
    Fnd:Diagnostics
    Regards
    Chanu

  • I am not able to execute the transport.send(message)

    I am not able to execute the transport.send(message) when trying for sending mail. I am getting error like this : -
    javax.mail.SendFailedException: Sending failed;  nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: 10.175.80.50, port: 25;  nested exception is: java.net.ConnectException: Connection timed out: connect
    Please help me on this to resolve this issue asap. thanks

    Hi Vinod,
    public void SendMail( )
        //@@begin SendMail()
              // Specify the host name of the mail server
              String host ="----
              IWDMessageManager messageMgr = wdControllerAPI.getComponent().getMessageManager();
              // Initialize Session
              Properties props = System.getProperties();
              props.put("mail.smtp.host", host);
              props.put("mail.smtp.auth", "true");
              Authenticator auth = new Auth();
              Session session = Session.getInstance(props, auth);
              // Create new MimeMessage
              MimeMessage message = new MimeMessage(session);          
              try
                    // Set the From Address
                    String from = wdContext.currentContextElement().getCtx_From();
                   message.setFrom(new InternetAddress(from));
                   //  Set the To Address
                   String to = wdContext.currentContextElement().getCtx_To();     
                   Address ar[] = new Address[1];
                   ar[0] = new InternetAddress(to);
                   message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
                   // Set the Subject
                   message.setSubject(wdContext.currentContextElement().getCtx_Subject());
                   //  Set the Text               
                   message.setText(wdContext.currentContextElement().getCtx_Text());            
                   Transport tr = session.getTransport("smtp");
                   tr.connect("Put again here Host Name", Port Noumber, "userid", "password");               
                   tr.sendMessage(message, ar);
              }catch (AuthenticationFailedException e){
                   messageMgr.reportException(e.toString(),false);
              }catch (AddressException e)     {
                   messageMgr.reportException(e.toString(),false);
              } catch (MessagingException e) {
                   messageMgr.reportException(e.toString(),false);
              }catch (Exception e){
                   messageMgr.reportException(e.toString(),false);
        //@@end
    And also create the class Auth() like
    public class Auth extends Authenticator {
         public PasswordAuthentication getPasswordAuthentication()
              String username = "userID";
              String password = "Passwod";     
              return new PasswordAuthentication(username,password);     
    Please check it i think i will work. Also please use constant value for the to, from, subject and text.

  • I am not able to download the newest version of ibooks- the message is ibooks cannot be downloaded at this time- can someone tell me what I am doing wrong?

    I am not able to download the newest version of ibooks- the message coming up says ibooks cannot be downloaded at this time- pls can someone tell me what I am doing wrong?

    Hi Suchvas,
    Thanks for visiting Apple Support Communities.
    If you are not able to download an iBooks update from the App Store, start with these troubleshooting steps:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Regards,
    Jeremy

Maybe you are looking for