Click here to Skip to main content
15,885,435 members
Everything / General Programming / Messaging

Messaging

messaging

Great Reads

by Lars Paisley
A discussion of routing principles in ESBs
by Mark Heath
How to generate and use Shared Access Signatures for Azure Service Bus Queues
by Lars Paisley
How an ESB may efficiently support business processes
by Sacha Barber
A look at the crossbar.io (Autobahn messaging platform)

Latest Articles

by Lars Paisley
How an ESB may efficiently support business processes
by Lars Paisley
And why an ESB should not have API contracts!
by honey the codewitch
Take a page from .NET and enjoy an easy way to safely pass information between threads on an ESP32
by honey the codewitch
Diving into some of the core plumbing behind the Windows operating system

All Articles

Sort by Score

Messaging 

1 Aug 2018 by Lars Paisley
A discussion of routing principles in ESBs
21 Jan 2016 by Mark Heath
How to generate and use Shared Access Signatures for Azure Service Bus Queues
3 Oct 2023 by Lars Paisley
How an ESB may efficiently support business processes
21 Jul 2016 by Bernhard Hiller
Quote:and i need to pass body as parameter to another methodThat other method needs to be generic, too; or at least accept a type compatible with T. Otherwise, the encapsulation in the generic class does not make sense.
15 Apr 2017 by sajidur rahman
You can try following method. I have tested with android . static void SendMessage() { string serverKey = "Your Server key"; try { var result = "-1"; var webAddr = "https://fcm.googleapis.com/fcm/send"; ...
22 Jul 2016 by Philippe Mori
You should probably add the following function to your Envelope class:public abstract Type GetBodyType();And then implement it in the derived class Envelope:return typeof(T);Or maybe you need to reconsider the whole design... Are you trying to convert a pattern from another language?
17 Jan 2017 by Ahmedfci_90
I found the error. As a back-end developer I worked on C# part only. There is one more step to be done from mobile application side. Mobile app should allow receiving messages from list of Sender Ids so the one that I use in my C# code must be allowed from mobile app side. Once I did that it worked
9 Dec 2015 by OmniSource
Hello Experts,let me elaborate setup before i come to my problem.I have a Azure Topic in place: Topic "MyTopic"and 2 subscriptions created to it with different filters:1) Subscription-A with filter {MessageTitle = 'Cool'}2) Subscription-B with filter {MessageTitle =...
18 Feb 2016 by JDevZA
Hi All I am trying to connect to my Websphere MQ server but it keeps giving me 2035.I know its an auth issue but there is no security setup for the queue and i am struggling to understand why its rejecting the request.my code:public static void Start() { ...
26 Apr 2016 by JT1992
I believe this is what you are looking for. [^]If not i believe this seems to be it.
16 Jun 2017 by komakommander
Hi everyone,i am banging my head on the following task:I have an AzureFunction that uses a ServiceBus-Trigger like so:{ "bindings": [ { "name": "myQueueItem", "type": "serviceBusTrigger", "direction": "in", "connection": "MyConnection", ...
22 Jul 2016 by Estevão C Souza
Hello! I have a scenario as follows:public class Envelope{public string MessageId {get;}public abstract Stream GetStream() }public class Envelope : Envelope{public T Body {get;}}I have another 2 classes called MessageBus and MessageSender that...
30 Apr 2017 by Member 11247684
I draw the a topology where each node is an object of class SensorNode, the blue links indicate the links between each node with its neighbors where the circles around the nodes represent the transmission range for each node. The sink also is an object of class Sink. I need to instantiate...
30 Apr 2017 by FranzBe
What NotPolitcallyCorrect wrote is right. Perhaps the following might give you some starting point. void Main() { var s1 = new SensorNode(1, "don't care", 0, 0); var s2 = new SensorNode(2, "don't care", 0, 0); var sink = new Sink("don't care", 3, 0, 0); sink.AddSensor(s1);...
14 Apr 2018 by Dmitry Shevchuk
I have app for 3 platforms: UWP, iOS and Android, Backend - ASP.Core 2.0. Generally speaking, the application allows to manage some "events": users can create some events, invite to events etc. I am going to add a possibility for users to comment events in real-time. What is the best way to...
8 Jan 2019 by TheBigBearNow
Hello all, I have a website with a form that I want a user to fill out then if it is valid I have the button submit and I want it to email me. The message. If success full I want a message to popup on screen saying success I am using bootstrap 4 ...
8 Jan 2019 by TheBigBearNow
I added this and was able to debug all the rest of it to make it work properly. This was added to the .ajax() under success: error: function (errorThrown) { console.log(errorThrown); }
17 Mar 2021 by Richard MacCutchan
xml/json message processor - Google Search[^]
2 Sep 2022 by Gcobani Mkontwana
I want to do the following logic on my WPF Desktop application that will; This is the TCP server program that echoes your sent data back to you. Start echotool as follows: echotool /p tcp /s 12345 It must first have two buttons one...
22 Feb 2023 by Richard Deeming
One of your script files is designed to be used as a Javascript module: JavaScript modules - JavaScript | MDN[^] But you are loading it as a regular script, which will not work. There's no sign of an import statement in the script block you've...
24 Apr 2017 by Sacha Barber
A look at the crossbar.io (Autobahn messaging platform)
25 Feb 2021 by honey the codewitch
Take a page from .NET and enjoy an easy way to safely pass information between threads on an ESP32
8 Oct 2015 by Sacha Barber
Getting .NET code to talk to Scala code and vice versa using RabbitMQ
22 Jul 2020 by honey the codewitch
Diving into some of the core plumbing behind the Windows operating system
15 Jul 2020 by honey the codewitch
How to implement a complicated multithreaded message passing scenario
21 May 2021 by Lars Paisley
And why an ESB should not have API contracts!
21 Jul 2016 by Rob Philpott
What is the benefit of generics here? These can be overused and then you get into situations like this. Can you not just stick the body in the non-generic Envelope as type object?Moreover, presuming some sort of serialization will be required in order to dispatch this thing on a message bus,...
21 Jul 2016 by ArunRajendra
Check this link. Hope it gives you a clue.c# - How to get the type of T from a generic List - Stack Overflow[^]
1 Apr 2017 by Graeme_Grant
Have you looked at SignalR | The ASP.NET Site[^]? There are many examples of Asp.Net chat engines using SignalR here on Code Project: SignalR articles on Code Project[^]
25 Sep 2017 by Ahmedfci_90
I am trying to use FCM for pushing notifications to Android device but it seems that I am missing something. These are steps that I've followed 1- Using normal google account, I created new project in https://console.firebase.google.com 2- From Settings -> Cloud Messaging tab, I got Server key...
26 Apr 2016 by Sajjad Rajper
Hello friends ,I am trying to send text messages from my php application to mobile phone. Can someone guide me about this.What I have tried:I designed an application in php and now I need some guidance that how to send messages to mobile from php application.
9 Aug 2017 by Member 12172000
public static String SendNotificationFromFirebaseCloud() { var result = "-1"; var webAddr = "https://fcm.googleapis.com/fcm/send"; var httpWebRequest = (HttpWebRequest)WebRequest.Create(webAddr); httpWebRequest.ContentType =...
1 Apr 2017 by Hassaan_Malik
Hye.I have made a web application using asp.net web forms. I have also managed users. Mean different accounts for different users. Now i want to make a instant messenger for chit chat (group chat and individual chat as well). How i can implement that functionality in my asp.net webform...
16 Jun 2017 by Gurdeep
Your problem clearly lies in the difference between these lines: var content = Encoding.UTF8.GetBytes("Some string"); ByteArrayContent postContent = new ByteArrayContent(Encoding.UTF8.GetBytes(message)); Why use the ByteArrayContent?
7 Sep 2017 by Ashish K Kapoor
public static String SendNotificationFromFirebaseCloud() { var result = "-1"; var webAddr = "https://fcm.googleapis.com/fcm/send"; var httpWebRequest = (HttpWebRequest)WebRequest.Create(webAddr); httpWebRequest.ContentType =...
25 Sep 2017 by Ashish K Kapoor
Can you please share your code or mail me. httpWebRequest.Headers.Add(HttpRequestHeader.Authorization,"key=Your Key"); you have to write key=xxxxxxxx, where xxxxxxxx is your server key.
22 Feb 2023 by Gcobani Mkontwana
Hi Team I am using jquery messaging and they do not work as expected. Meaning when a user before insert any value from the contact form. it must check it has all the required fields. Currently from the front end it does that but there are no...