Tag Info

Hot answers tagged

3

It is possible to deliver a CONNECT request to a Servlet service method, but it is ultimately futile to do so because it is impossible to handle a CONNECT inside a servlet. You don't really have access to the raw IO streams, only the HTTP content of the request/response. You can almost make his work, but never efficiently (no async IO etc.) So ultimately ...


3

Redirect from the old one to the new one, with a 301 Moved Permanently status code. That is the transparent, standard way of doing. If you really want to tell users not to use it, then just do that: return a page with a message saying not to use this URL anymore, and add a link to the new URL in the page.


3

To load spring config context files from classpath you have to prefix the path with classpath: <context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:context.xml </param-value> </context-param>


3

We do #2 for pretty much all of our tests in jetty itself. It is really very easy to create an embedded server and deploy an app, or a servlet, or whatever you like in it. This gives you more then just the ability to run automated tests but also a way to debug your application simply within an IDE, without all the tooling overhead of an ide. So from the ...


3

This could happen when you have some code compiled using higher JDK, try to check the JDKs used to compile your code. Besides according to the documetnation Jetty 9 needs JVM 1.7. Further links: What Version Do I Use? (Jetty Documentation) https://code.google.com/p/googleappengine/issues/detail?id=6768 Unsupported major.minor version 51.0 but everything ...


3

jetty.home is set by Jetty's start mechanism. You are using Jetty 6.1.26 (note: Jetty 6.x has been deprecated and end of life'd back in 2010. Jetty 7/8/9 are current actively supported versions of Jetty) While I don't know how Jetty 6 worked, I do know how Jetty 7/8/9 work in this respect. The Jetty start mechanism (module: /jetty-start/. aka start.jar) ...


2

You will need to use annotated websockets to get access to the websocket frames. Javadoc: @OnWebSocketFrame The Frame interface Example Socket: package examples; import org.eclipse.jetty.websocket.api.Session; import org.eclipse.jetty.websocket.api.annotations.OnWebSocketClose; import org.eclipse.jetty.websocket.api.annotations.OnWebSocketConnect; ...


2

javax.servlet.http.HttpServletRequest.getParts() is only available starting with Servlet API 3.0 Things to check: Be sure you are running Jetty 8 or Jetty 9 Make sure you have your WEB-INF/web.xml configured to use Servlet API 3.0 Make sure your build tool is using the servlet-api 3.0 jars. Make sure you have the same servlet api 3.0 jar in your ...


2

I don't think I've figured out the exact reason behind this error. However, I've a solution that works without major changes to the code. I believe the problem is with the classloading for websocket related classes in Jetty and the Jetty-maven-plugin. Either my plugin in my pom.xml is not configured properly or I'm missing some entries. In any case, after ...


2

I faced the same exception couple of days back. The issue is null Connection object. At least for me the root cause was jetty settings. Make sure you have websocket enabled in your jetty start.ini file. Something like this - OPTIONS=Server,jsp,resources,ext,plus,websocket It should be enabled by default, but it wasn't in our case since somebody customized ...


2

In our tests, QueuedThreadPool has shown to be faster than ExecutorThreadPool for usage with a connector. I would use QueuedThreadPool and experiment with ExecutorThreadPool only if you have performance problems caused by the thread pool (unlikely in our experience).


2

I believe that Jetty will use chunked responses when it doesn't know the response content length and/or it is using persistent connections. To avoid chunking you either need to set the response content length or to avoid persistent connections by setting "Connection":"close" header on the response.


2

The way you have your XML defined, it will use any jetty.port property first, then if not found, use your hardcoded port 80. Check your ${jetty.home}/start.ini and also your ${jetty.home}/start.d/* files for that property. Or alternatively, run $ java -jar start.jar --help and see if it shows up as defined at the end of the output of that command) $ java ...


2

Pretty simple, this is an example of how you can get to done: http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree/examples/embedded/src/main/java/org/eclipse/jetty/embedded/ManyContexts.java And some general Documentation: http://www.eclipse.org/jetty/documentation/current/embedding-jetty.html


2

Take a look on the following discussion and specifically on the most popular answer. Shortly you have a problem of class version incompatibility. Your jetty is compiled with compiler of java 7 while you are trying to run it with JVM of previous version. The solution is: go forward to Java 7: upgrade your JDK and configure eclipse to use java 7 and start ...


2

The newest release of Jetty needs Version 1.7 of the JVM. Update your JVM or use an older version of Jetty (not recommended). You can see the Jetty-versions here: http://www.eclipse.org/jetty/documentation/9.0.2.v20130417/what-jetty-version.html#d0e75


1

Try setting the Content-length before writing to the stream. Don't forget to calculate the amount of bytes according to the correct encoding, e.g.: final byte[] content = xml.getBytes("UTF-8"); response.setContentLength(content.length); response.setContentType("text/xml"); // or "text/xml; charset=UTF-8" response.setCharacterEncoding("UTF-8"); final ...


1

The specific handling you mention for web application exceptions is only defined within the context of a JAX-RS container, which, by the way, is not the same thing as a Servlet container. Web filters are handled by the Servlet container, which does not know or care that a JAX-RS container exists within the same application server. It also does not know or ...


1

There were a few close and disconnect detection bugs in Jetty 9.0.0 406449 - Session's disconnect not detected 404991 - WebSocketCloseTest fails spuriously Both of those were recently fixed and delivered in Jetty 9.0.3.v20130506 please give that version a try.


1

Post a note on this bug and that should bring it back quicker. https://bugs.eclipse.org/bugs/show_bug.cgi?id=404508 Aside from that you have the normal jetty style of using context xml files to describe things, but nothing quite like the overlay setup in terms of reducing memory usage in multiple iterations of the same webapp being loaded. ...


1

You have a very open question here. To start with, Jetty is merely a Java Web Container (following the Java EE Web Profile), while it does have some AJAX/JSON capabilities, it is extremely fundamental and not hooked up into any sort of query API. You would do better do use Jetty along with a proper REST/JSON API library for your project. Some examples ...


1

While the the tutorial, Centralized Logging with Logback, was created for Jetty 9, all of the features it is using is available as well on Jetty 8.1.10. Some advice: Use the correct version of the jetty-webapp-logging jar for Jetty 8.1.10. Use the correct version of the DOCTYPE when working with the XML files. The command lines using start.jar are the ...


1

You should be able to disable chunking by disabling the persistent connection itself by adding a Connection: close header to the response, it is that or knowing the Content-Length ahead of time. Or I suppose you could just use HTTP/1.0 as well. I'll open a bug with jetty documentation to get this better documented.


1

This is due to a host of changes, mainly pointing at the use of Java 7 and requirements for the more recent Servlet specs. Easy enough to fix for your situation tho. Don't use OS symlinks. Create a file called ${jetty.home}/webapps/mywebapp.xml with the following contents <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE Configure PUBLIC ...


1

I suggest you to track the sent HTTP request with your browser (if you use Chrome, use the Network tabs of the developer tools). In my case I had the same problem and I discover the reason by tracking HTTP request. Perhaps you have the same case than me. I used the Chrome JSONView Extension and when I access to an URL which returns JSON content, twice HTTP ...


1

Not sure this will be possible. Generally speaking, Servlets require a context from the request to know which servlet to execute. This is the mapping of a pathSpec to a Servlet that exists in the Servlet descriptors. With CONNECT requests, there isn't really a context to use for looking up this mapping. (Said another way, the Servlet Container would have ...


1

The NPE on WebSocketFactory:236 is due to an attempt to upgrade without arriving in via a real Jetty HTTP connection. The most common causes for this: Attempting to use Jetty WebSockets on a web container that isn't jetty. (such as tomcat or jboss) Attempting to unit test your websocket (servlet) without using a real HTTP connection (such as via a mocking ...


1

My problem was, that annotations were not enabled in my Jetty-Standalone Configuration: http://www.eclipse.org/jetty/documentation/current/annotations.html#annotations-quick-setup


1

As I said in my comment, I've struggled with this nearly all day. condit linked to the correct answer, but for completeness here's what worked for me. I'm using Tomcat, jersey (and jersey-guice) 1.17.1, and guice 3.0. Though I'm using Tomcat, the difficult part (serving static resources) shouldn't be that different. public class JerseyConfig extends ...


1

If you want to embed Jetty you will need the to add the Jar file to your Build Path in Eclipse. Jetty: http://download.eclipse.org/jetty/stable-9/dist/ The jars are located in the lib folder and you probably need the Jetty-server.jar file. How to add a Jar to Build Path in Eclipse: Where to put the external jars?



Only top voted, non community-wiki answers of a minimum length are eligible