Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/modules/ROOT/attachments/examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@
"description": "Shows how to secure platform HTTP with Keycloak",
"link": "https://github.com/apache/camel-quarkus-examples/tree/main/platform-http-security-keycloak"
},
{
"title": "REST to SOAP with Keycloak and JMS",
"description": "Demonstrates REST-to-SOAP synchronous bridging with Keycloak security and asynchronous JMS topic events",
"link": "https://github.com/apache/camel-quarkus-examples/tree/main/rest-keycloak-soap-jms"
},
{
"title": "REST with Jackson",
"description": "Demonstrates how to create a REST service using the Camel REST DSL and Jackson.",
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
<module>platform-http-security-keycloak</module>
<module>quarkus-rest-json</module>
<module>rest-json</module>
<module>rest-keycloak-soap-jms</module>
<module>saga</module>
<module>spring-redis</module>
<module>timer-log</module>
Expand Down
18 changes: 18 additions & 0 deletions rest-keycloak-soap-jms/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
target/
*.log
.DS_Store
.classpath
.project
.settings/
.vscode/
.idea/
*.iml
*.iws
*.ipr
.gradle/
build/
*.swp
*.swo
*~
.env
.env.local
Loading
Loading