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
15
votes
2 answers

Message delivery sequence in akka actors

I'm pretty new to Akka and couldn't find the answer in the reference manual. Suppose we have remote actors distributed in the cluster of 3 machines (A, B, C), where one actor lives on each machine and others have actorRef to 2 others, i.e.: Machine…
Grozz
  • 8,317
  • 4
  • 38
  • 53
15
votes
3 answers

Is there any way to incrementally build commit messages in git?

I'm wondering if it is possible to build git commit messages incrementally, documenting what I'm doing as I make code changes: Check out and begin work Enter commit message title (i.e. summary) Make a code change Update my commit message to…
mtbkrdave
  • 2,900
  • 3
  • 23
  • 24
15
votes
4 answers

Xcode 8 Messages Template Application: Error on iOS Simulator

When I create a new project using the "Messages Application" template of Xcode 8 and try to run it on iOS simulator, I get the following error: Title The request to open com.myDomain.MyApp failed. Details The request was denied by service…
Totoro
  • 3,398
  • 1
  • 24
  • 39
15
votes
2 answers

Add advanced features to a tkinter Text widget

I am working on a simple messaging system, and need to add the following to a Tkinter text widget: Spell Check Option To Change Font ( on selected text ) Option to change font color ( on selected text ) Option to Change Font Size ( on selected…
Zac Brown
  • 5,905
  • 19
  • 59
  • 107
15
votes
2 answers

Django how to turn off warning

I have a special user model, with own auth backend. It's good that Django take care about me and send notifications, but how i can turn off some warnings, like this: WARNINGS: profile.User: (auth.W004) 'User.email' is named as the 'USERNAME_FIELD',…
Arti
  • 7,356
  • 12
  • 57
  • 122
15
votes
2 answers

c#. MSMQ .The max size of a single message

Using msmq I want to send a message (near 1 GB). I want to send array of bytes. But I can send only 4 MB. How can I get around this limitation ?
Zhenia
  • 3,939
  • 3
  • 15
  • 15
15
votes
5 answers

GCM msg delivery times are WILDLY erratic

I've setup an Android app with GCM support, and have a little test app to send a msg to the app. When I run the App in the emulator, I can see (via logging msgs) that it registers with GCM and gets a Token. Then when I put the token in my test app…
CasaDelGato
  • 1,263
  • 1
  • 12
  • 29
15
votes
5 answers

Send/Receive message To/From two running application

I have two applications called SENDER and RECEIVER. RECEIVER will be launched by SENDER with the System.Diagnostics.Process.Start method RECEIVER will be launched in hidden mode so it does not have a MainWindowHandle. Then we could use…
Hamid
  • 817
  • 1
  • 13
  • 29
15
votes
7 answers

Writing a stream protocol: Message size field or Message delimiter?

I am about to write a message protocol going over a TCP stream. The receiver needs to know where the message boundaries are. I can either send 1) fixed length messages, 2) size fields so the receiver knows how big the message is, or 3) a unique…
jbu
  • 15,831
  • 29
  • 82
  • 105
14
votes
1 answer

Changing Progress Dialog Message While Running

I've got a fairly simple issue I'm not sure how to resolve. I want to change the message text of a Progress Dialog while it's running and showing. An example of this would be something like a "time remaining" counter that would count down while the…
Brian
  • 7,955
  • 16
  • 66
  • 107
14
votes
6 answers

Redirect to another page with a message

I want to redirect to a page and then display a message: What I have is: //succes $message = 'succes'; redirect_to('index.php'); On the index page I have: if (!empty($message)) { echo '

'.$message.'

'; } The…
user1386906
  • 1,161
  • 6
  • 26
  • 53
13
votes
2 answers

How to add a touchable Url link to a url in a UIAlertView's message?

I want to add a clickable link of an url into UIAlertView's message. Such that when user sees the alert view, they can can touch on link inside message. Alternatively they can go next by clicking on the OK button. Is possible to do it? How?
Jayyrus
  • 12,961
  • 41
  • 132
  • 214
13
votes
4 answers

How to determine the message status (read/unread) in chat?

How to determine the message status (read/unread). Chat is realized with the XMPP protocol.
enq
  • 131
  • 1
  • 3
13
votes
3 answers

ZeroMQ / ØMQ / 0MQ how to get started?

I am trying to use ZeroMQ / ØMQ / 0MQ (which ever you prefer) on Windows using C# Binding. Is there any beginner materials out there? Do I need to register ZeroMQ DLL on Windows or something in order to run the C# Binding samples (local_lat /…
Jeff
  • 13,079
  • 23
  • 71
  • 102
13
votes
4 answers

Django How to implement alert()(popup message) after complete method in view

I would like to have an alert() message (like in javascript) after method in view.py is complete My method is def change_password(request): dictData = getInitialVariable(request) in_username = request.POST['txt_username'] in_password =…
Leaf Eyes Sdimh
  • 139
  • 1
  • 1
  • 8