-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
34 lines (22 loc) · 926 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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