Subscriber not receiving published message

Hi,
I'm new to JMS and hence might sound very novice..
I'm trying to send and receive messages between 2 servers running App Server 7.0
I've configured both of them to not start the built in JMS service (I tried using that initially, did not work).
So, I start the imq broker on each server manually before I start the application on each of them.
I can see thru my debug statements that my client is publishing the message, but its not received by the subscriber.
I have the imqbrokerhostname set on each server (thru the app server admin console) to point to each of them.
Here is how I have written my publisher and subscriber.
The publisher is just another class and the subscriber is a thread that gets created when the app starts (I'm sure about that, as I have debug statements to prove that).
Here is my publisher code:
public void refreshRDMTable(String strTableName)
//Establish error logging category
Category m_category = Category.getInstance("JMS_eCATSPublisher.refreshRDMTable");
m_category.info("entering");
String strMessage = strTableName;
String topicCFName = Foundation.getProperty("eCATSTopicConnectionFactory");
String topicName = Foundation.getProperty("eCATSTopic");
try
InitialContext context = new InitialContext();
// Lookup the topic connection factory
// from the initial context.
TopicConnectionFactory tcf = (TopicConnectionFactory) context.lookup(topicCFName);
// Create a new topic connection from the topic
// connection factory.
TopicConnection conn = tcf.createTopicConnection();
// Start the connection
conn.start();
// Create a new topic session from the topic
// connection. The session should not be transacted
// and should use automatic message acknowledgement.
TopicSession session = conn.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
// Lookup the topic that we are to publish to
// from the initial context.
Topic topic = (Topic) context.lookup(topicName);
// Create a new topic publisher using
// the topic session. The publisher should
// be created to publish to Topic topic.
TopicPublisher publisher = session.createPublisher(topic);
// Using the topic session create a new
// text message to publish
TextMessage message = session.createTextMessage(strMessage);
// Using the publisher publish the text
// message that's just been created
publisher.publish(message);
m_category.info("Publishing JMS message: " + message);
catch (NamingException ne)
ne.printStackTrace();
catch (JMSException jmse)
Exception linkedException = jmse.getLinkedException();
if (linkedException != null)
linkedException.printStackTrace();
jmse.printStackTrace();
}//end method
and Here is my subscriber class:
public class JMSSubscriberThread extends Thread {
private boolean isStopped;
private TopicConnection fTopicConnecton;
private TopicSession fSession;
private boolean trueVal = true;
private Topic fTopic;
public void run()
Category cat = Category.getInstance("JMSSubscriberThread.run");
String topicCFName = Foundation.getProperty("eCATSTopicConnectionFactory");
String topicName = Foundation.getProperty("eCATSTopic");
int receiveTime = Integer.parseInt(Foundation.getProperty("callReceiveTimerMillisec"));
JMSRefreshObject rdmRefreshThread = new JMSRefreshObject();
cat.info("entering");
TopicSubscriber m_Subscriber = null;
try
final InitialContext context = new InitialContext();
// Lookup the topic connection factory
// from the initial context.
TopicConnectionFactory tcf =
(TopicConnectionFactory) context.lookup(topicCFName);
// Create a new topic connection from the topic
// connection factory.
fTopicConnecton = tcf.createTopicConnection();
// Create a new topic session from the topic
// connection. The session should not be transacted
// and should use automatic message acknowledgement.
fSession =
fTopicConnecton.createTopicSession(
false,
Session.AUTO_ACKNOWLEDGE);
// Lookup the topic that we are to subscribe to
// from the initial context.
fTopic = (Topic) context.lookup(topicName);
// Create a new topic subscriber using
// the topic session. The subscriber should
// be created to subscribe to Topic topic.
m_Subscriber = fSession.createSubscriber(fTopic);
fTopicConnecton.start();
catch (NamingException e1)
cat.error(e1.getMessage(), e1);
catch (JMSException e1)
cat.error(e1.getMessage(), e1);
do
try
// Using the subscriber check for published
// messages. Use the subscriber's receive()
// method as we are not sure when a message
// will be published to the topic.
TextMessage message;
message = (TextMessage)m_Subscriber.receive(receiveTime);
if(message != null)
cat.info("Message=========="+message.getText());
rdmRefreshThread.refreshRDMTable(message.getText());
catch (JMSException e)
cat.error(e.getMessage(), e);
} while (isStopped == false);
try
fTopicConnecton.close();
catch (JMSException e)
cat.error(e.getMessage(), e);
}//end method
public void stopExecution()
this.isStopped = true;
} //end method
} //end class
Here are the broker logs:
1. Server 1
Java Runtime: 1.4.2_07 Sun Microsystems Inc. C:\Sun\AppServer7\jdk\jre
[19/Apr/2005:09:51:59 CDT] License: Sun Java(tm) System Message Queue 3.5 SP1 trial license.
[19/Apr/2005:09:51:59 CDT] IMQ_HOME=C:\Sun\AppServer7\imq
[19/Apr/2005:09:51:59 CDT] IMQ_VARHOME=C:\Sun\AppServer7\imq\var
[19/Apr/2005:09:52:20 CDT] Windows 2000 5.0 x86 9NW8541-42733.ams.com (1 cpu) saravind
[19/Apr/2005:09:52:20 CDT] Java Heap Size: max=194432k, current=16256k
[19/Apr/2005:09:52:20 CDT] Arguments: -license try -tty
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the portmapper service using tcp [ 7676, 50, * ] with min threads 1 and max threads of 1
[19/Apr/2005:09:52:20 CDT] [B1060]: Loading persistent data...
[19/Apr/2005:09:52:20 CDT] Using built-in file-based persistent store: C:\Sun\AppServer7\imq\var\instances\imqbroker\
[19/Apr/2005:09:52:20 CDT] [B1041]: Cluster initialization successful.
[19/Apr/2005:09:52:20 CDT] [B1136]: Processing stored transactions
[19/Apr/2005:09:52:20 CDT] [B1013]: Auto Creation of Queues is Enabled
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the jms service using tcp(host = *, port=7675, mode=dedicated) with min threads 10 and max threads of 1000
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the admin service using tcp(host = *, port=0, mode=dedicated) with min threads 4 and max threads of 10
[19/Apr/2005:09:52:20 CDT] [B1039]: Broker "[email protected]:7676" ready.
[19/Apr/2005:09:53:37 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:09:56:49 CDT] [B1065]: Accepting: [email protected]:4482->jms:7675. Count=1
[19/Apr/2005:09:56:50 CDT] [B1132]: Autocreating destination eCATSTopic [Topic]
[19/Apr/2005:10:04:22 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:36 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:48 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:05:05 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:09:10 CDT] [B1065]: Accepting: [email protected]:4535->jms:7675. Count=2
2. Server 2
Java Runtime: 1.4.2_07 Sun Microsystems Inc. C:\Sun\AppServer7\jdk\jre
[19/Apr/2005:09:51:59 CDT] License: Sun Java(tm) System Message Queue 3.5 SP1 trial license.
[19/Apr/2005:09:51:59 CDT] IMQ_HOME=C:\Sun\AppServer7\imq
[19/Apr/2005:09:51:59 CDT] IMQ_VARHOME=C:\Sun\AppServer7\imq\var
[19/Apr/2005:09:52:20 CDT] Windows 2000 5.0 x86 9NW8541-42733.ams.com (1 cpu) saravind
[19/Apr/2005:09:52:20 CDT] Java Heap Size: max=194432k, current=16256k
[19/Apr/2005:09:52:20 CDT] Arguments: -license try -tty
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the portmapper service using tcp [ 7676, 50, * ] with min threads 1 and max threads of 1
[19/Apr/2005:09:52:20 CDT] [B1060]: Loading persistent data...
[19/Apr/2005:09:52:20 CDT] Using built-in file-based persistent store: C:\Sun\AppServer7\imq\var\instances\imqbroker\
[19/Apr/2005:09:52:20 CDT] [B1041]: Cluster initialization successful.
[19/Apr/2005:09:52:20 CDT] [B1136]: Processing stored transactions
[19/Apr/2005:09:52:20 CDT] [B1013]: Auto Creation of Queues is Enabled
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the jms service using tcp(host = *, port=7675, mode=dedicated) with min threads 10 and max threads of 1000
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the admin service using tcp(host = *, port=0, mode=dedicated) with min threads 4 and max threads of 10
[19/Apr/2005:09:52:20 CDT] [B1039]: Broker "[email protected]:7676" ready.
[19/Apr/2005:09:53:37 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:09:56:49 CDT] [B1065]: Accepting: [email protected]:4482->jms:7675. Count=1
[19/Apr/2005:09:56:50 CDT] [B1132]: Autocreating destination eCATSTopic [Topic]
[19/Apr/2005:10:04:22 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:36 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:48 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:05:05 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:09:10 CDT] [B1065]: Accepting: [email protected]:4535->jms:7675. Count=2
It looks like it is accepting something, but for some reason the message is still not received.
Please advice appropriately.
Thanks
Shekhs

Hi,
I'm new to JMS and hence might sound very novice..
I'm trying to send and receive messages between 2 servers running App Server 7.0
I've configured both of them to not start the built in JMS service (I tried using that initially, did not work).
So, I start the imq broker on each server manually before I start the application on each of them.
I can see thru my debug statements that my client is publishing the message, but its not received by the subscriber.
I have the imqbrokerhostname set on each server (thru the app server admin console) to point to each of them.
Here is how I have written my publisher and subscriber.
The publisher is just another class and the subscriber is a thread that gets created when the app starts (I'm sure about that, as I have debug statements to prove that).
Here is my publisher code:
public void refreshRDMTable(String strTableName)
//Establish error logging category
Category m_category = Category.getInstance("JMS_eCATSPublisher.refreshRDMTable");
m_category.info("entering");
String strMessage = strTableName;
String topicCFName = Foundation.getProperty("eCATSTopicConnectionFactory");
String topicName = Foundation.getProperty("eCATSTopic");
try
InitialContext context = new InitialContext();
// Lookup the topic connection factory
// from the initial context.
TopicConnectionFactory tcf = (TopicConnectionFactory) context.lookup(topicCFName);
// Create a new topic connection from the topic
// connection factory.
TopicConnection conn = tcf.createTopicConnection();
// Start the connection
conn.start();
// Create a new topic session from the topic
// connection. The session should not be transacted
// and should use automatic message acknowledgement.
TopicSession session = conn.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
// Lookup the topic that we are to publish to
// from the initial context.
Topic topic = (Topic) context.lookup(topicName);
// Create a new topic publisher using
// the topic session. The publisher should
// be created to publish to Topic topic.
TopicPublisher publisher = session.createPublisher(topic);
// Using the topic session create a new
// text message to publish
TextMessage message = session.createTextMessage(strMessage);
// Using the publisher publish the text
// message that's just been created
publisher.publish(message);
m_category.info("Publishing JMS message: " + message);
catch (NamingException ne)
ne.printStackTrace();
catch (JMSException jmse)
Exception linkedException = jmse.getLinkedException();
if (linkedException != null)
linkedException.printStackTrace();
jmse.printStackTrace();
}//end method
and Here is my subscriber class:
public class JMSSubscriberThread extends Thread {
private boolean isStopped;
private TopicConnection fTopicConnecton;
private TopicSession fSession;
private boolean trueVal = true;
private Topic fTopic;
public void run()
Category cat = Category.getInstance("JMSSubscriberThread.run");
String topicCFName = Foundation.getProperty("eCATSTopicConnectionFactory");
String topicName = Foundation.getProperty("eCATSTopic");
int receiveTime = Integer.parseInt(Foundation.getProperty("callReceiveTimerMillisec"));
JMSRefreshObject rdmRefreshThread = new JMSRefreshObject();
cat.info("entering");
TopicSubscriber m_Subscriber = null;
try
final InitialContext context = new InitialContext();
// Lookup the topic connection factory
// from the initial context.
TopicConnectionFactory tcf =
(TopicConnectionFactory) context.lookup(topicCFName);
// Create a new topic connection from the topic
// connection factory.
fTopicConnecton = tcf.createTopicConnection();
// Create a new topic session from the topic
// connection. The session should not be transacted
// and should use automatic message acknowledgement.
fSession =
fTopicConnecton.createTopicSession(
false,
Session.AUTO_ACKNOWLEDGE);
// Lookup the topic that we are to subscribe to
// from the initial context.
fTopic = (Topic) context.lookup(topicName);
// Create a new topic subscriber using
// the topic session. The subscriber should
// be created to subscribe to Topic topic.
m_Subscriber = fSession.createSubscriber(fTopic);
fTopicConnecton.start();
catch (NamingException e1)
cat.error(e1.getMessage(), e1);
catch (JMSException e1)
cat.error(e1.getMessage(), e1);
do
try
// Using the subscriber check for published
// messages. Use the subscriber's receive()
// method as we are not sure when a message
// will be published to the topic.
TextMessage message;
message = (TextMessage)m_Subscriber.receive(receiveTime);
if(message != null)
cat.info("Message=========="+message.getText());
rdmRefreshThread.refreshRDMTable(message.getText());
catch (JMSException e)
cat.error(e.getMessage(), e);
} while (isStopped == false);
try
fTopicConnecton.close();
catch (JMSException e)
cat.error(e.getMessage(), e);
}//end method
public void stopExecution()
this.isStopped = true;
} //end method
} //end class
Here are the broker logs:
1. Server 1
Java Runtime: 1.4.2_07 Sun Microsystems Inc. C:\Sun\AppServer7\jdk\jre
[19/Apr/2005:09:51:59 CDT] License: Sun Java(tm) System Message Queue 3.5 SP1 trial license.
[19/Apr/2005:09:51:59 CDT] IMQ_HOME=C:\Sun\AppServer7\imq
[19/Apr/2005:09:51:59 CDT] IMQ_VARHOME=C:\Sun\AppServer7\imq\var
[19/Apr/2005:09:52:20 CDT] Windows 2000 5.0 x86 9NW8541-42733.ams.com (1 cpu) saravind
[19/Apr/2005:09:52:20 CDT] Java Heap Size: max=194432k, current=16256k
[19/Apr/2005:09:52:20 CDT] Arguments: -license try -tty
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the portmapper service using tcp [ 7676, 50, * ] with min threads 1 and max threads of 1
[19/Apr/2005:09:52:20 CDT] [B1060]: Loading persistent data...
[19/Apr/2005:09:52:20 CDT] Using built-in file-based persistent store: C:\Sun\AppServer7\imq\var\instances\imqbroker\
[19/Apr/2005:09:52:20 CDT] [B1041]: Cluster initialization successful.
[19/Apr/2005:09:52:20 CDT] [B1136]: Processing stored transactions
[19/Apr/2005:09:52:20 CDT] [B1013]: Auto Creation of Queues is Enabled
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the jms service using tcp(host = *, port=7675, mode=dedicated) with min threads 10 and max threads of 1000
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the admin service using tcp(host = *, port=0, mode=dedicated) with min threads 4 and max threads of 10
[19/Apr/2005:09:52:20 CDT] [B1039]: Broker "[email protected]:7676" ready.
[19/Apr/2005:09:53:37 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:09:56:49 CDT] [B1065]: Accepting: [email protected]:4482->jms:7675. Count=1
[19/Apr/2005:09:56:50 CDT] [B1132]: Autocreating destination eCATSTopic [Topic]
[19/Apr/2005:10:04:22 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:36 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:48 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:05:05 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:09:10 CDT] [B1065]: Accepting: [email protected]:4535->jms:7675. Count=2
2. Server 2
Java Runtime: 1.4.2_07 Sun Microsystems Inc. C:\Sun\AppServer7\jdk\jre
[19/Apr/2005:09:51:59 CDT] License: Sun Java(tm) System Message Queue 3.5 SP1 trial license.
[19/Apr/2005:09:51:59 CDT] IMQ_HOME=C:\Sun\AppServer7\imq
[19/Apr/2005:09:51:59 CDT] IMQ_VARHOME=C:\Sun\AppServer7\imq\var
[19/Apr/2005:09:52:20 CDT] Windows 2000 5.0 x86 9NW8541-42733.ams.com (1 cpu) saravind
[19/Apr/2005:09:52:20 CDT] Java Heap Size: max=194432k, current=16256k
[19/Apr/2005:09:52:20 CDT] Arguments: -license try -tty
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the portmapper service using tcp [ 7676, 50, * ] with min threads 1 and max threads of 1
[19/Apr/2005:09:52:20 CDT] [B1060]: Loading persistent data...
[19/Apr/2005:09:52:20 CDT] Using built-in file-based persistent store: C:\Sun\AppServer7\imq\var\instances\imqbroker\
[19/Apr/2005:09:52:20 CDT] [B1041]: Cluster initialization successful.
[19/Apr/2005:09:52:20 CDT] [B1136]: Processing stored transactions
[19/Apr/2005:09:52:20 CDT] [B1013]: Auto Creation of Queues is Enabled
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the jms service using tcp(host = *, port=7675, mode=dedicated) with min threads 10 and max threads of 1000
[19/Apr/2005:09:52:20 CDT] [B1004]: Starting the admin service using tcp(host = *, port=0, mode=dedicated) with min threads 4 and max threads of 10
[19/Apr/2005:09:52:20 CDT] [B1039]: Broker "[email protected]:7676" ready.
[19/Apr/2005:09:53:37 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:09:56:49 CDT] [B1065]: Accepting: [email protected]:4482->jms:7675. Count=1
[19/Apr/2005:09:56:50 CDT] [B1132]: Autocreating destination eCATSTopic [Topic]
[19/Apr/2005:10:04:22 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:36 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:04:48 CDT] [B1072]: Closed cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:05:05 CDT] [B1071]: Established cluster connection : sandstorm.ams.com/162.70.208.114:7676 (imqbroker)
[19/Apr/2005:10:09:10 CDT] [B1065]: Accepting: [email protected]:4535->jms:7675. Count=2
It looks like it is accepting something, but for some reason the message is still not received.
Please advice appropriately.
Thanks
Shekhs

Similar Messages

  • LG Revolution not receiving text messages from iphone user

    I am not receiving text messages from iphone user, sporatically.  The messages are showing as reveived on Verizon website in usage detail, but not being received on my phone.

        This issue needs fixed asap! I have a few suggestions that should help you get this resolved. If they are showing up in the usage details, that means they are hitting the Verizon network, but for some reason they are not showing up on the phone.   I recommend clearing the cache from your messaging/text messaging programs. Go to settings> applications> manage apps> all> Messaging/Text Messaging> Force Stop/Clear Cache/Clear Data. Erase the old text threads that you have saved and retry.
    If that doesn't work, please let us know the following:
    1) Do they come in delayed or not at all?
    2) Do you have any 3rd party messaging apps installed?
    3) Do they have any problems receiving messages from you?
    4) When they're sending messages, are they directly to you, or do you have this problem when the iPhone user sends to a group of people?
    Thanks for the additional info! I'm sure we can find a fix.
    Regards,
    MikeS_VZW
    Follow us on Twitter @VZWSupport

  • TS4268 I CAN NOT RECEIVE TEXT MESSAGES FROM PEOPLE USING IMESSAGE - I HAVE MY IMESSAGE TURNED OFF BECAUSE I DO NOT WANT TEXTS GOING TO ALL MY ACCOUNTS - HOW DO I RESOLVE THIS PLEASE HELP - MISSING SEVERAL IMPORTANT COMMUNICATIONS...

    I CAN NOT RECEIVE TEXT MESSAGES FROM PEOPLE USING IMESSAGE

    On an iPhone your iMessages will go to your phone number.
    You can select another email to use on iPod or iPad.
    Go to settings
    Messages
    Send and receive
    Check your phone number and uncheck the common Apple ID you share so your messages will not go to other devices.

  • All of a sudden I can not receive text messages on my MOTOX. Does anyone know how to solve this problem. I can send them, but can't receive them.

    My MOTO X was working fine, then all of a sudden, I can not receive text messages. I have checked the settings and they look correct to me, and I have done everything the web site recommends, except wiping the phone and starting over, to try and fix it. Has anyone else had this issue, and how did you resolve it?
    Thanks so much.

        That's strange that your Moto X wont receive any text. Thank you for trouble shooting the issue. Let's see what's going on! Does your device have any physical or liquid damage? Does anyone else have an issue with calling or texting? What zip code are you in?
    VanetrisC_VZW
    Follow us on Twitter @VZWSupport

  • Post CUPS 8.5(3) upgrade getting CUPC "did not receive your message because it could not be delivered".

    I upgraded CUPS from 7.0(2) to 8.5(3) and now CUPC 7.1(1a) clients can’t chat each other, they now get the following message.
    Rose, Bob did not receive your message because it could not be delivered. (3:14 PM)
    Wireshark shows response back from CUPS server ip as 408 Request Timeout.
    Only the server was upgraded, not the clients.

    After several hours with Cisco TAC we found CSCsl63971  (case-sensitivity on proxy domain causes CUPC problems) and were able to resolve the issue so users can continue to use CUPC 7.1(1)

  • Not receiving automated messages correctly for Droid

    Is there a current problem with Droid not receiving automated messages correctly from short 5 digits numbers for example my dentist office sends out reminders for my appointments and  they are not sending correctly I have included an example below of what it looks like below. You will see that there no message. I have put the message below of what I should have received from my dentist. So you can understand why people are confused and calling our office back wondering when there appointment is . (Yes, I work at the office and a patient
    [10] 11 (Thu). Thanks! {edited for privacy}
    Sammie, Reply with "YES" to confirm your appt at 10:00AM on 3/24/11 (Thurs). Thanks! {edited for privacy}
    Is this something that can be fixed. Becasue I know that majority of ourpatients have Droids has it is a very popular phone and we are getting numerous complaints!
    I will be looking forwrd to a response!

    Well what's also weird is I'll send/receive other sms messages and there won't be any problems. But then, out of no where, my phone will get sms messages that are a few days old. I move around plenty in my area for work or other reasons so it's not like I stay in one location all the time. Also, I have Verizon and they have great coverage in my area anyway.

  • I have set up iMessages on my ipad but now I'm not receiving any messages on my iPhone how can I fix this.

    I have set up iMessages on my ipad in error now I'm not receiving any messages on my iphone, can anyone advise how to fix this or just undo everything I have done, don't necessarily need messages on my ipad

    Hi there Shwalks,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    -Griff W. 

  • Why does my iphone not receive group messages if there is a non iphone user in the group?

    I Have an iphone 4 with the latest update. Whenever anyone sends a group message to me when there is a non-iphone user in the group, my phone does not receive the message. I've tried restarting and it doesnt work. i have sms messaging turned on. Any help would be greatly appreciated

    iOS: Understanding group messaging
    http://support.apple.com/kb/HT3529
    http://support.apple.com/kb/ts2755

  • JMS consumer is not receiving any messages. am i missing something ?

    Hi bellow is the consumer code, my consumer is not receiving any messages even though there are messages in the queue. I have tried to debug the code. but the consumer is not calling the onMessage() method even though there are messages in the queue. Please guide me on the same. if i am missing something.
    package org.icrm.cons;
    import javax.jms.Connection;
    import javax.jms.Destination;
    import javax.jms.ExceptionListener;
    import javax.jms.JMSException;
    import javax.jms.Message;
    import javax.jms.MessageConsumer;
    import javax.jms.MessageListener;
    import javax.jms.Session;
    import javax.jms.TextMessage;
    import org.apache.activemq.ActiveMQConnectionFactory;
    public class JConsumer implements ExceptionListener,MessageListener{
         public static void main(String[] args){
              JConsumer consumer = new JConsumer();
              System.out.println("here 1");
              consumer.consumeMessage("MyQueue");
         public void consumeMessage(String queueName){
              try{
                   System.out.println("here 2");
                   ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://localhost:61616");
                   Connection connection = connectionFactory.createConnection();
                   connection.start();
                   connection.setExceptionListener(this);
                   Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
                   Destination destination = session.createQueue(queueName);
                   MessageConsumer consumer = session.createConsumer(destination);
                   //ASync
                   consumer.setMessageListener(this);
                   //Sync
                   /*Message message = consumer.receive(1000);
                   TextMessage textMessage = (TextMessage)message;
                   String text = textMessage.getText();
                   System.out.println("Received : " + text);
                   consumer.close();
                   session.close();
                   connection.close();
              }catch(Exception e){
                   System.out.println("Caught: " + e);
                   e.printStackTrace();
         public void onException(JMSException arg0) {
              System.out.println("JMS Exception occured.  Shutting down client.");
         public void onMessage(Message message) {
              try{
                   TextMessage textMessage = (TextMessage)message;
                   String text = textMessage.getText();
                   System.out.println("Received: " + text);
              }catch(JMSException e){
                   e.printStackTrace();
    }

    Hey,
    I commented the following line of code. and i got all the messages.
    //consumer.close();
    //session.close();
    //connection.close();but then when should i close the consumer, session and connection object ???

  • Why is my iphone 5c not receiving text messages?

    My iphone 5c is not receiving text messages?  What should I check?

    Hi, sock888. 
    Thank you for visiting Apple Support Communities. 
    Here is an article that I would recommend going through when experiencing issues with Messages. 
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Cheers,
    Jason H.

  • I am having trouble sending text messages. They aren't always going through. And sometimes I'm not receiving text messages.  I also have voicemails that I didn't receive until late at night that were left early in the day. I need to resolve this issue ASA

    I am having trouble sending text messages. They aren't always going through. And sometimes I'm not receiving text messages.  I also have voicemails that I didn't receive until late at night that were left early in the day. I need to resolve this issue ASAP!

    julie@remax,
    I know that this would concern me just the same and we want to make sure that your device is connected and receiving these notifications when available. How long have you been having this issue? Are you receiving a specific error message when sending a message? Are you aware if this happens in one location specifically or everywhere you go? Does the issue with messaging occur with all numbers? Share some details, so that we may assist.
    AdamG_VZW
    Follow us on Twitter @VZWSupport

  • HT4623 I have an IPhone 5, I can receive instant messages but when I reply to the messages specifically to my friends samsung galaxy running droid he will not receive my message. Why not?

    I have an IPhone 5, I can receive instant messages but when I reply to the messages specifically to my friends samsung galaxy running droid he will not receive my message. Anybody having a simuler issue?

    Do you have a texting plan?

  • I asked reset secret question, but I did not receive a message on my email

    I asked reset secret question, but I did not receive a message on my email
    what can i do right now??

    If the email hasn't arrived after a few hours and isn't in a spam filter, you need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (108393)

  • My brother gave me his iphone and i activated it with my phone number but i can not receive any message and i notice that  on iMessage stills appears his phone number, what do i have to do?

    my brother gave me his iphone and i activated it with my phone number but i can not receive any message and i notice that  on iMessage stills appears his phone number, what do i have to do?

    Launch iTunes on your computer, plug the phone in & on the "Summary Pane", select "Restore". This will restore the phone to factory settings with all of your son's stuff gone. You can now use it as an iPod touch. To do this REQUIRES the deactivated sim card be still installed in the phone.

  • Mail will not receive any messages

    As of 9:30 Thursday morning, Mail will not receive any messages. I can still compose and send but incoming messages just sit on Google's server (where I've been reading and replying). Nothing was changed, Connection Doctor shows everything to be fine, I've checked and reentered passwords, quit Mail, restarted the computer, etc.
    Suggestions?

    I tried that again, including another shut-down, and based on another link, changingthe"check for new mail" preference from "automatically" to "every 5 minutes."
    No change.

Maybe you are looking for

  • Auto triggering of smartform

    Hi, I have created a smartform alongwith its driver program. I have attached it to the output type WA03. Whenever I create a delivery which automatically confirms a TO and creates a material document, the smartform should have got automatically trigg

  • Moving ActionListener code to another class

    Hi, I got a simple GUI program like the following: import javax.swing.*; import java.awt.*; import java.awt.event.*; public class GUI extends JFrame implements ActionListener private JLabel oneLabel; private JButton hitButton; public GUI() Container

  • Error on ipad this is not a test user account, create an account in sandbox means

    Every time I try to use the apple store, I get the message : this is not a test user account, create an account in sandbox means Although my ipad2 is orignail and not cracked or jail broken

  • Imovie output using quicktime problem

    I need to place a .mov file that I created with imovie08 on a web page. I exported the move using quicktime. After posting on the webpage all of my PC friends couldn't view the movie. Some could hear the sound but not view the video. I told them that

  • How to get the count monthly wise

    Hi All I have lot of order dispatched in a year 2010, how to get the moth wise total. For example jan 1000 orders ,feb 2500 orders. Thanks & Regards Srikkanth.M