... Sorry to rehash, but have been looking/searching through the messages here and was unable to determine the current status on this? Need I grab the most...
Hi, If you update Jetty cvs head, you should find JAAS integrated with Jetty. It is in the new JettyPlus area, which is located under extra/plus. The build...
... And of course then I find this message right after my earlier post. Thanks, and I'm looking forward to the JAAS functionality instead of my hacked change...
Hi Chris: Adding the encoding to the jetty config file didn't change things. Also, I'm working on creating a small web-app to demonstrate the problem. Jay ... ...
I'm currently looking at Jetty to serve my http requirements for a particular application & I'd like anyone's opinion on whether it is possible. I have a main...
The main program will maintain the client connection to the remote server, while receiving commands through the http server(jetty or anything else). My...
... so is jetty embedded within your main program or is it communicating with it via a socket? you can embed jetty within your main program and control it via...
Nothing is being done yet. I intend to embed jetty in my main program. I intend to use it to communicate with the outside world. So if there is a servlet with...
You could have the logic to connect to your remote server within a servlet and recieve the http commands through the standard servlet API: HTTP --> Servlet -->...
... well, that is exactly what a servlet does, but i assume that is not what you want to do. you could also write a custom handler for doing this - ...
No not really, because the connection to the remote server has to presists. Meaning connect, authenticate and bind. No disconnects. Otherwise you bind again. ...
interesting .. so what you really need is a proxy between http which has a connection oriented behaviour and a remote server which has a persistent connection....
My question is now how would jetty communicate with my main class other than a servlet? Is there some sort of event notification that goes on when a request is...
well, like i said you can write your own custom handler which will intercept the request at the web server level rather at the web container level. you can...
This is definitely possible in Jetty. The basic approach is to: 1) Start your main application 2) You main application creates a jetty instance and configures ...
Hi, I am new to the Jetty APIs. Can someone give me some tips on how I can configure Jetty to run as a proxy. I have noted articles/discussions stating that I...
Whipped this one up as Tomcat and the Tomcat Plugin are too heavyweight for the work I'm doing. You can run a web app project in Jetty as easily as running a...
Cool! I've added spindle to the powered by page http://www.mortbay.com/mortbay/powered.html we are also think of doing a cool jetty links page and this would...
... http://www.mortbay.com/mortbay/powered.html ... of them. No, THATs cool! ... emacs), ... enough). I understand completely. Eventually, I want to tap the...
Oops, sent this to Greg alone first by mistake. ... I did try it, and it doesn't seem to work for me. I installed the file through the update mechanism. I then...
Hmm, I just went to a virgin machine, installed Eclipse 2.1 and the plugin via update and it worked. There should be an entry in the 'Classpath Tab' in the...
... It is not there. Was I supposed to do this manually? Anyway, added it manually and tried again. ... Did this before I tried again. It still fails. This...
The plugin is supposed to setup the classpath without user intervention. I found the bug, checks are made to see what version of the JDK that is being used to...
I am looking at various scenarios for the deployment of web applications on stand-alone computers (e.g. an off-line laptop). Has anybody ever looked at or...
I just tested adding a JDK as described below. It didn't work, ie. tools.jar was not added. I will add a field to allow users to optionally choose it. Geoff ...
... I don't necessarily understand what the local directory option does, but I noted that it has to be set to the jetty home directory for things to work. My...