Hello,

Im tryin 2 send a message using the following code(given in GAE
tutorial) to a gmail a/c...

will i be able 2 view the message in the gtalk app usin the code ????

but im not recievin as the

   if (xmpp.getPresence(jid).isAvailable())

is returnin a false..

please help me figure out what to do...


import com.google.appengine.api.xmpp.JID;
import com.google.appengine.api.xmpp.Message;
import com.google.appengine.api.xmpp.MessageBuilder;
import com.google.appengine.api.xmpp.SendResponse;
import com.google.appengine.api.xmpp.XMPPService;
import com.google.appengine.api.xmpp.XMPPServiceFactory;

// ...
        JID jid = new JID("exam...@gmail.com");
        String msgBody = "Someone has sent you a gift on Example.com.
To view: http://example.com/gifts/";;
        Message msg = new MessageBuilder()
            .withRecipientJids(jid)
            .withBody(msgBody)
            .build();

        boolean messageSent = false;
        XMPPService xmpp = XMPPServiceFactory.getXMPPService();
        if (xmpp.getPresence(jid).isAvailable()) {
            SendResponse status = xmpp.sendMessage(msg);
            messageSent = (status.getStatusMap().get(jid) ==
SendResponse.Status.SUCCESS);
        }

        if (!messageSent) {
            // Send an email message instead...
        }


...

Thanks and regards,
Shoubhik.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to