Questions tagged [message]

For questions regarding Facebook messages, JavaScript messages, mobile messages (Android, iOS, windows-phone), etc. Not for use for error messages. Include additional tags to indicate messaging platform, programming language, etc.

Questions about sending and receiving messages of any kind. As this tag is vague, use a more specific tag instead if possible. For example, most questions about Facebook messages should have the tag for the programming language, , and possibly a tag for the API or framework you're using. If your question is about a , an , a window, a , an , … then use the appropriate tag instead. Do not use this tag (or any tag) to indicate that you tried something and got an error message.

4541 questions
1
vote
1 answer

How to determine type of message in runtime?

Currently I'm writing the message handling system for my game server. I'm using double-dispatch design pattern to pick the needed handler according to message id, which retrieved from a data buffer. But I ran into a following problem: I need to…
Alex Kuzub
  • 13
  • 2
1
vote
2 answers

Show message in Alert Dialog

Trying to dynamically change the message of an AlertDialog. For some reason I get a blank dialog box with no message. @Override protected Dialog onCreateDialog(int dialogId, Bundle args) { switch (dialogId) { case ABOUT_DIALOG: …
siamii
  • 23,374
  • 28
  • 93
  • 143
1
vote
1 answer

Can I take a message using runtime.onMessage within a function that only executed when I click a button?

I'm brand new to js and making a chrome extension and I want to take a message from the background.js and use it in the popup.js after I click a button. popup.js window.onload=function(){ document.getElementById("BTC").addEventListener("click",…
Colin
  • 13
  • 4
1
vote
2 answers

Kafka Message migration

We are currently operating on Apache Kafka 0.10.1.1. We are migrating to Confluent Platform 5.X. The New cluster is setup completely on different set of physical nodes. While we are already working on upgrading the API(s), our application uses…
Divs
  • 1,578
  • 2
  • 24
  • 51
1
vote
1 answer

Find out Kafka Message version

the default server.properties on 0.10.1.1 Broker doesn't define the log.message.format.version explicitly. Even though it is supposed to be same Kafka API Version; is there a way to find it out?
Divs
  • 1,578
  • 2
  • 24
  • 51
1
vote
1 answer

Calculating Time Difference Between Messages in a Conversation using dplyr

I have some data that contains messages in a conversation. I need to calculate the response time for someone to message back. I have unique user ID's for both participants, however, when I use the code below, it only calculates the difference for…
1
vote
1 answer

Rails 3 private message plugin

Maybe someone knows a good plugin for private messages? I'm using Rails 3 and Devise as a plug-in for authorization. On github, I found only this plugin, but after installing I get the message: undefined local variable or method…
xxxxixxxx
  • 53
  • 1
  • 3
1
vote
2 answers

Angular / Chrome extension - Update view when callback received

I'm developing an extension using angular. When the controller is load I need to charge information from the local storage : var app = angular.module("Logins"); app.controller("LoginsCtrl", function($scope) { …
1
vote
1 answer

How to send this kind of messages?

I want my bot to send messages in such bubbles, but I do not know the code.
WebCoder
  • 23
  • 7
1
vote
1 answer

applescript send SMS message

I am trying to send NEW messages using applescript through the macos messages app. on run {targetBuddyPhone, targetMessage} tell application "Messages" send targetMessage to buddy targetBuddyPhone of service "SMS" end tell end…
jon
  • 1,429
  • 1
  • 23
  • 40
1
vote
0 answers

C# - Discord Bot inconsistently sending private messages

I have a discord bot which sends private messages. Once I tried doing this command on my main discord account and it worked, and on my other account, it didn't work. I tried doing this again on my main account (I restarted the bot beforehand) and it…
1
vote
1 answer

Spring integration message loss scenario

Summary - Message loss during systematic shutdown of application. I have a application written in spring integration and I am consuming requests from external systems using 'jms:message-driven-channel-adapter'. This is the configuration of the…
Vaibs
  • 51
  • 5
1
vote
1 answer

Making a customized error message in yacc tool

Hi I just started working on lex and yacc tools. I realized that yyerror recieves only the string "syntax error" from yacc. I was wondering if I can customize this string. Oh and also can I differentiate different types of errors? (tyring to have…
jin
  • 31
  • 2
1
vote
0 answers

Get SOAP Message dynamically from asmx/wsdl

How can I get or create a SOAP Message dynamically if I am able to generate the proxy for the passed service url in c#? I have a webpage with a textbox, user enters am asmx service url. I have a code that dynamically generates the proxy. Used the…
Sri Reddy
  • 6,832
  • 20
  • 70
  • 112
1
vote
1 answer

Messenger bot comment to message using node and private replies - read_page_mailboxes unobtainable

I have a messenger bot created in node. A user comments on the page and this kicks off a message sequence. It has previously been working however now I receive an error "The page does not have read_page_mailboxes or pages_messaging permission." I…
1 2 3
99
100