Questions tagged [jetty-8]

Version 8 of Jetty, a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.

Version 8 of Jetty, a widely used async java based http server and servlet engine supporting WebSockets and SPDY protocols.

122 questions
0
votes
1 answer

How to implement Denial of Service attack optimal strategies in Jetty

What are the optimal ways to implement Denial Of Service attack protection in Jetty. What all classes need to be extended or configuration need to be setup.
0
votes
2 answers

Cometd Compatible with jetty 8.1.11

I am currently working on a project using cometd 1.0.0 and jetty 8.1.11. I was getting the following exception: WARN:oejut.Timeout:EXCEPTION java.lang.NoSuchMethodError:…
gusainhimanshu
  • 157
  • 1
  • 11
0
votes
1 answer

Using tomcat Trust-store in jetty for SSL

I am planning to secure my jetty by SSL implementation. But I want to use my tomcat certificates, rather than the default jetty certificates. My jetty version is 8.x. I did a search on web regarding the ssl configuration on jetty. and i found this.…
gusainhimanshu
  • 157
  • 1
  • 11
0
votes
0 answers

Apache ODE deployed in a Jetty with reverse proxy. NoClassDefFoundError: org.apache.xml.serializer.TreeWalker

I have deployed Apache ODE in a Jetty Server with a reverse proxy. If I go to http://public-url/ode/deployment/services/ I can see the WSDL URIs for ProcessManagement, Deployment Service and Instance Management, like…
eskalera
  • 1,072
  • 2
  • 21
  • 36
0
votes
2 answers

Where is the best way to log response in Restlet

I use Restlet with Jetty8. The Jetty log all incoming calls. I want to log all response data also, url and body. Where is the best place to put the log code? I thought createOutboundRoot is the place but I didn't figured out how to use it and…
ZAky
  • 1,209
  • 8
  • 22
0
votes
1 answer

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 = new Server(); SelectChannelConnector connector =…
Jochen
  • 1,853
  • 3
  • 20
  • 28
0
votes
1 answer

WebSphere server and Jetty client with java.lang.illegalstateexception state==header

I have 2 packages - 1 Server to maintain in traditional Web Server (Tomcat 6, Websphere 7) and 1 with on-the-fly web server Jetty, which works as a client. The server and Agent work perfectly locally on Windows 7 machine and JRE 6: (1) The server is…
lionheart
  • 437
  • 11
  • 33
0
votes
1 answer

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 to "false"
Bob Kuhar
  • 10,838
  • 11
  • 62
  • 115
0
votes
1 answer

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 support for following these redirects, but I can not…
jlunavtgrad
  • 997
  • 1
  • 11
  • 21
0
votes
1 answer

apache 2.2 subdomain proxypass configuration with jetty 8

i am trying to proxypass a subdomain xxx.yyy.de to a jetty webapp on yyy.de:8080/app. First i followed the documentation http://wiki.eclipse.org/Jetty/Howto/Configure_mod_proxy which is pretty straight forward i guess. So my virtual host config…
sveri
  • 1,372
  • 1
  • 13
  • 28
0
votes
1 answer

Failed to collect Maven dependencies in Java HelloWorld when deploying to heroku

I'm playing with Java and heroku following the heroku guide. But with few modifications. In this case I use JDK 1.7, Jetty 8.1.2.v20120308 and Maven dependencies plugin 2.7 (Because it seems, 2.4 couldn't be built) All is built ok locally with mvn…
ArtStack
  • 5
  • 6
0
votes
1 answer

Masking part of URL in jetty request log

I would like to log all HTTP request in Jetty, which is well documented, but I can;t find any resources how can I mask some of the arguments. E.g.: json/users/detail?id=dsgrw543 should be logged as: json/users/detail?id=******** or similar. The main…
Jakozaur
  • 1,957
  • 3
  • 18
  • 20
0
votes
2 answers

jetty 8 multipart/form-data requests

I'm using Jetty 8 as embedded server in a project. Everything works as expected, except multipart/form-data requests. My servlet which has to process the multipart/form-data requests works fine, - I've tested it with the RunJettyRun plugin of…
Sea Mondue
  • 11
  • 1
  • 3
0
votes
1 answer

solr-jetty 4.0.0 error BoolField$1$1 overrides final method setReader

I've got 4 nodes SolrCloud cluster with separate zookeeper ensemble. I used https://launchpad.net/~blubolt/+archive/preciseplatform repo to get solr-jetty. When I'm starting jetty8 I got this in my logfile: Nov 25, 2012 4:20:26 PM…
Aesdana
  • 1
  • 3
0
votes
2 answers

Cannot get rid of #.{jsessionid} in urls

So far I have tried two approaches: -1. Add to web.xml: COOKIE -2. Using pretty faces, add to pretty-config.xml:
alehro
  • 2,198
  • 2
  • 25
  • 41
1 2 3
8
9