Archive for December, 2009
Friday, December 18th, 2009
The move from big legacy Java EE application servers such as IBM WebSphere and Oracle WebLogic to Apache Tomcat is accelerating, according to a recent Tomcat survey that MuleSoft drove in collaboration with Computerworld.
(more…)
Tags: IT Strategies, Tcat Server
Posted in Industry, Tomcat | 5 Comments »
Thursday, December 17th, 2009
A common question Mule ESB users have is: How do I perform some actions on Mule startup? Well, the fact is one can do it many ways, including:
(more…)
Posted in Mule ESB, howto | No Comments »
Thursday, December 17th, 2009
For those of you who are using Apache Tomcat in QA, staging, or production, I have no doubt that periodically you end up in the situation where you need to configure Tomcat’s server.xml, catalina.properties, logging.properties, and/or other Tomcat configuration files so that your webapps run the way you need them to run. Even though Tomcat allows us to configure the webapp’s <Context> in a separate file from server.xml, and even though Tomcat allows context.xml in the webapp’s META-INF directory that can be bundled as part of the webapp, that’s almost never enough to configure everything that the webapp needs. The <Context> tag by itself is just not self-contained to the point where you don’t also have to configure other important things in Tomcat’s server.xml to go along with your webapp’s <Context> configuration. (more…)
Posted in Java, Tcat Server, Tomcat, howto | No Comments »
Thursday, December 17th, 2009
Scheduling is great, it really is. It’s also very useful for application integration since we often have to repeat tasks of over time interval or schedule tasks for a date in the future. Mule has had scheduling support since version 1.1 with the Quartz connector, now with iBeans scheduling just got easier. iBeans offers a annotations-based API for performing common integration tasks such as sending email, subscribing to a JMS queue or polling an ATOM feed.
(more…)
Tags: cron, iBeans, Mule, scheduling
Posted in howto, iBeans | No Comments »
Wednesday, December 16th, 2009
With the release of Mule ESB 2.2.4 Enterprise Edition, there are several new and interesting capabilities that have been enhanced in Mule. Reading through the release notes, you might miss them, so I decided to highlight them here on the blog. (more…)
Tags: Mule ESB, release
Posted in Mule ESB | 3 Comments »
Tuesday, December 15th, 2009
I am happy to report that Tcat Server 6 R2 is now available for download. Since the first release of Tcat Server 6, we have had a lot of feedback from users. In addition to positive feedback, they also wanted us to add new features to the product. We worked closely with these users to come up with the user stories and then implement them. We believe these features make Tcat Server 6 even more compelling for organizations using Apache Tomcat in development and production, as the features are focussed on reducing the manual effort associated with using Apache Tomcat.
(more…)
Posted in Tcat Server, Tomcat | No Comments »
Tuesday, December 15th, 2009
JSON, short for JavaScript Object Notation, is a lightweight data interchange format. It is a text-based, human-readable format for representing simple data structures and associative arrays (called objects).
Many REST services use JSON as the preferred data format (including Tcat Server’s REST API). JSON provides a much simpler model for data representation and is widely used in AJAX programing.
iBeans support binding JSON data to objects and marshaling Java objects to JSON using the excellent Jackson Framework.
(more…)
Tags: bindings, iBeans, json, REST
Posted in howto, iBeans | 1 Comment »
Monday, December 14th, 2009
Mule ESB has had support for WS-Security via CXF for some time now, but the enterprise edition of Mule 2.2.4 goes a bit further still with the inclusion of the Mule SAML Module and a new WS-Security example. In this article, I will step through the WS-Security example so that you can see the different possibilities available for incorporating WS-Security into your Mule application. (more…)
Tags: CXF, Mule ESB, SAML, Security, WS-Security
Posted in Mule ESB | No Comments »
Monday, December 14th, 2009
We are pleased to announce that Mule ESB 2.2.4 Enterprise Edition is now available for download from the trial site (http://www.mulesoft.com/mule-esb-enterprise-trial-download) and our customer portal (http://mulesupport.mulesoft.com/portal/secure/app/download.mule). Some of the changes include:
(more…)
Tags: release
Posted in Mule ESB | 1 Comment »
Wednesday, December 9th, 2009
Most websites offer RSS or ATOM feeds for news or updates, and iBeans makes it easy to consume these feeds. In this example, I will create a simple object that will read new entries from my blog and publish a summary of them on Twitter. Note that the example assumes that you have iBeans installed.
(more…)
Tags: atom, bitly, iBeans, twitter
Posted in howto, iBeans | 2 Comments »