Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1025353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:54:55+00:00 2026-05-16T11:54:55+00:00

I have a doubt regarding .net messaging & its compatibility with other open protocols

  • 0

I have a doubt regarding .net messaging & its compatibility with other open protocols out there. I would like to know if .net messaging API capable of working with STOMP protocol? How do i make use of this protocol? is there any specific library out there I need to use?

thanks for sharing your experience and ideas.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T11:54:56+00:00Added an answer on May 16, 2026 at 11:54 am

    At the root of it, STOMP appears to be TCP-based messaging with its set of commands and control characters.

    There’s nothing in .NET that should give you any doubts about not being able to build an application or library using this protocol. If you were building a .NET STOMP library from scratch, you’d have to leverage System.Net.Sockets. Here’s some sample C# code.

    Byte[] bytesSent = Encoding.ASCII.GetBytes(someStringMessage);
    
    // Create a socket connection with the specified server and port.
    Socket s = ConnectSocket("192.168.0.101", somePort);
    
    // If the socket could not get a connection, then return false.
    if (s == null)
        return false;
    
    // Send message to the destination.
    s.Send(bytesSent, bytesSent.Length, 0);
    
    // Receive the response back
    int bytes = 0;
    s.ReceiveTimeout = 3000;
    bytes = s.Receive(bytesReceived, bytesReceived.Length, 0);
    string page = Encoding.ASCII.GetString(bytesReceived, 0, bytes);
    s.Close();
    

    What doubts did you have? Perhaps edit your question with any concerns?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one doubt regarding casting. public void Test(out T a, out T b)
I have a doubt regarding unions. Suppose there is a union defined as union
I have one doubt regarding audio processing for noise reduction. Is there any free
I have a doubt regarding HttpServlet class is an abstract class even though there
I am reading linux device driver book of rubini,corbet and hartmen.I have doubt regarding
I have a doubt regarding Java Synchronization . I want to know if I
I have a doubt regarding the backlog value in listen system call. From man
I have the doubt regarding when to use the Dispatcher.Invoke to update something on
I have a doubt regarding how to get the pkcs11 driver for interacting with
I have a very basic doubt regarding the method that gets executed when app

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.