Giter Club home page Giter Club logo

fuse-quickstarts's People

Contributors

bsaunder avatar jsimonelli avatar leandroberetta avatar mmistretta avatar paoloantinori avatar rmgrimm avatar sabre1041 avatar valdar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fuse-quickstarts's Issues

Testing

Hi, i have a question, how would you unit test the jpa example in this repo? I'm really stuck trying to do so with a similar route.

Thank you!

Camel Runtime Error with Infinispan Local Camel Producer

Budle deploys fine, but Camel fails to Initialize with this error.

Caused by: java.lang.IllegalArgumentException: Could not find a suitable setter for property: cacheContainer as there isn't a setter method with same type: java.lang.String nor type conversion possible: No type converter available to convert from type: java.lang.String to the required type: org.infinispan.commons.api.BasicCacheContainer with value #cacheManager
at org.apache.camel.util.IntrospectionSupport.setProperty(IntrospectionSupport.java:561)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.util.IntrospectionSupport.setProperty(IntrospectionSupport.java:571)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.util.IntrospectionSupport.setProperties(IntrospectionSupport.java:454)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.util.EndpointHelper.setProperties(EndpointHelper.java:253)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.impl.DefaultComponent.setProperties(DefaultComponent.java:263)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.component.infinispan.InfinispanComponent.createEndpoint(InfinispanComponent.java:34)[279:org.apache.camel.camel-jbossdatagrid:6.5.0.Final-redhat-5]
at org.apache.camel.impl.DefaultComponent.createEndpoint(DefaultComponent.java:114)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.impl.DefaultCamelContext.getEndpoint(DefaultCamelContext.java:558)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
... 44 more

It appears that the Component is unable to find the Bean in the Registry or there is not a proper Setter defined.

Camel Runtime Error with Infinispan Camel Local Consumer

Budle deploys fine, but Camel fails to Initialize with this error.

Caused by: java.lang.IllegalArgumentException: Could not find a suitable setter for property: cacheContainer as there isn't a setter method with same type: java.lang.String nor type conversion possible: No type converter available to convert from type: java.lang.String to the required type: org.infinispan.commons.api.BasicCacheContainer with value #cacheManager
at org.apache.camel.util.IntrospectionSupport.setProperty(IntrospectionSupport.java:561)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.util.IntrospectionSupport.setProperty(IntrospectionSupport.java:571)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.util.IntrospectionSupport.setProperties(IntrospectionSupport.java:454)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.util.EndpointHelper.setProperties(EndpointHelper.java:253)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.impl.DefaultComponent.setProperties(DefaultComponent.java:263)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.component.infinispan.InfinispanComponent.createEndpoint(InfinispanComponent.java:34)[279:org.apache.camel.camel-jbossdatagrid:6.5.0.Final-redhat-5]
at org.apache.camel.impl.DefaultComponent.createEndpoint(DefaultComponent.java:114)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
at org.apache.camel.impl.DefaultCamelContext.getEndpoint(DefaultCamelContext.java:558)[198:org.apache.camel.camel-core:2.15.1.redhat-620153]
... 44 more

It appears that the Component is unable to find the Bean in the Registry or there is not a proper Setter defined.

Camel on EAP - JMS Transactions

Create a Producer Route that puts a random String onto a JMS Queue and then a Consumer Route that receives and prints the message. Use Camel-JMS to call the Route. Use Containers Transaction Management

https://wildflyext.gitbooks.io/wildfly-camel/content/javaee/jms.html

Repo Folder: camel_on_eap_quickstarts/jms_transactions
Package: com.redhat.consulting.fusequickstarts.eap.jms.transactions

Notes:

Readme should follow style of the FuseByExample Demos
Use Java Routes
Lots of Comments
Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - Basic Camel Deployment

Deployment of a basic Camel Route that is triggered by a Timer and then Logs a random string. Purpose is to demonstrate the process for deploying a Camel Route. Should show how to deploy both a Java Route as well as an XML Based Route.

Repo Folder: camel_on_eap_quickstarts/route_deployment
Package: com.redhat.consulting.fusequickstarts.eap.deployment

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - JAX-WS Consumer with CamelProxy (Contract First)

Publish a SOAP Endpoint via standard JEE JAX-WS Method and direct the request to a direct Camel Route. Consume it with a separate route. The SOAP Endpoint should have at least 2 separate operations.

Use a WSDL First Approach.

https://wildflyext.gitbooks.io/wildfly-camel/content/javaee/jaxws.html

Repo Folder: camel_on_eap_quickstarts/soap
Package: com.redhat.consulting.fusequickstarts.eap.soap

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - JMS (Camel-JMS)

Create a Producer Route that puts a random String onto a JMS Queue and then a Consumer Route that receives and prints the message. Use camel-jms component.

Repo Folder: camel_on_eap_quickstarts/jms
Package: com.redhat.consulting.fusequickstarts.eap.jms

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - JAX-WS Consumer with CamelProxy (Code First)

Publish a SOAP Endpoint via standard JEE JAX-WS Method and direct the request to a direct Camel Route. Consume it with a separate route. The SOAP Endpoint should have at least 2 separate operations.

Use a Code First Approach.

https://wildflyext.gitbooks.io/wildfly-camel/content/javaee/jaxws.html

Repo Folder: camel_on_eap_quickstarts/soap
Package: com.redhat.consulting.fusequickstarts.eap.soap

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - Drools/BxMS

Demonstrate how to Integrate with Drools.

Repo Folder: camel_on_eap_quickstarts/drools
Package: com.redhat.consulting.fusequickstarts.eap.drools

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

origin/jboss-fuse-6.3 fails to build

origin/jboss-fuse-6.3 fails to build

Downloaded from redhat-techpreview-all-repository: http://maven.repository.redhat.com/techpreview/all/biz/aQute/bnd/parent/2.3.0/parent-2.3.0.pom (4.1 kB at 26 kB/s)
Downloading from redhat-techpreview-all-repository: http://maven.repository.redhat.com/techpreview/all/biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0.jar
Downloaded from redhat-techpreview-all-repository: http://maven.repository.redhat.com/techpreview/all/biz/aQute/bnd/bndlib/2.3.0/bndlib-2.3.0.jar (1.8 MB at 1.8 MB/s)
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-resolvable parent POM for com.redhat.consulting.fusequickstarts.karaf:rest-beanvalidation:[unknown-version]: Failure to find com.redhat.consulting.fusequickstarts.karaf:karaf-parent:pom:6.2.1 in http://maven.restlet.org was cached in the local repository, resolution will not be reattempted until the update interval of maven-restlet has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 6, column 11
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:amq:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/amq/pom.xml, line 48, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:jpa-jta:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/jpa_jta/pom.xml, line 57, column 13
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.infinispan:remote-client:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/infinispan/remote-client/pom.xml, line 38, column 12
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:build-helper-maven-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.infinispan:local-cache:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/infinispan/local-cache/pom.xml, line 30, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.infinispan:local-cache:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/infinispan/local-cache/pom.xml, line 62, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.infinispan:local-client:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/infinispan/local-client/pom.xml, line 38, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.infinispan:local-camel-consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/infinispan/local-camel-consumer/pom.xml, line 34, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.infinispan:local-camel-producer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/infinispan/local-camel-producer/pom.xml, line 34, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.infinispan:remote-camel-producer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/infinispan/remote-camel-producer/pom.xml, line 34, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:itests:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/itests/pom.xml, line 101, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:idempotent:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/idempotent/pom.xml, line 53, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:jms:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/jms/pom.xml, line 52, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:managed_service_factory:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/managed_service_factory/pom.xml, line 64, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_ds:osgi_ds_api:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_ds/osgi_ds_api/pom.xml, line 23, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_ds:osgi_ds_service:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_ds/osgi_ds_service/pom.xml, line 51, column 12
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.camel:camel-core:jar -> duplicate declaration of version (?) @ com.redhat.consulting.fusequickstarts.karaf.osgi_ds:osgi_ds_consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_ds/osgi_ds_consumer/pom.xml, line 38, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_ds:osgi_ds_consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_ds/osgi_ds_consumer/pom.xml, line 56, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service:osgi_service:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service/osgi_service/pom.xml, line 42, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service:osgi_consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service/osgi_consumer/pom.xml, line 39, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service_adv:blueprint_service:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service_adv/blueprint_service/pom.xml, line 43, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service_adv:blueprint_consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service_adv/blueprint_consumer/pom.xml, line 40, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service_adv:blueprint_sdm_consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service_adv/blueprint_sdm_consumer/pom.xml, line 40, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service_adv:spring_service:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service_adv/spring_service/pom.xml, line 43, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service_adv:spring_consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service_adv/spring_consumer/pom.xml, line 40, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service_adv:spring_bp_consumer:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service_adv/spring_bp_consumer/pom.xml, line 40, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.osgi_service_adv:service_api:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/osgi_service_adv/service_api/pom.xml, line 38, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:properties:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/properties/pom.xml, line 41, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:properties-encryption:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/properties_encryption/pom.xml, line 45, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:rest:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/rest/pom.xml, line 64, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:rest-dsl:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/rest_dsl/pom.xml, line 61, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:rest-dsl-basic-auth:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/rest_dsl_basic_auth/pom.xml, line 69, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.rest.dsl.simple:rest-dsl-simple:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/rest_dsl_simple/pom.xml, line 51, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:rest_secure:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/rest_secure/pom.xml, line 59, column 15
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:route-deployment:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/route_deployment/pom.xml, line 41, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.shared_component:shared_amq:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/shared_component/shared_amq/pom.xml, line 43, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.shared_component:amq_route:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/shared_component/amq_route/pom.xml, line 39, column 21
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:soap:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/soap/pom.xml, line 54, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:soap_client:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/soap_client/pom.xml, line 49, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.cxf:cxf-codegen-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:soap_client:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/soap_client/pom.xml, line 75, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:soap-contract-first:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/soap_contract_first/pom.xml, line 73, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.cxf:cxf-codegen-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:soap-contract-first:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/soap_contract_first/pom.xml, line 49, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf:soap_secure:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/soap_secure/pom.xml, line 54, column 12
[WARNING] 'build.plugins.plugin.version' for org.apache.felix:maven-bundle-plugin is missing. @ com.redhat.consulting.fusequickstarts.karaf.websocket:websocket_route:[unknown-version], /home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/websocket/websocket_route/pom.xml, line 43, column 21
[WARNING] 'build.pluginManagement.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-compiler-plugin @ line 146, column 13
[WARNING] 'build.pluginManagement.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-compiler-plugin @ com.redhat.consulting.fusequickstarts.eap:eap-parent:6.3, /home/anton/eclipse-workspaces/section6/fuse-quickstarts/eap/parent/pom.xml, line 146, column 13
 @ 
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project com.redhat.consulting.fusequickstarts.karaf:rest-beanvalidation:[unknown-version] (/home/anton/eclipse-workspaces/section6/fuse-quickstarts/karaf/rest_beanvalidation/pom.xml) has 1 error
[ERROR]     Non-resolvable parent POM for com.redhat.consulting.fusequickstarts.karaf:rest-beanvalidation:[unknown-version]: Failure to find com.redhat.consulting.fusequickstarts.karaf:karaf-parent:pom:6.2.1 in http://maven.restlet.org was cached in the local repository, resolution will not be reattempted until the update interval of maven-restlet has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 6, column 11 -> [Help 2]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException

Camel on EAP - JPA

Create a Route that Persists and Entity to a Database using camel-jpa. Create a second route that displays that Logs that Entity.

https://wildflyext.gitbooks.io/wildfly-camel/content/javaee/jpa.html

Repo Folder: camel_on_eap_quickstarts/jpa
Package: com.redhat.consulting.fusequickstarts.eap.jpa

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - JAX-WS Security

Publish a Secured SOAP Endpoint via standard JEE JAX-WS Method and direct the request to a direct Camel Route. Consume it with a separate route.

Use a Code First Approach.

https://wildflyext.gitbooks.io/wildfly-camel/content/javaee/jaxws.html

Repo Folder: camel_on_eap_quickstarts/soap_secure
Package: com.redhat.consulting.fusequickstarts.eap.soap.secure

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Blueprint - SOAP with CXF & Security

Publish a Secure SOAP Endpoint and then Consume it with a separate route.

Use a Code First Approach.

Repo Folder: karaf_quickstarts/soap
Package: com.redhat.consulting.fusequickstarts.karaf.soap

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Declarative Services - Basic Camel Deployment

Deployment of a basic Camel Route that is triggered by a Timer and then Logs a random string. Purpose is to demonstrate the process for deploying a Camel Route. Should show how to deploy both a Java Route as well as an XML Based Route. This example should use Declarative Services instead of Blueprint.

Camel on EAP - Infinispan/Data Grid

Create a Route that Stores an Entity to a Cache using camel-infinispan and Data Grid. Create a second route that Retrieves and Logs that Entity.

Also make a reference to the use of Data Grid as a Claim Check in the Readme.

Repo Folder: camel_on_eap_quickstarts/datagrid
Package: com.redhat.consulting.fusequickstarts.eap.datagrid

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Blueprint - AMQP

Example that Demonstrates how to use the Camel AMQP Component to Send and Receive Messages as well as Documents how to configure the ActiveMQ Broker inside Fuse to use AMQP.

Camel on EAP - A-MQ (MDB)

Create a Producer Route that puts a random String onto a A-MQ Queue and then a Consumer Route that receives and prints the message. Use an MDB to call the Route.

Repo Folder: camel_on_eap_quickstarts/amq_mdb
Package: com.redhat.consulting.fusequickstarts.eap.amq.mdb

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Blueprint - REST with CXF-RS & Security

Publish a Secure REST Endpoint using camel-cxf. Consume it with a separate route.

Repo Folder: karaf_quickstarts/rest_secure
Package: com.redhat.consulting.fusequickstarts.karaf.rest.secure

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Blueprint - Drools/BxMS Integration

Demonstrate how to Integrate with Drools.

Repo Folder: karaf_quickstarts/drools
Package: com.redhat.consulting.fusequickstarts.karaf.drools

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - JMS (MDB)

Create a Producer Route that puts a random String onto a JMS Queue and then a Consumer Route that receives and prints the message. Use an MDB to call the Route.

Repo Folder: camel_on_eap_quickstarts/jms_mdb
Package: com.redhat.consulting.fusequickstarts.eap.jms.mdb

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Camel on EAP - A-MQ (Camel-ActiveMQ)

Create a Producer Route that puts a random String onto a JMS Queue and then a Consumer Route that receives and prints the message. Use camel-activemq component.

Repo Folder: camel_on_eap_quickstarts/jms
Package: com.redhat.consulting.fusequickstarts.eap.jms

Notes:

  • Readme should follow style of the FuseByExample Demos
  • Use Java Routes
  • Lots of Comments
  • Assume Viewer is a Camel/Fuse Beginner

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.