|
So message_set is deprecated in favor of the new messages framework. The good old message_set allowed me to leave messages to offline users (eg, when I do some stuff in a cron job I may want to notify some user about that). Now took a glance at the new...
Started by shanyu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I see nothing in the new messaging storage that stashes ....
But all is not lost.
The functionality of adding messages to a user database or file storage) of messages.
It doesn't look like you're missing anything.
To the session.
|
|
For error messages, validation faults etc you have
ModelState.AddErrorMessage("Fool!");
But, where do you put success responses like "You successfully transfered alot of money to your ex." + "Your balance is now zero". I still want to set it at the controller...
Started by Martin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Public ActionResult MyAction(MyEntity model) { //Here would be some validation, which returns with ModelState errors //Now set the validity of the modelstate as the IsValid property... .
I suppose you could check the modelstate and set a variable in your model.. .
|
|
I have a .NET service that uses the ActiveMQ client. I have implemented a MessageListener with a transacted connection to consume the messages.
Occasionally, I get messages in a different order in which they were put onto the queue.
Was it wrong to use...
Started by Rick on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Sending the consumer....
And it is processing messages out of order, then you have either found a bug or the messages aren't enqueued messages in the same order in which they are enqueued, and they guarantee message delivery.
|
Ask your Facebook Friends
|
The messages are successfully copied to the other folder, but show up as unread.
"Mark as read" does show up as a filter option in the action list when creating a rule that applies to incoming messages, but I don't see it when creating a rule applying...
Started by arathorn on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Update:
Although this isn't technically an "outgoing" rule....
You may need to scroll down a bit to find the right checkbox .
Build your rule with the rules wizard (tools --> rules and alerts) the third screen allows you to mark a message as read.
|
|
How do you control the lifetime of a message in a message queue? What is the default lifetime? I tried running message queues locally and I find that the messages disappear on a system restart. Doesn't this defeat the purpose of the message queue in building...
Started by kjayakum on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There is express message.
-Adam
There are two kind of non-transactional messages.
|
|
I'm trying to display a bit of html in a message that's being displayed via the new Django messages framework. Specifically, I'm doing this via the ModelAdmin.message_user method, which is just a thin wrapper around messages():
def message_user(self, ...
Started by jsdalton on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Not sure if this applies to the messages framework, but using allow_tags.
In an admin listing.
|
|
I have a Java stack (Tomcat, etc) and I need to send messages from a mainframe running COBOL to the Java end. Any of the open source queues available can do that?
Started by GClaramunt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There are clients....
Most supported) method for doing this.
Websphere MQ is going to be the best (i.e.
Try starting with this DeveloperWorks site.
On the IBM side you need to be able to talk to MQSeries .
Sure, Java Messaging interoperates with IBM.
|
|
It seems that MSMQ doesn't use any Database management system to manage messages. How does MSMQ manage messages? Does it store the messages in flat file?
I'm trying to implement a messages management system. It's my exercise.
Answer Snippets (Read the full thread at stackoverflow):
If you want to implement your own queueing, I suggest you take a look at Ayende's blog post on... .
If you wanna manage them use the System.Messaging API
Good luck
MSMQ uses flat files located in %windir%\system32\msmq .
It stores them as files on the disk.
|
|
Of all the things I've lost, I miss my ads the most. Right!
Remove this ad Since it has hit 69 pages, the first thread has been closed. (Not that he'll ever have a chance to catch up on all the posts/notes!)
So here's your new thread for posting all your...
Started by bluesbaby74 on
, 21 posts
by 19 people.
Answer Snippets (Read the full thread at yuku):
If....
I'm sending a package to you and I hope you receive it .
I'll play.
-- Cat
www.ruthgerson.com
all your bygones seem nickel and dime Ok.
Like a garden gnome."
Hope you're having a good time with DMB .
|
|
I'm looking for a mobile phone (app) that, upon receiving a text message, will automatically read that message out loud using text-to-voice technology (e.g. what Mac OS has).
Does something like that exist?
It's for an elderly (visually impaired) user...
Started by Aaron F. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
If this is turned on, it can read SMSes out loud - can't remember if it will do it immediately on receiving the text, but if you turn on the option to have the... .
The iPhone, as of the 3.0 firmware, has reasonably good text-to-speech embedded into the OS .
|