Latest Mule ESB plugin for Eclipse? - eclipse

Is there any official Mule plug-in for Eclipse?
I found only this one http://dist.codehaus.org/mule/muleide/updates/ but it is for Mule 2.

You can find the documentation about how to install Mule IDE here. Bear in mind that Mule IDE has been discontinued in favor of Mule Studio as explained here

Related

Eclipse Mars throwing Noclassdeffounderror when adding server runtime configuration

I am using Eclipse Mars for SAP cloud application development. I added the SAP plug ins successfully. Now when I am adding a Java Web as a server runtime using the Java Web Sdk, it is throwing an error "server error Java /sql /time". When I see the log file it says Noclassdeffounderror for Java. Sql. Time. Could anyone help.
Regards,
Nayeem
Eclipse Mars is tremendously outdated. You should use Oxygen for SAP Cloud development and fulfill all necessary prerequisites for it.

Installing Spring ToolSuite in Eclipse

I am starting to develop WebApp using Spring Framework. For that I know I have to use Spring Tool Suite. I went to the Eclipse site for downloads but I am having trouble knowing wich of the four types of downloads suggested in the page below should I choose, sicnce none of them seem to have Spring in its features ?
http://spring.io/tools/eclipse
Any help ?
Just for your consideration I wrote the following tutorials about STS
Installing Spring Tool Suite
Configuring Apache Maven
Getting Started: IDE & Projects
Configuring The Java Working Set
Structuring The Workspace
Complete and more detailed tutorials, available here: Spring Tutorial
Spring Tool Suite is a different download. It can be found here: http://spring.io/tools/sts .
Unless you are using Java EE which btw stands for Enterprise Edition,
I'd recommend just going with
Eclipse Luna -> Eclipse IDE for Java Developers
In addition to the full distribution downloads on http://spring.io/tools/sts (they are ready-to-use Eclipse distributions with pre-installed Spring tooling) you can also use an Eclipse installation and go to the Eclipse Marketplace to install the Spring tooling into your Eclipse instance.

how to deploy a mule ws with mule-standalone-3.5.0

I create a mule app with mule studio.
It works fine when I run it as a mule application with mule studio.
when I want to deploy it by mule-standalone-3.5.0 runtime.
it throws an exception:
org.mule.module.launcher.DeploymentInitException: SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'jdbc-ee:oracle-data-source'. One of '{"http://www.mulesoft.org/schema/mule/core":annotations, "http://www.mulesoft.org/schema/mule/core":description,.....}' is expected.
You must be using Mule Studio enterprise edition and deploying the application in Mule standlone community edition...
The Exception shows that jdbc-ee:oracle-data-source is of Mule studio Enterprise edition and cannot be deployed in Mule standalone community Edition ..You can do either things as follows:-
Use Mule Studio community Edition and deploy into Mule standalone
community Edition
or Use Mule Studio Enterprise Edition and deploy into Mule standalone
Enterprise Edition...
Since You must be using Mule Studio Enterprise, you need to change your Standalone to Enterprise Edition .. or use Mule Studio Community Edition
Change Runtime of Existing Project: http://www.mulesoft.org/documentation/display/current/Adding+Community+Runtime
Export it and run in standalone.
Or use standalone-ee version
#Anirban is right about how the cause of the problem and how to solve it. But I have to recommend you to use the new Database Module instead of JDBC transport. This is a new Community feature released in Mule ESB 3.5.0. There are several examples and resources) about its advantages over JDBC transport and how to use it.
Regards.

Metro plug-in for Eclipse Juno

Where can I find a tutorial to install and use a Metro plug-in to Eclipse Juno? I have to migrate a sample with ant (downloaded with metro 2.3 libraries) in a dynamic web project Eclipse. Thanks.
There is no Metro plug-in for Eclipse Juno, but GlassFish Tools for Juno available at Eclipse's marketplace. If you are willing to try it, there is an official tutorial for Metro-on-Eclipse available here.
However, you have mentioned in the comment that you are not using Glassfish, but Tomcat, so I would recommend different approach. Follow this tutorial and be careful when deploying the service - you will have to edit web.xml and sun-jaxws.xml files, together with installing JAX-WS (or Metro) libraries on Tomcat.

Does the Eclipse IDE support JSF 2.0?

I have the WTP 3.1 plugin installed and have also installed the Glassfish v3 plugin. I am able to register my server.
When I create a dynamic web project, I can see that the maximum dynamic web module version available is 2.5. I then choose the default configuration for Glassfish v3 but, when I look at it JSF, it is not selected by default. When I select it, the maximum version available is 1.2.
I want to use JSF with facelets - does Eclipse support this? I can't seem to find anything helpful on the Eclipse WTP site.
Java EE 6 / JSF 2.0 is relatively new. Most tools are already ready, but Eclipse has to catch up it yet.
The status as far:
IntelliJ Ultimate Edition was early in this. Unfortunately not freeware. Note: the free Community Edition doesn't provide tools for much of Java EE, let alone JSF.
Netbeans 6.8 came a bit later almost full Java EE 6 support, including JSF 2.0.
Eclipse for Java EE planned to support Facelets in Galileo, but it was cancelled and postponed to the successor Helios which is currently in one of its latest Release Candidate stages been released at 24 July 2010. Helios for Java EE will ship with full fledged Java EE 6 support, including JSF 2.0.
As of now, it just works fine in Eclipse Ganymede/Galileo when you select JSF 1.2 and uses JSF 2.0 libraries. You'll only miss some code assistance which may be useful for JSF 2.0, but you can write code as good yourself.
Use Eclipse with JBoss Tools Plugin. It has support for JSF2 and CDI.
http://in.relation.to/14750.lace
Note, that you can do JSF 2.0 development in Eclipse, but not with as much tool support as might come later.
You can always edit xhtml files directly as XML-files (and have the namespaces registered), and have Glassfish deployments. I've done that, with stock Eclipse 3.5.2 Java EE edition, and the Glassfish plugin.
Have a read on http://weblogs.java.net/blog/2009/05/18/using-ide-write-jsf-20-app
It describe in details on how to setup your eclipse for jsf 2.0 development.