No server runtime environment for GlassFish on eclipse kepler? - eclipse

I am using Eclipse Kepler and GlassFish tools plungin. After I upgraded the latest version of GlassFish tools (6.5.0.201405081811) and other eclipse components, the Server Runtime Environment for GlassFish is gone.
The Server Runtime Environment only has Apache, Basic, JBoss and ObjectWeb. I can't start up GF server in eclipse anymore.
I am using JDK1.6 to startup eclipse, I don't know whether this is the root cause.

I ran into this same problem. Un-installing, then re-installing the glassfish tools did the trick for me.

Related

Start WildFly server in Eclipse Juno

I read many answers like this. But in start server window (Jboss Community item) I can chose only JBoss Runtime server. There is no WildFly server item.
How can I add it?
I installed JBoss Tools 4.0.1.Final version cause I use Eclipse Juno. Should I install JBoss Tools 4.2.0.Final even without Eclipse Luna 4.4?
WildFly support in JBoss Tools 4.2.x is for Eclipse Luna only. So, it's not possible to use on Eclipse Kepler.

Install Tomcat v7.0.32 in Eclipse

I'm using Eclipse Juno and Apache Tomcat 7.0.32, but I can't add my Tomcat in Eclipse. I have installed the JST Server Adapter Plug-in Developer Resources, but when I try to add my Tomcat doesn't appear an option for Apache Tomcat v7.0. But appear v6.0 and earlier.
Make sure you have the latest version of WTP (Web Tools Platform) installed. It should bring Tomcat 7 straight away. It will even give you the option of downloading Tomcat directly from Eclipse (in your case you don't seem to need it, though)

eclipse jboss 7.1 plugin

I used the http://download.jboss.org/jbosstools/updates/development/indigo/ for new updates but I still cannot find jboss 7.0 in eclipse under window->preferences-->server-->runtime enviroment. I downloaded eclipse Indigo SR2.
The plugin is only to manage JBoss runtime. Plugin does not install JBoss AS 7 itself. You can easily download the app server and setup the runtime.

How to debug on local jboss as 7 using Eclipse 3.7

I am using Eclipse 3.7 and I added JBoss as 7.1 server.
I want to know how to debug a Java EE application deployed on this local server using Eclipse?
What is the needed debug configuration that I should use?
Note that I am using JBoss Tools.
I found the way!
its pretty simple, just install Eclipse indigo 3.7.2
and install jboss web tools 3.3 beta1 (the current newest release)
and add jboss application server 7.1.1 Final.
and right click your application (in eclipse) --> debug as --> server --> choose jboss as 7.1.1 and it will run smoothly in debug mode.
Note: I was unable to debug my application as I used older version for jboss tools.

Jboss 7 and eclipse indigo plug in giving error while starting server?

I installed Eclipse indigo and jboss 7 server and jboss server plugins installed for struts2 application.
I created simple application with jsp page and deployed in to jboss7 server ( i installed server ,run from out side of eclipse and i saw new features of jboss 7 ) after deploying application .
I want to start the server but server giving error like " Error:no server JVM at c:\java\jre1.6\bin\server\jvmdll"
help me for this issue.
thanks
param
I also had this problem and did not find where I could set the JVM for JBoss in Eclipse Indigo. I got JBoss 7 working by removing the JRE6 from installed JREs in Eclipse and only having JDK6 there. I also changed JRE6 to JDK6 by double clicking the JBoss server -> Open launch configuration -> Classpath -> Bootstrap Entries.
After this I readded JRE6 to Eclipse for the projects that used it.
change jvm in jboss's tomcat conf from
C:\Program Files\Java\jre6\bin\server\jvm.dll
to
C:\Program Files\Java\jre6\bin\client\jvm.dll
I posted the below answer here
I've just been struggling with this same problem in Eclipse and I noted that as suggested by the answer above the JBoss site has a thread on this issue saying the same as the answer above to copy files from the jdk to the jre folder.
I noticed that you can avoid having to do this if you define the runtime to be the jdk when you create the server. I didn't find how to edit an existing server though.