Search the web
Sign In
New User? Sign Up
jetty-discuss · Jetty Discussion
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6446 - 6475 of 8501   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6446
... 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...
jensenje
Offline Send Email
May 1, 2003
1:52 pm
6447
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...
Jan Bartel
janbartel
Offline Send Email
May 1, 2003
2:21 pm
6448
... 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...
jensenje
Offline Send Email
May 1, 2003
2:39 pm
6449
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 ... ...
silverfoxsoftware
silverfoxsof...
Offline Send Email
May 1, 2003
9:39 pm
6450
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...
iconstandit
Offline Send Email
May 2, 2003
6:08 am
6451
how does this differ from a servlet or a jsp page? ~ nimret...
Nimret Sandhu
nimret_sandhu
Offline Send Email
May 2, 2003
6:39 am
6452
The main program will maintain the client connection to the remote server, while receiving commands through the http server(jetty or anything else). My...
iconstandit
Offline Send Email
May 2, 2003
6:44 am
6453
... 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...
Nimret Sandhu
nimret_sandhu
Offline Send Email
May 2, 2003
6:52 am
6454
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...
iconstandit
Offline Send Email
May 2, 2003
7:03 am
6455
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 -->...
Matthew Jensen
mmj_1234
Offline Send Email
May 2, 2003
7:36 am
6456
... 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 - ...
Nimret Sandhu
nimret_sandhu
Offline Send Email
May 2, 2003
7:37 am
6457
No not really, because the connection to the remote server has to presists. Meaning connect, authenticate and bind. No disconnects. Otherwise you bind again. ...
iconstandit
Offline Send Email
May 2, 2003
7:46 am
6458
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....
Nimret Sandhu
nimret_sandhu
Offline Send Email
May 2, 2003
8:01 am
6459
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...
iconstandit
Offline Send Email
May 2, 2003
8:34 am
6460
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...
Nimret Sandhu
nimret_sandhu
Offline Send Email
May 2, 2003
8:42 am
6461
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 ...
Greg Wilkins
gregjwilkins
Offline Send Email
May 2, 2003
8:48 am
6462
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...
Anwar Mohamed Haneef
anwarhaneef
Offline Send Email
May 2, 2003
7:58 pm
6463
Look at the proxy.xml example in the etc directory. ... -- Greg Wilkins<gregw@...> Phone/fax: +44 7092063462 Mort Bay Consulting Australia...
Greg Wilkins
gregjwilkins
Offline Send Email
May 4, 2003
10:32 am
6464
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...
Geoff Longman
glongmanDude
Offline Send Email
May 4, 2003
8:51 pm
6465
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...
Greg Wilkins
gregjwilkins
Offline Send Email
May 4, 2003
11:07 pm
6466
... http://www.mortbay.com/mortbay/powered.html ... of them. No, THATs cool! ... emacs), ... enough). I understand completely. Eventually, I want to tap the...
Geoff Longman
glongmanDude
Offline Send Email
May 5, 2003
11:37 am
6467
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...
Dolf Starreveld
dolfs
Offline Send Email
May 5, 2003
11:52 am
6468
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...
Geoff Longman
glongmanDude
Offline Send Email
May 5, 2003
1:07 pm
6469
... 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...
Dolf Starreveld
dolfs
Offline Send Email
May 5, 2003
1:34 pm
6470
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...
Geoff Longman
glongmanDude
Offline Send Email
May 5, 2003
1:43 pm
6471
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...
lgauthier08
Offline Send Email
May 5, 2003
2:17 pm
6472
This resolves, programatically to: HttpServer server=new HttpServer(); SocketListener listener=new SocketListener(); listener.setPort(8888); ...
Anwar Mohamed Haneef
anwarhaneef
Offline Send Email
May 6, 2003
4:40 am
6473
... How? When an xml file is specified, the code that launches is this.. private static void launchWithXML(String xmlFile) throws Exception { ...
Geoff Longman
glongmanDude
Offline Send Email
May 6, 2003
11:27 am
6474
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 ...
Geoff Longman
glongmanDude
Offline Send Email
May 6, 2003
11:38 am
6475
... 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...
Dolf Starreveld
dolfs
Offline Send Email
May 6, 2003
3:58 pm
Messages 6446 - 6475 of 8501   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help