--%>

C-C++ interfaces into WLS JMS

Are there C/C++ interfaces into WLS JMS?

E

Expert

Verified

No, it is not supported. Write your own interfaces by using JNI. Setup a Servlet which your C/C++ client calls to generate a JMS message. You have to spawn multiple threads in C++ and employ multiple posts to pass messages via http.

   Related Questions in Programming Languages

  • Q : Explain the good illustrations of

    Explain the good illustrations of closing XHTML elements.

  • Q : What are the valid and invalid XHTML

    What are the valid and invalid XHTML element names?

  • Q : Define the term Sound card Define the

    Define the term Sound card: It is a hardware device employed to turn digital data into sound.

  • Q : Define Passing by value Passing by

    Passing by value: In this process separate memory builds for formal arguments and when any modifications done on formal variables, it will not influence the real variables. Therefore actual variables are preserved in this situation.

  • Q : What is an Interrupt Interrupt : This

    Interrupt: This is an asynchronous message sent to a process or thread which interrupts what it is at present doing. This generally outcomes in an InterruptedException object being received by an interrupted thread. Waiting for an int

  • Q : Explain While loop While loop: It is

    While loop: It is one of Java's three control structures employed for looping. The other two are: do loop and for loop. The while loop comprises of a Boolean expression and a loop body. The condition is tested prior to the loop body is entered for the

  • Q : Meaning of active and passive objects

    Illustrate in brief the meaning of active and passive objects?

  • Q : Special set of tags in PHP Normal 0

    Normal 0 false false

  • Q : What is Primitive Type Casting

    Primitive Type Casting: C/C++ allows you to cast between totally unrelated types. This can be problematic for model checking. Avoid type casting between unrelated types and in particular primitive types. For example,

    Q : Explain Two dimensional array Two

    Two dimensional array: A two dimensional array is a continuous memory location having similar kind of data arranged in row and column format (such as a matrix structure). D