Jetty is a widely used web container (server) written in Java and produced by Eclipse.

learn more… | top users | synonyms

1
vote
0answers
20 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
21 views

Load different spring configuration when running integrations tests

I have the following setup: normally my webapp will be deployed on stand-alone server and connect to MySQL database. However I want ability to "self-test" the application with Selenium. So during mvn ...
0
votes
0answers
11 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 ...
1
vote
1answer
27 views

embedded Jetty in Eclipse RCP

I have a problem for embeding Jetty into my Eclipse RCP application. In my RCP application, when user click some button, a browser will be opened and some jsp page shown. The jsp files are in a ...
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
1answer
29 views

Jetty 9 fails to run on Android

I'm trying to use Jetty 9 on Android 4.2 but i got this exception: 05-20 16:27:44.230: E/dalvikvm(27558): Could not find class 'org.eclipse.jetty.server.Server', referenced from method ...
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..."?
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: ...
0
votes
0answers
30 views

Neo4j Server: How to set connection timeouts

How do set - in my case raise - the connection timeouts of the Neo4j server? I have a server extension to which I POST data, sometimes that much that the extension is running for a couple of minutes. ...
0
votes
2answers
30 views

How to control chunks in jetty?

I'm writing HTTP webservice that may take quite long to produce results. I use embedded Jetty 8.1.5 and JAX-RS (Apache CXF) I decided to go with some kind of control protocol: when new request comes, ...
1
vote
1answer
20 views

Embedded jetty server stream data continuously

Apologies if the question is duplicate, I tried to look for it but could not get any idea. My scenario is something like this: I have an embedded jetty server running in a java application with few ...
0
votes
1answer
21 views

Jetty 8: proxyservlet use ExecutorThreadPool or QueuedThreadPool

I'm using Jetty 8 with its ProxyServlet, and was wondering what's the fastest threadpool to use, ExecutorThreadPool or QueuedThreadPool? This is the code I'm currently using: Server httpProxy = ...
0
votes
1answer
70 views

Embedded jetty processes requests running from eclipse, but not deployed

I have an application embedding Jetty as the web server to host an RESTful API. I've been developing it in Eclipse on Ubuntu, and when launched from the IDE everything works great. When I package up ...
0
votes
0answers
111 views

Jetty - SSL Websocket Client

I have a websocket server (API of jetty 9.0.1.v20130408), which worked fine without ssl. Now I configured my server like this: SslContextFactory sslContextFactory = new SslContextFactory(); ...
1
vote
1answer
106 views

Spring MVC cannot find JSPs when deployed into embedded Jetty 8 server

I'm trying to run embedded Jetty server and deploy Spring MVC application into it, but there is a problem of resources mapping - particulary I can't map spring mvc controller so that it can find my ...
2
votes
1answer
173 views

jetty 9, websockets and closing websocket connection on server side

I have an application that uses a websocket server based on jetty 8. Everything is working great, and when the user refreshes the page, closes the page or move to another page the connection is closed ...
0
votes
1answer
30 views

Printing jetty output to Eclipse console window

I am developing an Eclipse plugin that includes starting an embedded jetty server, i.e. Server jetty = new Server(8080); WebAppContext webapp = new WebAppContext("webapp", "/webapp"); ...
0
votes
0answers
82 views

Authentication with embedded Jetty

I am attempting to add Digest Authentication to an API being made available over HTTP, using embedding Jetty. I have no web.xml, this is not a webapp. The application starts up by creating a ...
1
vote
1answer
78 views

Jetty9 multiple listeners

I am trying to port my Java app which uses Jetty 8 to Jetty 9. With Jetty8 I was able to instantiate 2 jetty "servers" listening on different ports, however with Jetty9 only the first server will ...
0
votes
2answers
59 views

ServletRequestListener - Getting the userprincipal returns null

I'm having a web-application that is secured with HTTP-Basic auth. I also implemented a filter using the ServletRequestListener interface. Now when the filter calls the requestInitialized method, the ...
0
votes
1answer
50 views

SLF4J multiple bindings error on jetty 9 embedded webapp when trying to log jetty logs

I try to build a standalone version (executable jar) of a webapp. So I use jetty to load the war file. The war file already contains slf4j and logback as dependencies. In my standalone app I have a ...
0
votes
2answers
35 views

Jetty custom status message ??

I am writing a service in clojure (using ring and compojure) which should change the status message. It is running on embedded Jetty 8. For example I have 200 OK and I would like to have ...
0
votes
1answer
68 views

How to add Access-Control-Allow-Origin to jetty server

I've got a jetty server to run my web services. Recently I developed a program to consume the web service and ran into Access-Control-Allow-Origin issue. How can I add the ...
0
votes
2answers
57 views

Spring Autowiring Issues in a Servlet

I am having some issues with Autowiring First off i create an Embedded server Main.java Server server = new Server(8080); CXFNonSpringServlet cxf = new CXFNonSpringJaxrsServlet(); ...
0
votes
1answer
71 views

Embedded Jetty and Jax-rs xml configuration

Hey guys i am trying to configure and run a Restful service using Embedded-jetty and jax-rs i found this tutorial and it works brilliantly however one of my requirements is to configure as much as ...
2
votes
2answers
157 views

LoggingFilter is ignored in Jersey and embedded Jetty

I'm trying to configure LoggingFilter for Jersey in an embedded Jetty setup. The glue code that is used is as follows: ServletContainer servletContainer = new ServletContainer(application); ...
0
votes
1answer
70 views

When does OnWebSocketClose fire in Jetty 9

I have a simple embedded Jetty 9 websocket server. I have a method like this in my annotated websocket implementation: @OnWebSocketClose void onClose(int statusCode, String reason) { logger.info ...
0
votes
1answer
152 views

Why is Jetty serving css with text/html content type

I'm using an embedded Jetty server in a Scalatra app. The issue is that it serves css files with text/html content type: Here is the main method: package yard.web import ...
0
votes
1answer
46 views

Does Anyone know if there is any incompatibility between COMETD and JERSEY 9? Last version of Jetty is incompatible I think

After trying to configure maven to work with the last Jetty version (embedded JETTY 9) , I tried to use cometd (last version is 2.5.1) and I figured out that is not possible to make it work. As you ...
0
votes
1answer
83 views

How can I create a number of jetty run tasks in gradle?

I need create a number of different modes for running jetty in my gradle build. They differ in system properties and classpath. How can I do it using gradle jetty plugin?
1
vote
0answers
127 views

java.lang.NoClassDefFoundError org.eclipse.jetty.server.Connector on Jetty

I have a java web app that uses Jetty embedded and when I try to run in a linux environment I have the following exception: Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
1answer
73 views

Is it possible to run a main Servlet and a ProxyServlet within :8888 in webdefault.xml?

I'm new to Java and Jetty but have an issue I'm trying to resolve. This is the only way I know how to explain what I'm trying to do so bare with me... I currently have a webapp that runs within a ...
0
votes
0answers
35 views

Getting data from a jetty web server into a grid on a web page

As a newbie to client side web development I'd like to understand the easiest way for streaming data from Jetty (in Java) to displaying in a pretty table on a web page. My preference is to use a pure ...
0
votes
2answers
40 views

External static resources with Jetty

I have the following Jetty config: <webAppConfig> <defaultsDescriptor>${project.basedir}/configuration/webdefaults.xml</defaultsDescriptor> ...
0
votes
0answers
50 views

Jetty dirAllowed flag forbids listing, but i do need a listing for authorized users

web.xml snippet <servlet> <servlet-name>default</servlet-name> <servlet-class>org.mortbay.jetty.servlet.DefaultServlet</servlet-class> <init-param> ...
3
votes
2answers
949 views

How do I create an embedded WebSocket server Jetty 9?

I hate asking such a vague question, but I'm having a hard time finding a simple example. Here's what I have so far: public class JettyWebSocketServlet extends WebSocketServlet{ @Override ...
0
votes
1answer
53 views

flushBuffer() not working

I'm running a embedded Jetty Server (Jetty 8). I wanted to make an HTTP streaming app. Thus, I have to flush my writer every few seconds (The servlet will continue running). The problem is that ...
2
votes
1answer
47 views

Is there a “Jetty server builder” project out there?

Jetty is a great container for embedding in tests or standalone apps for various purposes, and part of the reason it's good at that is that it's easy to embed because it only takes a handful of lines ...
1
vote
1answer
72 views

why is my jetty-deployed war looking for org.apache.juli.logging.LogFactory?

I am trying to deploy a war file from inside an embedded jetty server. I have the commons-logging jar in the WEB-INF/lib of my WAR. The init method of the JspServlet is looking for this ...
1
vote
1answer
15 views

Where can I find the org.mortbay classes for jetty-hightide?

I'm trying to follow these Jetty/Howto/Spring instructions. They say that you have to get a jetty-spring module which is in a jetty-hightide bundle at Codehaus. I've downloaded 2 jetty-hightide-7.5 ...
0
votes
0answers
34 views

using different security schemes with jetty

I want to embed jetty with my servlet and use 2 different security schemes for the same servlet. With HTTP I want to use digest authentication and with HTTPS I want to use basic authentication. I ...
0
votes
2answers
320 views

Using Guice Servlet with Jetty to map paths to servlets without using a web.xml

I am struggling with getting Guice Servlet working to configure how Jetty serves web requests, in this simple case, for static pages. I have created a simple application that is supposed to map two ...
2
votes
1answer
212 views

Loading war in embedded Jetty with setExtractWar(false) throws IllegalArgumentException

I'm using Jetty 8.1.9 as an API and manually deploying by adding a WebAppContext handler to the server. Server server = new Server(); WebAppContext webapp = new WebAppContext(); ...
4
votes
2answers
277 views

Is there a good way to use maven to run an executable jar?

I have a multimodule maven project, and one of the modules is for distribution. Project \ | moduleA \ | moduleB \ | ... | dist-module \ The distribution contains an executable jar that I'd like to ...
0
votes
0answers
127 views

can't get my favicon served using jetty embedded

public static void main(String[] args) throws Exception { Server server = new Server(); SelectChannelConnector connector = new SelectChannelConnector(); connector.setHost("127.0.0.1"); ...
0
votes
2answers
229 views

Embedded Jetty Server Classpath Issue

I'm trying to deploy a web application on an embedded Jetty Server. My application runs fine locally in a windows environment with the code below but when i deploy it as a JAR File on a Linux Server, ...
1
vote
1answer
71 views

need to setting multiple handlers according to some business logic

I am new to jetty, and I am trying to forward HTML5's FileSystem API calls to client as an when they are received from a JRE, it is an ambitious project to build a Web File System. so far a single ...
0
votes
1answer
164 views

Map jetty ResourceHandler to a URL

Is it possible using embedded Jetty to serve static files from directory X but mapped to URL Y? I have static files stored under directory web, but I want the URL be something like http://host/myapp. ...
2
votes
1answer
259 views

how to write unit tests for REST web services developed using apache-cxf with spring without using Maven

I have developed a REST web application using apache cxf library. I am able to access them using a browser and test. I want to write unit tests for the services. I tried testing it using embedded ...
0
votes
1answer
147 views

Embedded Jetty shutdown exception

Embedded Jetty shutdown issue. I embedded jetty within my java application. I run the application from the console. However whenever I press CONTROL+C to shutdown the server shutdowns alright but ...

1 2 3 4 5 6