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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 3585 - 3614 of 10422   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3585
In fact, this wrapper contains some "helper" method to access attribute and assume casting functions. The main purpose is to avoid attribute name mismatch. ...
Picron Geoffrey
geoffrey.picron@...
Send Email
Aug 1, 2002
8:25 am
3586
The flush call is meant to commit the response. ie send the headers and any content written so far. Thus setting the status after the headers have gone is too...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 1, 2002
8:30 am
3587
Indeed, it was my error. Modificaiton of any of the header/status values after a OutputStream flush() or close() should be either ignored & some debug/warning ...
chris_wassman
Offline Send Email
Aug 1, 2002
7:25 pm
3588
Hi I'm new to jboss and jetty. I just tried to install it in MacOS X, and the installations appeared to go smoothly. I followed the directions on apple's...
mfischma
mfischma@...
Send Email
Aug 2, 2002
8:59 am
3589
mfischma, Posting to just jetty-support or jetty-discuss is sufficient. No need to duplicate the posting. This question should have gone to jetty-support...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 2, 2002
10:17 am
3590
Hi, Tried this in both 4.01 (bundled with JBoss) and 4.04 (stand alone) on Win2K JDK 1.3.1. I mapped a number of jsp pages to URLs. My web.xml contains, for ...
S_Wiseman
Offline Send Email
Aug 2, 2002
4:31 pm
3591
I think I've just developed a really neat way of handling "/" requests with a Servlet. It uses a Filter to redirect the request. Class "WelcomeFilter" and a...
Chris Haynes
chrishaynes_...
Offline Send Email
Aug 2, 2002
4:34 pm
3592
OK this is a feature clash bug! A Servlet that uses the "jsp-file" element is implemented by mapping it to the JspServlet with the attributes ...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 2, 2002
5:59 pm
3593
OK, I have done a fix so that once dispatched the attributes may be set by the target servlet. This allows the jasper include mechanism to work (As I have not...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 2, 2002
6:36 pm
3594
... Huh? Here's how I solved the problem (in Windows NT, not OS X, but still...): My html files are in C:/web/www For example, I have C:/web/www/index.html ...
twe3lve2
trogers@...
Send Email
Aug 2, 2002
10:12 pm
3595
I don't know what the //* is about? / should have worked fine. The code in HttpServer.main() is: // Create the server HttpServer server = new HttpServer(); //...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 2, 2002
11:11 pm
3596
Hi, I am using JBoss3 with Jetty and I am trying to get form authentication working, storing my users and passowrd in a database. No problems with JBoss (i...
suecochilango
suecochilango@...
Send Email
Aug 3, 2002
5:13 pm
3597
If Jetty is doing all it's stuff correctly, but the authentication is failing, then either we are passing the wrong principal/credential to JBossSX, or you...
Jules Gosnell
jules_gosnell
Offline Send Email
Aug 3, 2002
10:53 pm
3598
What versions are you using? What security role are you specifying? Have you tried the * security role? If you are getting a role failure, then the user has...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 4, 2002
10:20 am
3599
JBoss 3.0.0 bundled with Jetty (have not found what version of Jetty that is used with JBoss 3.0.0, sorry) The * security role works fine, but my normal...
suecochilango
suecochilango@...
Send Email
Aug 4, 2002
6:05 pm
3600
Is there any chance that you can try a later version of JBoss? Even a CVS snapshot. cheers ... -- Greg Wilkins<gregw@...> GB Phone:...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 6, 2002
4:35 pm
3601
Chris, good idea, but you may want to consider a slight enhancement. Can you make it configurable so that it can either do a redirect or a RD.forward to the...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 6, 2002
4:39 pm
3602
Hi all, I'm currently having problem with Jetty handling unicode form. When I try to get the input parameters via req.getParameter ("something") in a servlet...
kng.tw
nevin@...
Send Email
Aug 6, 2002
5:15 pm
3603
Hi, I'm trying to embed Jetty within an App I'm building, and am having problems getting Init Parameters into servlets... ... public void init(ServletConfig...
James House
jhouse@...
Send Email
Aug 6, 2002
7:32 pm
3604
Sorry, I missed a few points: I'm using Jetty 4.1 RC0 And I failed to show a snippet of the handlers I'm adding to the ... ServletHandler srvletHandler = new...
James House
jhouse@...
Send Email
Aug 6, 2002
7:44 pm
3605
This is a regular posting to jetty-support as a FAQ to using this list: + This list if for jetty related support questions. General questions about servlets...
jetty-support@yahoogr...
Send Email
Aug 6, 2002
7:59 pm
3606
Hi Nevin, Which version of Jetty are you using? Does the FAQ at http://jetty.mortbay.com/jetty/doc/international.html help? Chris ... From: "kng.tw"...
Chris Haynes
chrishaynes_...
Offline Send Email
Aug 6, 2002
8:30 pm
3607
James, The "Java Servlet Programming" book I've got drums it into its readers that you *must* always call "super.servletInit(cfg);" immediately inside...
Chris Haynes
chrishaynes_...
Offline Send Email
Aug 6, 2002
8:37 pm
3608
Yes, I've tried that... I guess I accidentally "killed" that line as I was erasing the irrelivant lines of that method after I copied it into the email... ...
James House
jhouse@...
Send Email
Aug 6, 2002
10:45 pm
3609
Ahh... I figured it out.. I need to set the parameters on the ServletHolder... Thanks, James...
James House
jhouse@...
Send Email
Aug 6, 2002
11:45 pm
3610
Hi, I've got another issue... I'm feeling like this one is a Jetty 4.1RC0 bug... if it's not a bug, then it's at least very confusing. Here's the code snippet:...
James House
jhouse@...
Send Email
Aug 7, 2002
12:45 am
3611
If a client has sensitive information in the session object and does not want it persisted to disk, can jetty be configured not to write to disk (conserving...
bruiser7au
Offline Send Email
Aug 7, 2002
5:07 am
3612
James, it certainly looks like a bug??? I'll investigate in short order but you may want to try using /context/* in both places to see if that is it. cheers ...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 7, 2002
10:08 am
3613
The default session manager for stand alone jetty is just a in memory hash table - so it does not get serialized to disk. There are now several other session...
Greg Wilkins
gregjwilkins
Offline Send Email
Aug 7, 2002
10:11 am
3614
What is the situation when I use the JBoss3-Jetty bundle rather than standalone? ... memory ... can ... like ... does ... write ... http://jetty.mortbay.org ...
bruiser7aust
bruiserbrucenet@...
Send Email
Aug 7, 2002
11:36 am
Messages 3585 - 3614 of 10422   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