Skip to content

faroe228/camel-stomp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Amazingly enough, there was no stomp camel endpoint. Until now :)


== USAGE
A sample URI is:
"stomp://[host]:[port]/[destination]"


One can also use:
"stomp:[destination]"

when having a separate a Spring 'bean' definition:

<bean id="stomp" class="org.apache.camel.component.stomp.StompComponent">
        <property name="config">
            <bean class="org.apache.camel.component.stomp.StompConfiguration">
                <property name="hostname" value="${storage.stomp.hostname}"/>
                <property name="port" value="${storage.stomp.port}"/>
                <property name="username" value="${storage.stomp.username}"/>
                <property name="password" value="${storage.stomp.password}"/>
            </bean>
        </property>
    </bean>


== TODO
Implement stomp consumer



== References
This project is a wrapper for the following java stomp library:
http://trac.germane-software.com/Gozirra

About

Camel stomp component

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%