Jetty is a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.

learn more… | top users | synonyms

9
votes
0answers
388 views

Jetty WebSocketClient over ssl

I've got a WebSocket server running in an embedded jetty (8.1.8.v20121106) and would like to connect to it from another Java application with the jetty WebSocketClient. This is the test method I use: ...
4
votes
0answers
45 views

Jetty to forward specific request to only a single path

How would I setup Jetty to forward only a specific parent path to a directory? For example when the user requests: localhost/ it should go to localhost/CorrectDirectory. Any requests such as ...
4
votes
0answers
312 views

how to handle Jetty exception - a long running http request times out, but the process it calls never terminates and Jetty is unhappy

I have a jetty server handling long running http requests- the responses are generated by an a different process X and end up in a collector hash which Jetty requests periodically check. There are 3 ...
4
votes
0answers
363 views

Gradle Jetty plugin locking files

Is there a way to fix the file locking issue caused by jetty entirely from gradle? Some clarification: When using the Gradle Jetty plugin by running gradle jettyRun, jetty causes the static resource ...
4
votes
0answers
168 views

How to let jetty block the request when reloading modified classes?

I'm using dcevm + run-jetty-run + livereload , try to develop a web app without restarting jetty when modifing java sources. Everything works fine. When I modified a java class, livereload monitored ...
4
votes
0answers
578 views

how to set the contextPath of jetty on xsbt-web-plugin?

I'm on sbt 0.11.1 and xsbt-web-plugin 0.2.10 here goes the build.sbt and plugins.sbt build.sbt organization := "org" name := "demo" version := "0.1.0-SNAPSHOT" scalaVersion := "2.9.1" ...
4
votes
0answers
337 views

How to resolve JNDI conflict between Jetty and OpenEJB?

I'm running Jetty (from Maven) with OpenEJB inside. The problem is that they conflict through JNDI context. The problem was explained some time ago by Stephen Connolly with a solution. The solution ...
3
votes
0answers
205 views

JQuery Mobile Error Loading Wicket BookmarkablePageLink

I am new to JQuery Mobile. I have an Apache Wicket-based application that I'd like to try JQuery Mobile on so it looks more pleasing on mobile devices. Unfortunately, I am getting "Error Loading ...
3
votes
0answers
301 views

jetty: how to declare JVM scoped jndi entries and bind to java:comp/env

I'm trying to define some JNDI entries in the Jetty server (they will be JVM scoped) but they aren't getting automatically bound to the "java:comp/env" namespace as expected. I'm following the ...
3
votes
0answers
127 views

Getting stucked starting Jetty until I strike enter

I have an issue with run-jetty-run Eclipse's plugin. I use basic configuration, without any changes : no SSL, parentLoadPriority, ... Each time I launch it from "Run As > Configuration", server is ...
3
votes
0answers
451 views

Embedded Jetty Throws EofException and SocketException

I have an embedded Jetty Server(with basic authentication and SSL). When it starts to run everything is OK. Response time is at milliseconds. However after a time later response time increase to 10 ...
3
votes
0answers
182 views

Trying to upgrade to jetty-runner 8.1.5, startup fails on JSTL <%@ taglib %> import of the JSTL standard tags

My actual goal is to get <%@ page trimDirectiveWhitespaces=true %> to work. I'm running my web application with jetty-runner 7.4.2 currently. As a random thing to try, I downloaded a newer ...
3
votes
0answers
284 views

SoapUI jetty thread still hanging after MockService stopped [SoapUI API]

I'm using SoapUI 4.0 and i'm starting my mockservices via SoapUI API : public static void startMockServices(String soapuiProject) throws Exception { WsdlProject proj = new ...
3
votes
0answers
749 views

Jetty secure session cookies when behind reverse proxy using HTTP

I am using a reverse proxy (Apache) in front of Jetty 6. Users connect to Apache with SSL, and Apache forwards some of the requests to Jetty over plain HTTP. I want Jetty to use secure session ...
3
votes
0answers
588 views

CruiseControl: Does not start - how to determine reason?

CruiseControl does not start any more (only known change was adding new memory to the machine.) Ok, it seems to start: Calling the web gui brings: HTTP ERROR: 404 NOT_FOUND RequestURI=/ ...
3
votes
0answers
1k views

Jetty6 service and administrator rights

How do I determine if my Jetty6-service run with administrative rights? I need to setup Jetty on my XP dev box to run as a service. http://docs.codehaus.org/display/JETTY/Win32Wrapper It installs ...
2
votes
0answers
17 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 ...
2
votes
0answers
50 views

Approach for system testing using maven, cargo, jetty and HSQL

I have been trying to get some Selenium system test cases to run during the integration-test phase. I want Cargo to deploy the WAR to a local Jetty installation. Then I want my test cases to run, ...
2
votes
0answers
227 views

Maven deploy to remote server

I want to deploy on Amazon EC2. But I can't deploy.. i need some help. I use maven project & jetty component. Here is my code. pom.xml <dependencies> ... </dependencies> ...
2
votes
0answers
130 views

RESTful POST issue (GWT): application/x-www-form-urlencoded instead of application/xml

I am writting a GWT client. I need to send a post request to call a REST service on my server. RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, url); builder.setHeader("Content-Type", ...
2
votes
0answers
40 views

How do you configure the FROM field in a jetty email configuration?

I'm configuring version 1.4-M3 of Archiva running standalone with Jetty. The configuration works (I get the emails). However, they're being reported from "root@localhost". As you can see in the ...
2
votes
0answers
895 views

Bad version number in .class file

I am trying to deploy a webapp in my local Jetty with Maven. My Java -version in command line is java version "1.5.0_22" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_22-b03) Java ...
2
votes
0answers
123 views

Tomcat / Jetty - Intermittent request not handled

I am deploying a Java SOAP servlet with Tomcat/Jetty on a Red Hat server. I start a client on another server that sends 5 requests per seconds. I have a read timeout of 10 seconds and requests take an ...
2
votes
0answers
60 views

Jetty Deployment Order

I have multiple wars getting deployed in jetty 8.1.4 using ContextAppProvider. we want to specify the order in which war apps are deployed, as we have some wars depend on other wars. So how to set ...
2
votes
0answers
222 views

ContextNotActiveException with CDI

I am trying to set up CDI (for @ConversationScoped) within an app using JSF/Primefaces and deployed on Jetty. I am receiving this exception with (what I believe is) a very basic ConversationScoped ...
2
votes
0answers
255 views

Why this happens all the time? Solr OutOfMemoryError GC overhead limit exceeded

I am doing a load test for my Solr application. The index has more than 200 million documents. I use the default Jetty server and set up the maximal JVM memory as 4GB. To test my app, I make up 5000 ...
2
votes
0answers
346 views

Camel : jetty as input, soap as output

I would like to do a simple code with camel, to redirect an URL listener to a soap web service. I have a simple PHP helloWorld SOAP web service available. I would like to type ...
2
votes
0answers
146 views

Timezone conversion doesn't work when run on Jetty server

I made a timezone conversion script in Java. When I ran it, it completed and I got output. When I ran the same code in a Jetty server, I got some problems. E.g. for system time 2012/05/29 18:36:41 ...
2
votes
0answers
684 views

GWT Jetty WebSockets 405 Error

I'm trying to modify the standard GWT StockWatcher demo app, to recieve the stock quotes via a websocket. I'm using gwt-ws as my websockets implementation, and as per the gwt-ws homepage's ...
2
votes
0answers
363 views

Jetty closing async http requests properly and not leaving horrible amounts of sleeping threads around

My application uses embedded Jetty as the http interface, and it seems to hang after 2-3 weeks of uptime. Upon inspection there were a lot of sleeping threads, so I ran it locally with jvisualvm and ...
2
votes
0answers
184 views

How do I use a web.xml file with noir?

I'm writing a web app in clojure, and want to edit Jetty's settings. One way to do this is to use a web.xml file. How do I use a web.xml file with Jetty?
2
votes
0answers
293 views

Apache web server SSI and Jetty

I am trying to use Apache mod_include for SSI. I have a java application that is being served currently with Jetty. I have been able to get SSI working directly with Jetty but I'm now trying to have ...
2
votes
0answers
310 views

Is it possible to replace JettyWebAppContext in Jetty executed by jetty:run (jetty-maven-plugin)

I'm using Jetty 7.2.2. I want to handle all requests with my own Handler (class: WebAppContextWithDispatcher). But when I start Jetty by executing goal jetty:run in jetty-maven-plugin, ...
2
votes
0answers
510 views

Which servlet container should I used for Solr: Tomcat or Jetty?

My group is writing a PHP/MySQL Web application that will also use a Solr installation to index Word and pdf documents (curriculum vitae, actually). We are in the process of deciding what servlet ...
2
votes
0answers
156 views

Send customized response after custom certificate validation with Jetty 7 failed

we are currently using a certificate based login for our webapp (running Jetty 7.4) With JSSLUtils I configured a custom org.jsslutils.sslcontext.X509SSLContextFactory that basically inspects a ...
2
votes
0answers
396 views

index.jsp in Jetty failing to redirect when dirAllowed=false

I was tasked with correcting a listable directories vulnerability in a Java web project running on Jetty. I did this by adding the following to the project's frontend jetty config XML file as a child ...
2
votes
0answers
783 views

deploy web app to jetty: service_unavailable

i have a gwt app deployed to Jetty, i use maven, maven-jetty-plugin, following the instruction provided here: http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin, my project follows the maven ...
2
votes
0answers
437 views

are expanded war files faster?

I'm using embedded jetty to launch a web application which I have currently packaged as a war file. At first I was trying to prevent my war file from being expanded; then I began to wonder: Q: is ...
1
vote
0answers
11 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 ...
1
vote
0answers
27 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 ...
1
vote
0answers
36 views

Embedded Jetty and favicon

I am using Jetty embedded in my application as follows: ResourceConfig rc = new PackagesResourceConfig("my.jersey.resources.package"); ServletHolder servletHolder = new ServletHolder(new ...
1
vote
0answers
305 views

Basic Websocket-Example for Jetty 9

I'm trying to make a real basic Websocket example work on standalone Jetty, but i'm stuck on a NullPointerException. Here are my 2 server classes: @WebServlet("/MyWebSocketServlet") public class ...
1
vote
0answers
169 views

Creating an executable jar executing a war file with embedded jetty

I'm new to jetty. I need to make a executable jar which embed jetty as well as a war file. On double clicking this jar, the Server should start and deploy my project war file.This is the code that i ...
1
vote
0answers
90 views

Google App Engine/Jetty: Introspection Fails for Dynamic Proxy?

Why does Introspector not correctly discover the properties of a dynamic proxy class in Jetty/GAE? I ran into this curious problem while trying to use a dynamic proxy with Java EL/JSPs when deploying ...
1
vote
0answers
65 views

NPE while executing jetty websocket servlet on GAE

am working a chat app using jetty WebSocketServlet. But when i am executing that application, eclipse console displaying null pointer exception same as in the url Jetty 8.1.9.v20130131 Web Socket ...
1
vote
0answers
219 views

IntelliJ idea - Jetty duplicate configurations found?

I have IntelliJ Idea 12 and Jetty 9 on my Windows 7 machine. I also have a sample JSF project which runs fine on Tomcat 7.0. When I try adding a runtime with Jetty, I get the error: Duplicate ...
1
vote
0answers
105 views

Jetty maven plugin unable to hot redeploy shiro filter

I'm not sure if this is a jetty issue or an issue with shiro, but I am trying to use the Jetty-Maven plugin for development and one of the key features I want is Jetty's hot redeployment when files ...
1
vote
0answers
79 views

Java : How to find out the reason / cause for Web Socket disconnect

We are using Socket based implementation in our Application and below is the class that is responsible to do the work . public class TestWebSocket implements WebSocket, WebSocket.OnTextMessage { // ...
1
vote
0answers
106 views

Using ServletContextListener with Jetty

I want to test my ServletContextListener with embeded jetty. It calls contextDestroyed on server stop but doesnt call contextInitialized on server start. How can I fix it? Server server = new ...
1
vote
0answers
46 views

Can't connect to GWT project in dev mode from Appcelerator iPhone application

i have a GWT application that contains a servlet to handle my Appcelerator mobile application requests. i binded the GWT application to all IPs using -bindAddress 0.0.0.0 in project x-arguments. all ...

1 2 3 4 5 15