Enterprise Integration Zone is brought to you in partnership with:

Latest News

  • submit to reddit
Mitch Pronschinske12/20/12
1292 views
0 replies

Video Tutorial: Web Services Consumer Using Apache CXF

Need a quick intro into some of the powerful features of Apache CXF. Check out this concise 5-minute tutorial. Should be a good refresher for some too.

Mitch Pronschinske12/20/12
988 views
0 replies

Apache Camel 2.10.x and 2.9.x Lines Clean out Bugs

No major new release yet for the Enterprise Integration patterns tool, Apache Camel, but this month they did have a round of incremental releases that squashed a total of 118 bugs between the two.

Mitch Pronschinske12/19/12
2525 views
0 replies

What’s New in Mingle 12.4?

We all know there are countless project management tools out there. One of the more Agile among them, Mingle, had a new release. And another tool, Go for Continuous Delivery, has OpenJDK support now.

Mitch Pronschinske12/19/12
2617 views
0 replies

Designing a REST-ful API using Spring 3

This talk will describe a more concrete idea of what a REST-ful API should look like using the VAS API as an example. The implementation was done using new features in Spring 3.

Mitch Pronschinske12/19/12
994 views
0 replies

Best Practices for integrating to mainframe with your ESB

Many projects have been stalled or cancelled because integrating to mainframe applications and data was a problem too great to overcome. Not anymore.

Mitch Pronschinske12/18/12
4569 views
2 replies

Securing RESTful Web Services with OAuth 2.0

When and why would you use OAuth2? The answer, as often with such questions, is "it depends", but there are some features of OAuth2 that make it compelling in some situations, especially in systems composed of many lightweight web services, which becoming a very common architectural pattern.

Mitch Pronschinske12/18/12
1486 views
0 replies

What Was New in RabbitMQ in 2012

In the last year and a half, RabbitMQ has seen six major new releases. RabbitMQ 3.0 was a big step this year for the messaging queue (and NoSQL distributed cache). The Spring-based open source project had a ton of new features added this year and this article will get you informed about what's new.

Mitch Pronschinske12/18/12
1213 views
0 replies

Oracle Service Bus Poster

Any OSB users out there? Check out this OSB poster that comes courtesy of EAIESB, a vendor of SOA based solutions using Oracle Fusion, Glass Fish ESB commercial and open source tools. Print it and pin it up!

Mitch Pronschinske12/17/12
2105 views
0 replies

Spring 3.2 is Ready for Production - Spring Integration 2.2 Too!

Just a few weeks ago Spring 2.2 GA was released as one of many tools in the Spring family. In case you missed it, the Spring Framework itself had its GA release, completing the last step in Spring's yearly dev cycle. There is some wonderful new stuff to enjoy and plenty of other cool stuff on the way, like Spring Scala.

Mitch Pronschinske12/17/12
1563 views
0 replies

Practical Tips and Tricks with Spring Integration

This video will cover some of the more advanced topics of enterprise integration such as message-flow-segmentation, custom retry logic, error handling, timeouts and more.

Mitch Pronschinske12/16/12
2753 views
0 replies

Leverage Enterprise Integration Patterns with Apache Camel and Twitter

Bruno Borges talks at JavaOne 2012 about Leverage Enterprise Integration Patterns with Apache Camel and Twitter.

Mitch Pronschinske12/15/12
3351 views
0 replies

Intro to Mule ESB and the Elegant 'Endpoint' Data Channel

This is a core concepts example that demonstrates how to invoke a Mule application using HTTP. The example introduces two key concepts in Mule.

Mitch Pronschinske12/14/12
4660 views
0 replies

Kafka Possibly Moving to Java CRC, Akka Suggested

If you haven't heard of Kafka, a super-fast distributed message queue from LinkedIn, you probably ought to look into it, and it's heavily involved Apache incubator community.

Mitch Pronschinske12/14/12
3506 views
0 replies

Screencast: Spring + Hibernate Integration

Learn how to save form data by using stored procedures with Spring, and Hibernate MVC technologies. You'll also learn how to write a stored procedure, and even create a database from scratch.

Mitch Pronschinske12/13/12
3692 views
0 replies

Code Puzzler Response - Find the Integer Square Root of a Positive Integer

A puzzler was given before, and all submitted solutions were based on the iteration: x_n+1 = (x_n + x/x_n) / 2. That formula is great for finding good rational approximations of the square root of a number, but it's trivial once you know the formula.