Subscribe

Announcing Support for Apache Tomcat 6.0.26

March 12th, 2010

One of the good things about Apache Tomcat is that it is world’s most efficient and effective application server for running web applications. Legacy Java EE application servers can be more trouble than they are worth due to their inherent complexity and feature bloat.

In January of this year, the Apache Software Foundation released, Tomcat 6.0.24 , which made major improvements in finding and preventing memory leaks in web applications.  Today the ASF released Tomcat 6.0.26, which is an improvement over 6.0.24. (If you are wondering what happened to 6.0.25, that release was deemed not suitable to be released).

Here are highlights of the changes that went into this release since 6.0.24:
More »

Sateesh Narahari

The new XMPP transport says hello world

February 25th, 2010

It has been a while since I last blogged about the new XMPP transport for Mule ESB. I’ve been making slow progress since then, but I’ve finally arrived at a point where the transport is starting to be useable. I’d like to show that by building a simple jabber client using the XMPP and stdio transports.

More »

Dirk Olmes

Continuous Deployments: This is how lean startups roll!

February 25th, 2010

The Lean Startups movement has produced several important and successful techniques that can yield benefits to all types of organizations. One of these is continuous deployment — a process in which all code written for an application is immediately deployed into production. The result is a dramatic reduction in the development cycle time and the freeing of individual initiative.  You can read about it here as described by Eric Ries.

Implementing the continuous deployment methodology can be difficult if you are developing Java EE applications, which come with inherent delays associated with the complexity of deployment and restart times for most Java EE servers. However, if you are using a lightweight, efficient application server such as Apache Tomcat, you have an advantage.

More »

Sateesh Narahari

Note to Businesses: Take the SOA, Leave the Buzz

February 23rd, 2010

In a recent post by Loraine Lawson on ITBusinessEdge, an informal survey was cited that referenced a majority of mid-market CIOs who “said they had no current business need for SOA.” I was a little surprised by the headline since MuleSoft continues to see tremendous adoption of our open source Mule ESB and subscriptions of our enterprise version among companies I would describe as mid-market. So, I decided to read further and try to learn more. More »

Ken Yagen

Dynamic App Runtime Updates in Mule

February 23rd, 2010

Mule community member, author, and consultant Eugene Ciurana recently discussed a technique for extending or modifying the run-time code in Mule without stopping the server, greatly reducing development time for Mule apps.

More »

Ken Yagen

Developer Survey – Win $100

February 18th, 2010

In our continuous quest to understand developer trends and preferences, we are conducting a short survey. The survey should take around 5 minutes to complete and will help us gain insight into developer trends. We may contact you for a follow-up discussion to get detailed input from you. We will also enter your name into a random drawing for $100 if you provide contact information.

Please retweet/blog or email the survey to your friends and colleagues. Thank you for your help!

To take the Survey, click  HERE.

Sateesh Narahari

Upcoming Webinar: Seamless Webapp deployment with Maven and Tcat Server

February 17th, 2010

Are you frustrated with how hard it is to build and manage your web applications? Are you looking for a way to automate your webapp release and deployment processes? And for a way to easily manage upgrades and rollbacks to groups of Tomcat servers?

Join Dan Diephouse, Sr. Architect at MuleSoft, and Jason vna Zyl, founder of Maven and Sonatype, for a webinar on Seamless Webapp Deployment with Maven and Tcat Server.

More »

amber.taylor

A Better Tomcat for Ubuntu and Debian

February 17th, 2010

As mentioned in my last post, I have recently spent some time improving the Tomcat package on the Ubuntu and Debian Linux distributions. This post goes into more detail on those changes.
More »

jasonb

Our Open Source Contributions Beyond Mule: Tomcat, Ubuntu, and Debian

February 16th, 2010

Recently, while working with Canonical, the commercial sponsor of Ubuntu, an opportunity came up for us at MuleSoft to take on open-source community work to improve the Ubuntu Tomcat 6 package. Having spent several years administering the most popular Tomcat Internet Relay Chat channel, I’ve gathered lots of feedback from Tomcat users about what they had difficulty with, and the changes I had to offer turned into implementation work.
More »

jasonb

Bye bye MessageAdapter, hello MessageFactory

February 10th, 2010

A part of the work we are doing on Mule 3 is to clean up and simplify the existing design. One thing I recently started working on is untangling the relationship between MuleMessage and MessageAdapter and review the use of message adapters throughout the code base.

The current design around these two is somewhat awkward: MuleMessage extends MessageAdapter. I consider this to be the exposure of an implementation detail rather than a good design choice. The MessageAdapter is a throwback from the first Mule architecture, but we’ve moved on from that so it is high time to revisit this approach.

More »

Dirk Olmes