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

How can I stop my application from receiving a certain "message"?

POSSIBLE SOLUTION FOUND! I believe I have found a solution! I will be continuing testing to make sure it DOES in fact work, but I'm hopeful :) I have detailed how I found the solution in EDIT THREE of the question! For anyone wishing to know the…
user1167662
  • 1,245
  • 3
  • 16
  • 25
27
votes
3 answers

First parameter name in objective c?

I have a method: - (void)pan:(double)lat longitude: (double) lon{...} When I call it Xcode shows to like this: [self pan:(double) longitude:(double)] Isn't it possible to set first parameter somehow, like the second (longitude), that Xcode could…
Tom
  • 3,899
  • 22
  • 78
  • 137
27
votes
3 answers

Sending message via terminal to another logged on user BASH programming

Do you have suggestions how to write a script which detects whether the user specified at the first parameter of the script is logged? If you are logged on, offer him the opportunity to write a message to the user. Subsequently, as the message sent…
user3012382
  • 279
  • 1
  • 3
  • 7
27
votes
9 answers

Jersey: A message body writer for Java Class and MIME mediatype application/json was not found

after trying to figure out what's my problem I finally decided to ask you how to solve my problem. I've seen different people with the same problem and I tried all the things they were adviced to do but nothing helped with my issue. So basically I'm…
dhartwich
  • 398
  • 2
  • 6
  • 16
26
votes
2 answers

Difference between Pending Messages and Enqueue Counter in Active MQ?

In the Active MQ Admin console of what is the difference between "Number Of Pending Messages" and "Messages Enqueued"? When a Message is placed on to the queue, should both these values should match?
Srinivas
  • 1,383
  • 5
  • 20
  • 28
26
votes
3 answers

In RabbitMQ which is more expensive, multiple queues per exchange, or multiple exchanges and less queues per each?

So we decided to go with RabbitMQ as a message/event bus in our migration to micro-services architecture, but we couldn't find a definite answer on what is the best way of putting our queues, we have two options to go with: One main exchange which…
bingorabbit
  • 665
  • 5
  • 11
26
votes
4 answers

How to increase message size in grpc using python

I am using grpc for message passing and am testing a simple server and client. When my message size goes over the limit, I get this error. grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated with (StatusCode.INVALID_ARGUMENT, Received…
Dumbo
  • 1,068
  • 2
  • 12
  • 21
26
votes
6 answers

How to send an imessage text with applescript, only in provided service?

Can somebody show me how to send a message directly to the user of iMessage via Messages app? tell application "Messages" if service type of service of buddy whose name is ("Name here" is "iMessage") then set x to 1 if service type of…
cre8eve
  • 371
  • 1
  • 6
  • 11
25
votes
6 answers

Django: Remove message before they are displayed

I know this question sounds weird, but please, let me explain myself. I'm using a decorator to make a message persist until the user actually dismisses it (like the behavior of stack overflow's messages). The problem is, as a result of this, the…
IntrepidDude
  • 1,053
  • 3
  • 12
  • 21
25
votes
7 answers

Python PyQt5: How to show an error message with PyQt5

In normal Python (3.x) we always use showerror() from the tkinter module to display an error message but what should I do in PyQt5 to display exactly the same message type as well?
Ramón Wilhelm
  • 967
  • 2
  • 18
  • 39
25
votes
3 answers

How can I write to standard output in Emacs

I am trying to debug an Emacs program performance wise. In particular, I suffer an extremely long startup time (~5' compared to ~1' for a bare Emacs) on a remote connection via WLAN, cellphone etc. In this context, any message written is no help,…
false
  • 10,264
  • 13
  • 101
  • 209
25
votes
7 answers

How to build a push system in django?

I need to build a push system in django, basicly its function is to push messages from server to browser. As nodejs cannot be used, i prefer websocket or orbited, but i've no idea how to implement any of these two in django. pls recommend a method…
Stan666
  • 424
  • 2
  • 5
  • 12
25
votes
2 answers

Git: Push to a remote repository with a message

My company is incorporating iRise for prototyping and it lacks any kind of versioning (unless making copies of your files with different file names = versioning). Anyway, we're using Git for our version control and since the typical iRise user here…
PruitIgoe
  • 6,166
  • 16
  • 70
  • 137
24
votes
2 answers

How to change default p:dataTable emptyMessage message

I am using PrimeFaces' dataTable. I get "No records found." when table has no element. I want to change this message to something like "No result" and make this message i18n type. I don't want to use
ahmet
  • 1,085
  • 2
  • 16
  • 32
23
votes
6 answers

How many database columns associated with a SMS in android?

I want to read all the messages and their respective details from my phone. For this I am using the Uri like this: Uri sms = Uri.parse("content://sms/"); But I don't know how many columns in database which are associated with this uri. I want to…
Vikas Patidar
  • 42,865
  • 22
  • 93
  • 106