Jetty is a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.
0
votes
0answers
8 views
display android files with jetty and download them
I'm developing a software an android and a desktop application, for my desktop application I'm using a web server so I can display and transfer files between them, now my question is can any one show ...
0
votes
1answer
5 views
jetty-maven-plugin from mortbay to eclipse HTTPS setting
I was using jetty-maven-plugin with groupId mortbay but I want to use the lastest Jetty version 9.
As we can see mortbay does not provides jetty version 9 ...
0
votes
0answers
6 views
How can I know the PORT of jetty when it is initializing?
I use "bin/jetty.sh start" to start my server, How can I know the PORT of jetty when it is initializing in my app?
0
votes
0answers
14 views
Spring STS Jetty is running instead of Apache Tomcat 7
I am using Spring STS 3.10. I have following questions (when I run project as web application).
1- What is the difference between Run as -> "Run on Server" and Run as -> "Web Application" .
2- I ...
0
votes
1answer
14 views
Deploying dynamically using hot deploy in Jetty
I am looking for way to do hot deployment with jetty 6. In my case I have to do a hot deployment for a jar. Using the configuration how can I specify to hot deploy for a jar file. It is specified that ...
0
votes
0answers
9 views
Jetty server hot deployment [duplicate]
I am using jetty 6 version. I need to implement hot deployment for a jar. When I browsed through net I found the below settings in jetty.xml
<Call name="addLifeCycle">
<Arg>
<New ...
0
votes
1answer
28 views
jetty on android is crashing
hey I am developing an android application and I came to a problem, I want to develop a web http server for my android application and through my research I came across this example
Integrate Jetty ...
0
votes
0answers
15 views
Scalatrasuite tests always failing in sbt, succeeds when running test in IDE
I've been having a bit of an issue with ScalatraSuite unit testing with ScalaTest in sbt.
Versions that I am using:
Scalatra: 2.2.1
ScalaTest: 1.9.1
ScalatraScalatest: 2.2.1
Jetty: 9.0.2.v20130417
...
1
vote
1answer
11 views
Hot deployment using jetty server
I am using standalone jetty server in my application. I want to do a hot deployment for a jar. When I browsed through net I found the below settings in jetty.xml
<Call name="addLifeCycle">
...
1
vote
0answers
11 views
Jetty Continuation handler registration
I'm writing a servlet that runs commands on an exsisting java system ("MyJavaSystem") and write output to user.
The commands executed are asynchronous and servlet must return each result line to ...
0
votes
0answers
10 views
setting ssl keystore at runtime in Jetty
Is it possible to change keystore at runtime? Currently I am setting up SSL before I do a server.start() -
sslContextFactory.setTrustStore(ks);
...
0
votes
0answers
14 views
Jetty REST json service - My services response is being cached and I don't know why
Mad probs for the zilians of answers I've found on this garden of eden. Finally I have an issue I can't solve and find, and I hope you guys wouldn't mind helping me out.
I'm currently working on a ...
0
votes
0answers
14 views
How do I programatically configure my Jetty Request Handler to Handle custom HTTP methods
I Have a Jetty Handler that extends AbstractHandler, from what I can tell with online research I should be able to configure this to tell Jetty to handle verbs other than post/get. I need to configure ...
1
vote
0answers
19 views
Jetty and JUnit - sending stub responses over http
I need to send a stub response over http to a requesting client from Jetty. It works when I run the Junit test independently, implies, I get the correct XML response .. but it fails when I run the ...
0
votes
1answer
20 views
Azure Visual Studio (2012) Tools unable to load java file not found exception
I have followed this tutorial
http://blogs.msdn.com/b/dachou/archive/2010/03/21/run-java-with-jetty-in-windows-azure.aspx
but I get "file not found exception when I run the program.
I have tried many ...
1
vote
0answers
12 views
Communicating from https website to http server on localhost, cross-domain
So I have a GWT webapp that needs to communicate with a desktop application. To accomplish this, the desktop program starts up a webserver at a given port (say, http://localhost:9000).
I have ...
1
vote
1answer
30 views
Jetty home system property is not set
Im trying to use the system property in my jetty config as the following:
<SystemProperty name="jetty.home" default="" />/etc/jetty7/context
But the jetty.home always returns empty. How can i ...
0
votes
0answers
10 views
enable JMX in embedded jetty
I want to enable JMX in jetty 9 for collecting statistics.
According to the documentation I have to do this as follows
Server _server = new Server();
// Setup JMX
MBeanContainer mbContainer=new ...
0
votes
5answers
32 views
Unable to run jetty start.jar
When I run start.jar I get the following error:
Exception in thread "main" java.lang.UnsupportedClassVersionError: org/eclipse/
jetty/start/Main : Unsupported major.minor version 51.0
at ...
-1
votes
1answer
18 views
Jetty 6 -> Jetty 7.5+ gives “No such servlet” exception
My project runs great on Jetty 6, however on Jetty 7.5+ (I checked 7.5, 8.1 and 9.0) I get No such servlet exception on Jetty startup (project deployment, I guess).
web.xml
<servlet-mapping>
...
0
votes
1answer
18 views
Map an AbstractHandler to specific path for an embedded Server (Jetty)
For JUnit tests i want to add a handler to my embedded jetty server. I can do this by this code:
Server server = new Server(8080)
Handler h = new AbstractHandler() {
@Override
...
2
votes
2answers
30 views
Error on getting response from HttpClient using Jetty 9
I want to get content from an external server using Jetty and HttpClient class. Now I want to copy the obtained response as HttpServletResponse and return to client (Browser). I've tried something but ...
0
votes
1answer
40 views
+50
Highcharts-Export Server 2.0.1 Errors Under Windows
EDIT:
Has anyone got a working app.properties file for working under Windows and Jetty?
I have resolved some of these issues listed below by making this modification to app.properties:
# location of ...
0
votes
1answer
24 views
Jetty does not want to listen on port 80
I want to change the default port the Jetty 9 is listening on from 8080 to 80. I've edited the jetty-http.xml file to look like this:
<Call name="addConnector">
<Arg>
<New ...
2
votes
1answer
22 views
Jetty Maven plugin reload ignores web.xml listeners
I have a Spring MVC Java web application using 2 Spring contexts. The root application context, loaded via ContextLoaderListener, and the servlet Context.
I'm loading the application with the Jetty ...
0
votes
0answers
11 views
classpath mess when deploying war with org.eclipse.jetty.server.Server
I am using org.eclipse.jetty.server.Server to start jetty and deploy war.
I have something like this:
class Runner {
private static void run(String[] arg) {
Server server = new Server();
...
0
votes
0answers
10 views
how to deploy guvnor in embeded jetty
Background:
I use eclipse, maven, embeded jetty, drools and guvnor in my project, and I want to deploy guvnor to embeded jetty, and try to call rest api in java.
Here is what I've done:
(1) ...
1
vote
2answers
18 views
Amazon EC2 - Windows 2008R2 instance not reachable
I just set up my first Amazon EC2 instance (Windows 2008 R2 server) and istalled a jetty 9 on it. But i can not reach it with it's public IP (as shown on the desktop of that system) on port 8080.
I ...
0
votes
1answer
16 views
Web socket error close codes specific to browser
I am using Websockets in my application for streaming purpose .
I am using Jetty in back end for this purpose
On to the onclose call back method i have this
@Override
public void onClose(int ...
0
votes
1answer
17 views
Jetty 9 embedded mode without web.xml and war file
I have used Jetty 8 in its embedded mode to develop a web application without a web.xml and a war file. However I don't really know how to do the same in Jetty 9. It seems that some things have ...
0
votes
2answers
37 views
Incorrect MIME type for GET requests
I've been using the Lift Web Framework as a REST only service for quite a while, but I need to use it as a stand alone tool now.
<lift:surround with="default" at="content">
<head>
...
0
votes
0answers
25 views
What is the accepted 'elegant' solution for parsing URL strings to select a response function in Jetty?
Question is,
What is the accepted 'elegant' solution for parsing URL strings to select a response function in Jetty?
I've provided some background, but feel free to skip my waffle!
The situation ...
0
votes
1answer
30 views
Jersey resource not resolving in OSGI
I have been following this tutorial video which shows how to run a jersey server(EDIT: A JAX-RS server via Apache Wink, see accepted answer) in OSGI. It is a short video and the process seems mostly ...
0
votes
1answer
20 views
Jetty Websockets can't connect to server
So I have correctly setup a jetty (eclipse based) server listening on 8080. (i put a little hello world html to test). So if I go to
http://localhost:8080/index.html
my html is displayed.
Now I ...
0
votes
0answers
22 views
Debug gradle jettyRun in IntelliJ
I run Jetty from the command line with:
export GRADLE_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=9999,server=y,suspend=n"
gradle jettyRun
and see:
Listening for transport dt_socket at ...
0
votes
1answer
13 views
Disable cookies in embedded eclipse Jetty via vm argements
How to disable cookies in embedded eclipse Jetty via vm argements like "-Dorg.eclipse.jetty..."?
1
vote
0answers
13 views
Jetty-runner.jar set request timeout
Is there a parameter setting that I can pass when running jetty-runner.jar to configure the request timeout?
Ex:
java $JAVA_OPTS -jar server/jetty-runner.jar --port $PORT target/*.war
I'm trying ...
0
votes
0answers
21 views
Jetty start-up optimaza
I am using apache CXF to generate java source classes from wsdls (aprox 50), which are loaded in jetty server. Jetty (v.7.4.5) is started programmatically using ...
0
votes
1answer
18 views
Jetty 8.1 flooding the log file with “Dispatched Failed” messages
We are using Jetty 8.1 as an embedded HTTP server. Under overload conditions the server sometimes starts flooding the log file with these messages:
warn: ...
1
vote
2answers
45 views
What is the best way to run integration tests using a web server?
As the title says, I'm interested in the best approaches of testing an application using a Jetty web server, taking in consideration that you don't want to start/stop the test server for each ...
0
votes
0answers
28 views
Configure OpenGeo's Jetty to run php scripts
I am using OpenGeo package on windows to develop a web mapping application with sdk suite. I would like to create a submit form dialog box with a php script, which saves the data to the database. ...
0
votes
1answer
22 views
Remote access for Geoserver…Local host only
I am a GIS tech trying to get migrate to Geoserver, unfortunately I am not very savvy on web hosting.
I installed the Windows version 2.3.1.
I was able to build by map and access it through ...
0
votes
0answers
18 views
embedded jetty “new Server(port)” throws NoClassDefFoundError
i try to develop a app on android with an embedded jetty to run some servlets.
What i did:
-imported the jetty-all-server-8.1.10.v20130312.jar and configured the build path
in my mainActivity i use ...
1
vote
0answers
37 views
Google Guice & Jersey multiple URL patterns to same servlet while applying package filtering
I am trying, using Jersey & Google Guice 3.0, to map 2 different URL patterns to the same servlet and each of these URL patterns to be applied to a different package in my project.
To be clear I ...
1
vote
0answers
31 views
tile3 + struts says no definiton found in Jetty
I tried tiles3+struts/spring mvc several days with jetty9, it doesn't work at all reporting no definition error. I checked the configuration again and again. At last I switched to tomcat for luck with ...
0
votes
1answer
28 views
Jetty Server - It dont run after 6 call function doGet(), how to fix it?
I have small code like:
protected void doGet (HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
System.out.println("ok");
try {
...
0
votes
0answers
18 views
Jetty server returns 500 error after restart it works fine
My application is deployed in jetty app server. The problem I face is all of a sudden the application gets very slow and finally throws an 502 Internal server error.
When I restart the server and ...
1
vote
1answer
71 views
Spring Maven - context configuration in resources folder
As I found in other question at stackoverflow, it is better to keep the configuration of spring in src/main/resources folder. However when I use mvn jetty:run it tries to load context configuration ...
-3
votes
0answers
20 views
Jetty9 doesn't work with tiles3 [closed]
I tried tiles3 several days with jetty9, it doesn't work at all reporting no definition error. I checked the configuration again and again. At last I switched to tomcat for luck with the same war, and ...
0
votes
1answer
23 views
How to start webapp with embedded jetty from a different project
here is a quick question: is it possible to start web-app with embedded jetty from a different project?
I am trying to run (with JUnit) the following code:
Server server = new Server(80);
...

