-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> ...
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 ...
2
votes
1answer
23 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 ...
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 ...
1
vote
2answers
73 views

How do I send an HTTP response without Transfer Encoding: chunked?

I have a Java Servlet that responds to the Twilio API. It appears that Twilio does not support the chunked transfer that my responses are using. How can I avoid using Transfer-Encoding: chunked? Here ...
0
votes
2answers
85 views

Jetty thread pool and sun.HttpServer session

I'm trying to create simple java HTTP server (well, me too))), however I need control over thread pool and TCP session. I'd like to precreate all needed threads at startup, and also I need to close ...
0
votes
1answer
34 views

Error in invoking asynchronous java servlet using Eclipse & maven

I'm using Eclipse IDE to work on servlet. I have created a maven project to work with asynchronous servlet 3.0 and added proper dependency to it. The code request.isAsyncSupported() return true. Now ...
1
vote
1answer
105 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 ...
0
votes
4answers
84 views

Servlet service() method not getting called for CONNECT requests

I am trying to write a forward proxy in Jetty using Servlet 3.0. I've a simple code- public class testServlet extends HttpServlet { @Override protected void service (HttpServletRequest ...
1
vote
3answers
133 views

is it necessary install solr with a servlet (Tomcat, Jetty, etc)?

Is it necessary install solr with a servlets? I read several tutorials how to install solr, and most of them say that its necessary but, when I start Solr without Tomcat server works! And I can Index ...
0
votes
1answer
70 views

Intercept HTTP Connect in Jetty

I am writing a HTTPS proxy server using servlet 3.0 and Jetty. How can I process HTTPS Connect in jetty? Currently I am using jetty-maven-plugin and my plugin configuration looks like this- ...
0
votes
1answer
41 views

Lightweight servlet container for production use

I use Tomcat in production. Are Jetty and Winstone (What is a lightweight, fast, java servlet container?) suitable for production use? I'm happy to let go of features in return for simplicity. ...
0
votes
1answer
39 views

One JVM per application WAR in Jetty?

I'm using Jetty 8 to run some servlets. I have two (or more) applications that share source code, and I want to run them on the same port (i.e., 8080). I have placed two different WAR files into ...
0
votes
0answers
28 views

Unable to retrieve servlet attribute

Follow-up to this question- NullPointerException when processing asyncServlet I am following this tutorial and is getting value of request.getServletContext().getAttribute("executor"); as Null in ...
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
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
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
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
61 views

Jetty - using symbolic links for different app versions

I'm trying to configure jetty to switch between different apps folders. For example: I have 2 app folders (containing WEB-INF, classes, war etc) App1 and App2. I want to create a symbolic link in ...
0
votes
1answer
168 views

Java servlet request javax.xml.stream.XMLStreamException - Premature end of file

I am trying to read and parse an rss feed from a 2 jetty servers (Eclipse - Google Plugin): one with App engine SDK enabled and one without it. 1. When i test on the jetty run with app engine enabled ...
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 ...
0
votes
1answer
123 views

Unable to deploy app on google app engine using jetty:“HTTP ERROR 404 Pblm accessing /.Reason: not found”

Ive bee trying to set up a sample 'todo' google app engine example that uses Java, using an article I found here . However, when I try to run the application locally, and check the localhost:8888 ...
0
votes
2answers
57 views

Setting jetty 8 with eclipse for working with servlets

I'm trying to do super simple "Hello World" Servlet with Jetty working with eclipse. I have a Jetty Server adapter which is working, but when I try to start on my server I get the following erros; ...
1
vote
1answer
141 views

Servlet on Jetty 8 (non embedded!) + Weld for CDI

I want to deploy a WAR to Jetty 8. The WAR contains a simple servlet that has a dependency injected into it via CDI (Weld). All the examples/questions I've found online only seem to deal with ...
2
votes
1answer
125 views

Check whether an HttpServletRequest's connection is still open?

Using a synthetic load with both the client and the server running on localhost, I verified via tcpdump and netstat that the client is sending a FIN packet to the server, but the the connection is ...
0
votes
2answers
150 views

Url Shortener redirects to index.html

Yes, yet another url shortener written in java, because I wanted my own, and because why not. Currently everything works, just not they way I want to to. In short, there is only one servlet mapped ...
0
votes
1answer
262 views

jetty package org.json.simple does not exist

I have simple servlet to be used by jetty. This is fragment of my servlet: import org.json.simple.JSONObject; import org.json.simple.JSONValue; public class Oscar4Servlet extends HttpServlet { ... ...
2
votes
1answer
62 views

Can Jetty compile *.java files by automation?

Structure of my application is: /app |-src ||-Test.java |-WebContent ||-test.jsp ||-WEB-INF ||.. Configuration file fragment: ... <New class="org.eclipse.jetty.webapp.WebAppContext"> ...
2
votes
1answer
56 views

Jetty User-Defined Configuration

In my application, I have certain parameters (Strings) that I would like to change from server to server. For example, one of those parameters is a yes/no value that tells if the server is a ...
0
votes
1answer
55 views

Path specs and multiple servlets

I'd like to have two servlets (I'm using Jetty) serve URLs like this: host/aaa/submit host/bbb/submit I've tried setting the servlets' pathspecs to aaa and bbb respectively, but then I get an ...
1
vote
1answer
124 views

Jetty Proxy servlet not sending all the modified content

I am using Jetty's proxy servlet to route requests from a front-end client to Couch database. In addition to proxying, I am injecting an additional details, to the incoming request that is used by the ...
0
votes
1answer
59 views

ServletTest configuration setResourceBase to locate JSP

I have a servlet which do a getServletConfig().getServletContext().getRequestDispatcher("index.jsp") .forward(request, response) and Jetty is not locating the index.jsp file. I have set the ...
1
vote
1answer
44 views

Java embedded webinterface

For a plugin which I created I want to add a webinterface from which you can change settings and do some simple data manipulation. This data manipulation should be done trough sqlquerys. I am using a ...
0
votes
2answers
169 views

Cookie set by Application server having double quotes

I am trying to set a cookie with value unkown#4?Wn5pZ1JwQnlLEGRJAgB4WQU%3D in Servlet response. But when I set the cookie in browser it is returned with quotes surrounding it like this: ...
0
votes
1answer
66 views

How to add server classes for all contexts in Jetty?

I have jetty configured to use slf4j and logback. version 8.x According to this place http://dev.eclipse.org/mhonarc/lists/jetty-users/msg02859.html you can add those classes in the list of server ...
1
vote
1answer
87 views

unit testing java servlets with binary data

I'm attempting to write a Java Servlet unit test to send binary data http requests to the servlet and receive a binary response. Usually I use the jetty ServletTester and HttpTester to unit test ...
2
votes
2answers
538 views

Jetty not routing to servlet when web application in sub directory of webapps

I have a web application that is functioning properly (servlets called) when I place the application folder in the {JETTY_HOME}/webapps directory. If I place a copy of the web application in a sub ...
4
votes
1answer
289 views

How can I make CLIENT-CERT SSL renegotiation work in Jetty?

I have a webapp that has a public https area, and a private https protected with client certificate using SSL renegotiation. This configuration works correctly (not without a lot of work) in Tomcat 7 ...
0
votes
0answers
159 views

Failing to deploy simple hello world servlet on JETTY

I'm totally new to web applications and followed this tutorial to create a simple hello world servlet. http://www.roseindia.net/servlets/HelloWorld.shtml ...
0
votes
1answer
102 views

Servlet cannot serve a simple applet

I have a simple applet that i want to show on a local webpage that is connected with my server and servlet. Applet code: public class MyApplet extends JApplet implements ActionListener { JPanel ...
1
vote
2answers
758 views

unit test a servlet with an embedded Jetty

How can we unit test a servlet with an embedded Jetty server? For example, how to test the servlet method below? protected void doGet(HttpServletRequest request, HttpServletResponse ...
1
vote
0answers
199 views

GWT dev-mode external server class loader hell (Tough)

I have two eclipse projects (in the same workspace), one is a standard java project which runs a jetty instance. The other is a GWT project. The GWT project (on the filesystem) lives as a webapp in ...
0
votes
2answers
63 views

Why sitebricks response with 405 status when using delete method?

I am implementing a simple rest service with the 4 http methods get,post, put and delete using sitebricks. trying to send a delete request to the defined service with a WebClient I get a 405 response. ...
-1
votes
2answers
82 views

How can I setup Jetty such that it is eqvuialent to Tomcat, supporting both JSP and Servlets? [closed]

I had a Tomcat installation with a couple of webapps, and the intention is to use another JSP/Servlet engine, instead. Jetty seems like a good fit. I download Jetty 8 and started it up successfully, ...
1
vote
1answer
58 views

jetty 9 - HttpServletResponse.SC_CONTINUE not work

I use simple code servletResponse.setStatus(HttpServletResponse.SC_CONTINUE); servletResponse.flushBuffer(); In jetty 8.1 it works fine. In jetty 9.0 I get 504 result. Do you know where problem ...
1
vote
1answer
171 views

jetty servlet mapping uri to files

With HttpServletRequest.getRequestURI we can get the path the user entered when she accesses the servlet. How do I write a servlet that maps these URIs to files in my home directory. for example, if ...
1
vote
0answers
213 views

Jetty Filter to modify the Response - java.lang.IllegalStateException: WRITER

I am trying to modify the http response in a filter and am getting the following exception java.lang.IllegalStateException: WRITER at ...
0
votes
1answer
168 views

Can I add multiple servlets to a WebAppContext?

I have the following Scala code to setup a Jetty server with Scalatra. val server = new Server(8080) val context = new WebAppContext() context.setResourceBase("visualization") context.addServlet(new ...
0
votes
0answers
17 views

How can you log newline characters with ServletContext.log?

As a fallback, our log framework plugs into ServletContext.log(). Using Jetty 8.1.4, any newline sent to this method is completely ignored. I have tried CRLF, LF, double-escaped (\\n) newlines - ...
0
votes
1answer
934 views

using ReloadableResourceBundleMessageSource in annotations injection

i am using ReloadableResourceBundleMessageSource in my web project, and i inject the class to a servlet, the problem is that i want to inject the class using spring annotations and it does not work ...

1 2 3 4 5