Talend does offer a full ESB. That ESB use Apache CXF for SOAP and REST, Apache ActiveMQ for JMS, and Apache Camel for mediation and routing. Those three modules are provided in distribution that includes Apache Karaf. Karaf is an OSGI container. However, as boday pointed out you can run any or all of these components inside a Servlet, JEE, or even a simple JVM instead if you prefer.
So that is the first difference, Talend is much more lighweight and modular. That modularity is much deeper than simple compliance to JEE API's. You can pick and choose whether you want CXF, ActiveMQ, or which Camel components in particular to include. If you opt for the Karaf / OSGI option you get to leverage the power of OSGI bundle management. This may not seem important at first glance, but it is quite important in an enterprise context.
OSGI manages dependencies at the package (rather than the jar) level. It is the same standard used by your Eclipse IDE. When you install a feature package from Eclipse Marketplace (e.g. subclipse) you are using OSGI feature management. That is why Talend include Apache Karaf in the distribution. So that you have the same pluggable, modular framework for both deployment and dependency management for your enterprise applications.
Why is that important? Because when you have different application teams deploying apps in the enterprise, you need a little bit of flex in your bus. You need to do a few transformations, a little bit of message correlation, use a few EIP's like idempotent consumer. Well all those transforms may need to act on the message payload or use jars provided by the project teams authoring the apps that are being integrated. And all those project teams are on different lifecycles. This is what Microsoft calls DLL hell, and that is why the invented .NET assemblies. Java does not have an equivalent feature that is part of the JCP. But there is a very mature standard that addresses this. That is OSGI. The open source engine that realizes OSGI is Equinox in Eclipse, or Apache Felix. Both are are pluggable in the Karaf container.
So much for the container, what about the heart of the ESB, Apache Camel. I'm sure most readers are aware, but Camel realizes the enterprise integration patterns (EIP) from the Gregor Hohpe and Bobby Woolf book of the same name. It is just a library, and it can run in any jvm, and in fact with or without DI container such as Spring. The important thing to take away is that Camel addresses the need for asynchronous, event driven integration which is necessary to address the fallacies of distributed computing. And it does it in a completely flexible way that does not require you to deploy JEE servers everywhere. Want to have a dedicated integration server, great use Talend ESB out-of-the-box for an OSGI server. Want to service enable managed endpoints inside Tomcat, great, deploy Camel, CXF, and ActiveMQ inside Tomcat if you like. You get much greater, platform agnostic and architecture agility with a lightweight modular integration platform like Talend.
Another differentiator worth mentioning is that transformations are one of those mundane things that are still really important. You need to really think about how you plan to manage the schemas of the messages and events that are being placed on the bus. Talend ESB provides transformation tools OTB.
(full disclosure - I am Technical director at Talend, but I hope that I have emphasized the Apache and OSS aspects here in a very objective manner.)