Tagged Questions
0
votes
0answers
10 views
STS Error: Could not publish server configuration
I m working with spring-tool-suite-3.2.0.RELEASE-e4.2.2-win32-x86_64, on a Maven vaadin-archetype-application with the Vaadin Plugin for Eclipse and Tomcat 7. Smetime when I save some changes in my ...
1
vote
3answers
92 views
Servlet in Eclipse - Where to put static content
When writing a servlet with Eclipse, where am I to put my static content (images, CSS, etc.), so that I can make my HTML link to it (e.g. <img src="http://localhost:8080/context/image.png>). I ...
0
votes
0answers
18 views
Deploy a maven project in Tomcat 6.0.36
I am working in a maven project with tomcat, I did the following steps:
1) I generate the war file with maven
2) I put the file in the "webapps" folder in tomcat.
3) When I start tomcat from the ...
0
votes
0answers
35 views
Cannot start Tomcat v7 with Eclipse
when i run my hello world program, this error appears. How do i debug this one?
Problem Occured:
'Starting Tomcat v7.0 Server at localhost' has encountered a problem.
Server Tomcat v7.0 Server ...
0
votes
1answer
23 views
ClassNotFoundException: com.sun.faces.config.ConfigureListener - Deployment of jars to Tomcat configured under Eclipse
I have a problem very similar to these:
java.lang.ClassNotFoundException: com.sun.faces.config.ConfigureListener when using MyFaces with WASCE/Geronimo
ClassNotFoundException: ...
0
votes
1answer
37 views
404 Nicht gefunden: Invalid Request jax ws web service
I wrote a java jax-ws web service.
I used this tutorial
After implementation I deployed my web service on my local tomcat. But I only get the following text on the website:
404 Nicht gefunden: ...
1
vote
1answer
40 views
deploying spring mvc web app to tomcat: classpath issue
I am developing a small web app using Spring MVC framework. Basically, the app provides web interface, where user can upload XML file and verify it against specific XSD file. I put my XSD file within ...
0
votes
1answer
19 views
Eclipse Tomcat Configuration Documentation/example page 404
Now I've installed Tomcat successfully in my Windows 7. In cmd, I can start the server and get to the Tomcat homepage. Also, I can successfully access the doc, example pages etc.
But for Eclipse, I ...
1
vote
1answer
19 views
How to turn off automatic restart of Tomcat in Eclipse?
When developing Servlet, after changing a bit of my java code, and click run. Eclipse ask me to whether to restart the service or not. I click 'yes' and tick 'remember my choice'.
So every time, ...
0
votes
1answer
26 views
Tomcat redirects to wrong url after logging in
I'm having this problem with my web application, where I'm performing form based authentication through Tomcat and it redirects me to a logo image file instead of redirecting to the index.html file ...
0
votes
0answers
24 views
Getting ClassNotFoundException when deploying Jersey application to Tomcat
I tried to set up a REST service according to this article
I installed a local Tomcat (that is running correctly) and set it up as a run configuration.
Unfortunatly, when building the application I ...
0
votes
1answer
41 views
javax.security.auth.login.LoginException: No LoginModules configured for SomeLogin
Well I'm trying to create JAAS authentication for my Servlet (running on Tomcat 7 in Eclipse), but I'm getting this error.
He're's the complete stack trace:
'`
INFO: Starting Servlet Engine: Apache ...
0
votes
2answers
26 views
Debug GWT app locally/remotely while running on Tomcat
All of the tutorials/links/articles I have found for debugging GWT involve:
Using the Google-Eclipse plugin; and
Running GWT in Development Mode from inside Eclipse (with Eclipse as the web ...
0
votes
0answers
39 views
System scope dependency resulting in ClassNotFoundExcpetion
When I try to run my war using tomcat7:run-war using M2E eclipse, it gives a ClassNotFoundException for the classes present in the particular dependency.
As I understand system scope dependency will ...
0
votes
1answer
69 views
the command “grails run-war” throws Error java.lang.NullPointerException
I'm using Eclipse STS 3.2.0. This is what I did so far:
grails run-app command works
grails war command works
I run Tomcat separately, and deploy the generated war though the Tomcat. I also paste ...
1
vote
1answer
60 views
Debugging a Spring MVC application running on Tomcat
I am asking the correct way of debugging a Dynamic Web Application in Eclipse.
I have two sort of files:
the view: jsp
the controller: Spring Controller
When I changed a jsp file, whether in debug ...
0
votes
1answer
69 views
Basic web application but getting 404 error Tomcat/Eclipse
I have a simple dynamic web application in eclipse as shown in below image:
and my web.xml is as below (provided only relavent sections to reduce complexity):
<web-app ...
...
0
votes
1answer
17 views
How to only have 1 project run with Tomcat Server (Eclipse)?
Is there a way in Eclipse to only have one project be run on the specified Tomcat server, even if there are multiple projects in the workspace?
0
votes
1answer
24 views
What can be issue with Tomcat that it starts in RUN mode but in debug mode it hangs forever?
I am using STS(eclipse) and facing a weird issue with Tomcat. It was running fine and all of a sudden it started giving issues. Firstly it responded very slowly and after it did not respond at all in ...
0
votes
0answers
17 views
Can embedded Tomcat to load Servlet 3.0 annotaitons from Eclipse classpath?
I have an app that's entirely configured by annotation - no web.xml - that I want to run in embedded Tomcat from Eclipse.
I can find lots of examples that rely on specifying a WEB-INF/classes dir, ...
0
votes
2answers
27 views
404 -resource under sub-directory not found in eclipse
I am able to access a resource(say test.html) only when it is directly under WebContent in eclipse.If i place it in WEB-INF or WEB-INF/jsp the IDE shows error 404-requested resource is not available.
...
0
votes
0answers
30 views
Setting up Apache Tomcat ubuntu
I installed tomcat on Ubuntu and started it:
vladimir@vladimir-Satellite-C655:~/web/apache-tomcat-7.0.40/bin$ sudo sh startup.sh
Using CATALINA_BASE: /home/vladimir/web/apache-tomcat-7.0.40
...
1
vote
0answers
13 views
Eclipse is reading Apache Catalina output from standard error
Based on the color of my Eclipse console, it seems as though it's outputting standard console messages to the Standard Error buffer. Why does it do this? And, more importantly, is there a way to ...
0
votes
1answer
33 views
Tomcat error 404 in eclipse
I had this Spring project running fine, but today I started getting creepy error 404 on the web debugger each time I debug on Tomcat my project.
As part of resolving this issue, I have deleted the ...
1
vote
0answers
20 views
Derby database connection with Tomcat
There is simple code, but cant get connection to Derby with it, what is wrong?
CustomerBean.java:
package com.corejsf;
import java.sql.Connection;
import java.sql.ResultSet;
import ...
0
votes
0answers
24 views
Eclipse Tomcat launch config vmarg -Dfile.encoding and jdbc4 SQL Server
I am running tomcat from Eclipse Helios. When the launch configuration gets created a jvm argument is added -Dfile.encoding=cp1252. I know how to change this value in the configuration setup, I don't ...
1
vote
1answer
62 views
Tomcat: SEVERE: Error loading WebappClassLoader
PLEASE DO NOT MARK AS DUPLICATE, FOR OTHER SOLUTIONS DID NOT HELP YET!
I'm getting 404 in my browser trying to run this tutorial:
http://www.vogella.com/articles/REST/article.html
I actually do not ...
0
votes
1answer
28 views
eclipse run maven project : java.lang.IllegalArgumentException:
when i try to run my maven project in eclispe, i meet this exception:
java.lang.IllegalArgumentException: Document base ...
0
votes
1answer
35 views
Eclipse/Tomcat7: application context root reloading returns 404
I have a servlet which is mapped to application context root using the "" string:
So when I hit the url http://127.0.0.1:8080/myapp/, I can see "This is ROOT!" in the browser. So far so good.
But if ...
0
votes
1answer
29 views
Export war file from windows and add it to ubuntu webapps
I am trying to export a war file from Eclipse (Dynamic Web Project-java) from a WindowsX64 environment and add it to an UbuntuX64 system in the tomcat6 webapp folder. When the Ubuntu-tomcat deploys ...
0
votes
2answers
108 views
Error in publishing in Tomcat 6 in eclipse Juno
I am getting the following error while starting the Tomcat 6 server. I have configured JDK as run time.
Publishing failed
Could not create directory \\<user ...
0
votes
1answer
25 views
Running Vaadin in Eclipse+Tomcat appends full class path to .java file, which throws 404
While I have plenty of experience with Eclipse, I am very new to Vaadin. I'm having a simple issue when running my project. By default the project runs as...
...
0
votes
0answers
20 views
Custom Server Adapter - Eclipse resources
As we all know, we can create custom server using eclipse programmatically by either using generic server adapter or custom server adapter.
My question, is there any tutorial/docs/articles etc ...
0
votes
0answers
24 views
deploying birt viewer in tomcat with excel datasource
im trying to run a predifined report in tomcat , i followed the instructions and successfully installed and tested birt viewer .
i use excel sheets as datasource and the reports works fine on eclipse ...
0
votes
2answers
96 views
dynamic web project: “java.lang.ClassNotFoundException” despite .jar file in the WEB-INF/lib directory
I'm working on an assignment that requires some .jar files. The assignment requires me to do some work on a Tomcat servlet with JSP files.
I included my .jars in the Java Build Path in Eclipse, and ...
3
votes
2answers
65 views
Java Libraries Runtime vs Compile Time
When setting up a Java web application using Tomcat as an application server I often get confused about when libraries are available. Through some discussion on Stack Overflow, I have learned that ...
0
votes
1answer
52 views
TOMCAT - HTTP Status 404
I'm kind a noob with Tomcat...
I set up my server in eclipse and when I run it the console prints:
mai 02, 2013 4:05:13 PM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based ...
0
votes
1answer
37 views
NoClassDefFound on tomcat in eclipse, but i have added it to classpath
Ive looked at other answers to this question, and ive tried following them. Basically here is the scenario: I have a class which is called via a jsp page. That class has a class which is found in a ...
0
votes
0answers
25 views
how to connect two servers tomсat, to a single project
I read a tutorial on how to set up two servers tomcat:
http://kief.com/running-multiple-tomcat-instances-on-one-server.html
I use tomCat plugin in my Eclipce. As you can see, the path to a single ...
0
votes
0answers
57 views
How do I set up eclipse to deploy correctly to tomcat for?
So this is Kind of a follow on to this question, I was able to deploy a basic Spring MVC app by right clicking on the project in eclipse and exporting the war file to the Web app directly, but how do ...
1
vote
1answer
55 views
How to deploy generated resources to tomcat with m2e-wtp?
I am pulling JavaScript from a jar as part of my build process. I wish this js to be part of my web resources for the app deployed on tomcat and I have updated my build process to allow this to ...
1
vote
1answer
55 views
Maven Profiles and Tomcat in Eclipse
If I have 2 maven profiles for a WAR application like this:
mvn clean install -Pdevelopment
mvn clean install -Pproduction
and I import it in Eclipse to run in Tomcat, how to I tell Tomcat to use ...
0
votes
0answers
91 views
Eclipse Tomcat Web Deployment Assembly
Hi i'm trying deploy a Java EE Web Project via Eclipse on a tomcat install on localhost (Tomcat v 7 at localhost). The ultimate goal is to take use of JRebel to avoid the traditional handling of war ...
0
votes
1answer
95 views
java.lang.IllegalArgumentException: The servlets named [X] and [Y] are both mapped to the url-pattern [/url] which is not permitted
I tried to add a servlet to my Eclipse project, by editing the web.xml.
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
1
vote
2answers
80 views
Running GWT on tomcat in eclipse
I am trying to get a GWT Project running on a Tomcat 7 server in eclipse. I installed Tomcat and i can run other web application out of eclipse on Tomcat without a problem.
Now i generated a gwt ...
0
votes
1answer
13 views
Maven Webapp run in Eclipse but run base java code of Module?
I have 2 project
1) Module for webapp, this is project contain some java class Utility.
2) Webapp project using project (1).
I configuration to run project in Eclipse + Tomcat plugin, It run OK.
...
0
votes
1answer
13 views
See exact server version in eclipse “Servers”
I have added a Tomcat Server to my environment over the add server bar. However, when I do not know the exact version of the server, even when I have a closer look at the server properties:
How to ...
0
votes
1answer
35 views
Trouble configuring Apache Tomcat Server on Eclipse
I am having trouble configuring my Tomcat on Eclipse. I followed the steps to set up a local Apache Tomcat Server on my Mac, and I also set up an SSL on the Tomcat Server successfully. However, after ...
0
votes
0answers
32 views
Eclipse adding a <Context> node to Tomcat's server.xml makes my App not load
I am trying to find out what I am doing wrong here for a long time and I just cannot make it work.
in eclipse, make a dynamic web project called SipUA
add web.xml and a servlet class that does ...
0
votes
1answer
31 views
Jahia6.6 deployment error in maven-built module
I am trying to develop a template-set module for a Jahia site.
I used the step-by-step procedure described in the official documentation available here : ...



