Jetty is a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.
0
votes
2answers
124 views
Different servlet-api versions collision
I'm developing RestEasy web services using Maven and Jetty as the server. One of the services should use Filter that extends javax.servlet.http.HttpServletResponseWrapper. The problem is in method ...
0
votes
2answers
79 views
NullPointerException when processing asyncServlet
I am following this tutorial -
When I send request like this-
http://localhost:9090/AsyncServlet?id=99&dispatch=true&timeout=false
I am getting following-
Apr 09, 2013 4:01:09 PM ...
0
votes
0answers
87 views
Publishing JAX-WS Webservice with Guice in a Servlet Application
We are currently porting an existing JBoss EJB application to a pure servlet solution which is supposed to run in a Jetty (we're currently using version 6, but the version is mostly irrelevant) and ...
0
votes
3answers
120 views
Servlet 3.0 without a WAR file?
Is it possible to launch a webapp altogether with:
1) No war file:
http://stephenh.github.io/2009/01/10/war-less-dev-with-jetty.html
http://www.jamesward.com/2011/08/23/war-less-java-web-apps
2) No ...
0
votes
1answer
91 views
Passing parameters to resource using embedded Jetty
I have a resource I want to expose that has a constructor with parameters for injection. However I'm not using any injection framework, and I've got Jetty embedded.
Right now Jetty scans for ...
0
votes
0answers
42 views
java web project war file in jetty
I ve dynamic web project war file and its working in local jetty server but its not working in common machine where we will host.
The problem in not functionality but with UI wise. I ve jqGrid in a ...
0
votes
1answer
36 views
jetty hangs on when accessing ServletRequest methods in async context
I am running the code given in answer to this question-
Servlet-3 Async Context, how to do asynchronous writes?
Instead of response.getWriter().write(some_big_data); I've changed that line to
...
0
votes
1answer
87 views
I can't get Jetty8 etc/jetty-webapps.xml extractWars=“false” to work
I am migrating my application from Jetty 7 to Jetty 8 and it is not going so well. The battle is currently at etc/jetty-webapps.xml. Prior to this migration, our configuration always set this value ...
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
72 views
jetty and etc environment on ubuntu 12.10
When running jetty project under IntelliJ I have no problem to read environment variable I set to /etc/environment using the System.getenv("var1") api.
When I deploy the war to Ubuntu server that ...
0
votes
1answer
131 views
Error when trying to use WebSockets on JBOSS with Jetty 8.1.8 & Netty 3.2.7
I have tried to create a websocket servlet on JBOSS with Jetty 8.1.8 & Netty 3.2.7
I am using a client that works with Tomcat so i dont think it is the problem
I keep receiving Null Pointer ...
0
votes
1answer
83 views
Jetty: Precompile JSPs using ant
I am trying to precompile my JSP files with Jetty, so I do not have to ship a compiler with my Jetty project. I am using Ant to achieve this, but there appears an error and I don't know how to solve ...
0
votes
0answers
31 views
Jetty MITM SSL using ConnectHandler
I would like to write a SSL MITM proxy using Jetty. I've gone through some examples and it seems that I can use org.eclipse.jetty.server.handler.ConnectHandler for HTTP Connect tunneling.
Is there a ...
0
votes
1answer
149 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 ...
1
vote
0answers
93 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 ...
0
votes
2answers
163 views
Embed Apache ZooKeeper in Jetty generates Debug log message
I am using Jetty 8 and ZooKeeper 3.4.5. When I connect to ZooKeeper, jetty keep generating DEBUG level message. How to suppress it?
16:54:56.757 [main-SendThread(127.0.0.1:2181)] DEBUG ...
0
votes
1answer
44 views
How to figure out if javax.servlet successfully sends the response
I'm using a jetty server to handle http requests. I would like to know if there is any way I can check if the response is successfully sent back to the client. Is there an error code or status that I ...
0
votes
1answer
36 views
Select the default Artifact/Bundle to show for '/' in a Virgo/OSGi/Jetty Environment
Sorry if this is a bit noobish, but I've never done Jetty config, let alone in an OSGi environment.
I'm to make a specific URL show /ui/dcx/ by default.
I have looked at all the config files I've ...
0
votes
1answer
28 views
adobe connect cross-origin filter
I am creating a web app that checks the status of other sites and services. One page checks whether other sites are up on other domains. Most sites are using IIS7, so I just have to add an http ...
0
votes
2answers
134 views
How to Run Jetty Example with Ring in Clojure
I am following along with this example on creating a simple web service in Clojure using ring and jetty.
I have this in my project.clj:
(defproject ws-example "0.0.1"
:description "REST ...
0
votes
1answer
82 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?
2
votes
0answers
51 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
2answers
77 views
Scalatra app on Openshift - setting Jetty IP
I'm trying to deploy a minimal Scalatra application on Openshift with DIY cartridge. I've managed to get SBT working, but when it comes to container:start, I get the error:
FAILED ...
0
votes
0answers
144 views
Session persistence issue with Hazelcast, Jetty and Nginx
I'm using Hazelcast as a webapp session storage for Jetty instances. There is also Nginx in front of the Jetty instances as a load balancer.
Problem:
Session sharing works out perfect as two of my ...
0
votes
1answer
77 views
change generated war name using maven jetty plugin
I am using maven Struts2 blank artifact to create my web application. Here is my pom.xml :-
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
0answers
50 views
How to enable log4j debug logs in each node when jetty has multiple nodes
I have three nodes in my jetty and I just want to enable log4j debug logs only in node 3.
Below is my log4j file and this is located in the resource folder in jetty.
<appender name="CONSOLE" ...
1
vote
1answer
588 views
java.io.IOException: Broken pipe
We are currently migrating a legacy application to Jetty. And I have somehow an exception regarding a broken pipe.
Java 6
Jetty 8.1.8
Spring 3.2.0
I am trying to migrate a Glassfish web ...
0
votes
1answer
109 views
Jetty Error: java.lang.NoClassDefFoundError: com/mysema/query/dml/UpdateClause
I run
mvn jetty:run-war
See this error:
java.lang.NoClassDefFoundError: com/mysema/query/dml/UpdateClause
at java.lang.Class.getDeclaredMethods0(Native Method)
at ...
0
votes
1answer
24 views
Jetty plugin only maven dependency
I'm developing CXF web services with JDK 7 + Eclipse Juno + Maven 3 and deploying on a WebSphere 7 Application Server.
I've spent hours to fiund the right configuration of dependencies (a complex ...
0
votes
1answer
69 views
How to deploy my web application to jetty9 as root application?
When I use jetty6, I use the following:
<Configure class="org.mortbay.jetty.webapp.WebAppContext">
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- ...
1
vote
0answers
67 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 ...
0
votes
1answer
147 views
Tomcat or Jetty for Java server application
Suppose I have to design a server to process concurrent completely independent HTTP requests. The processing is mostly CPU-bound (no database is involved).
Requests are relatively small (1-10K) and ...
-2
votes
2answers
63 views
Embedded Jetty + PrimeFaces [closed]
I can't find any example of how can I use JSF with PrimeFaces on an embedded Jetty in Java under Eclipse. May I have this code example with all the configuration files? Thank you all.
2
votes
2answers
99 views
How can I run multiple Ring apps on the same server?
I’m new to Ring (and Clojure server-side programming in general). I have a Ring-based app that works well in “development mode”, i.e. it can listen on localhost:3000 and it responds appropriately. As ...
0
votes
1answer
61 views
Grails request object null in Jetty 8.1
The following code works as expected on Grails 2.0.4 and Eclipse STS 3.2 using Eclipse's embedded tcServer 2.7 as the web container...
class TestController {
def service() {
println ...
1
vote
1answer
300 views
Integration tests using jetty, hsql, jndi, and spring
I am attempting to create some integration tests for my Spring web app using Jetty accessing a local HSQL database. The goal: run the tests using Selenium (or similar), mock/stub out all external ...
0
votes
1answer
72 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
1answer
45 views
In SOLR, how can I query to find an indexed keyword inside a user provided search query?
I am running SOLR 3.6, and have documents that have tags indexed. When a user enters a search phrase, I'd like to be able to find documents with tags contained inside that query.
E.g, a user ...
0
votes
2answers
40 views
External static resources with Jetty
I have the following Jetty config:
<webAppConfig>
<defaultsDescriptor>${project.basedir}/configuration/webdefaults.xml</defaultsDescriptor>
...
-1
votes
1answer
75 views
Why do i get ExceptionInInitializerError in my code?
I would like to know why am i getting an ExceptionInInitializerError?
Platform:
Windows;
Glassfish 3.1.2.2;
Notepade++;
Cometd java libraries;
Jetty libraries;
Javac command line;
I'm walking my ...
1
vote
3answers
97 views
How to load JSF / facelets library from a common directory?
We have a number of webapps that all use a certain JSF library. We'd like to place the library in a common location or on the main classpath. The trouble is that the system expects the library to be ...
1
vote
1answer
96 views
Talking to the spdy server with java client
I have started a spdy proxy server using jetty9.
jetty-spdy-proxy.xml:
<New id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory">
<Set ...
0
votes
1answer
22 views
how can I config jetty version with maven-jetty-plugin?
I want to run a webapp with Jetty-6.1.25, but how can I config the version number of jetty with maven-jetty-plugin?
0
votes
3answers
128 views
Why doesn't maven include the JSP files in my jar?
I have an embedded jetty (version 8.1.8) web app I am packaging as a jar and which uses JSP for its frontend. It is built with maven version 3.0.3. The problem is that when I do: mvn package it is ...
1
vote
1answer
32 views
Using 'SEARCH' or 'PATCH' with jetty
This basically has me at a loss, and has for almost a week. I'm working on a part of company architecture, trying to get REST all set up. There are two methods that are not in the javax.ws.rs package ...
0
votes
0answers
49 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>
...
1
vote
0answers
234 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 ...
0
votes
1answer
42 views
Get Jetty HttpClient to follow redirects
I've got a program that uses Jetty version 8 to send an http post. My response handler works, but I'm getting an http response code 303, which is a redirect. I read a comment that jetty 8 has ...
1
vote
1answer
77 views
Weld injected HttpSession into the session scoped bean is null
I'm running GWT app on Jetty 6.1 with Weld 2.0.
Got the next code:
@SessionScoped
public class SessionContext implements Serializable {
@Inject
private HttpSession ...
0
votes
1answer
39 views
Embedded Jetty app with 2 ContextHandlers listening at same port - Loading issue
My embedded jetty app (using 6.1.26 jetty) has 2 context handlers registered to it. Both are listening at same port. Below is the sample.
Server s = new Server();
Connector c = new ...
