Re: still fighting HTTP HTTPS problem

2001-05-11 Thread Jonathan Asbell
Mike. Dude. That IS the way to do it. 1) check to see if you ACTUALLY GET the 2 sessions (if you can get them, do a session.toString() to see that they are not the same session indeed) 2) you should be sending the serialized data from the unsecure session into the secured session: if you are

Re: still fighting HTTP HTTPS problem

2001-05-11 Thread Jonathan
well i am using a tomcat-standalone version... i know, that some webservers like apache would do that task for me... well jonathan... thanks... i´ll try it and get back to You if i have further questions... alright?! michy -Original Message- From: Rainer Alföldi [mailto:[EMAIL

Re: filtering unwanted characters

2001-05-11 Thread Jonathan
try a sax parser - Original Message - From: Nanduri, Amarnath [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 11, 2001 8:35 AM Subject: filtering unwanted characters Hi all, I might be posting this message in the wrong forum. My apologies if i have offended anyone.

Re: filtering unwanted characters

2001-05-11 Thread Jonathan
characters I have to check each and every character send as input by the user...Will SAX help me in this regard ? cheers, Amar.. -Original Message- From: Jonathan [mailto:[EMAIL PROTECTED]] Sent: Friday, May 11, 2001 12:19 PM To: [EMAIL PROTECTED] Subject: Re: filtering unwanted

Re: Potential Security Flaw in Struts MVC....Christian.......are you lurking about?

2001-05-09 Thread Jonathan
If your User bean is constructed from data in a database ONLY, via the constructor and not by set() methods, then the object can only contain info it was constructed with. This means that you cant guess and pass whatever parameters because they were obtained from the database. So unless someone

Re: Override Input Form / JSP when Errors Are Encountered

2001-05-08 Thread Jonathan
String referrer = request.getHeader(Referrer); requestDispatcher requestDispatcher = request.getRequestDispatcher requestDispatcher. forward(referrer); - Original Message - From: Jeff Trent To: [EMAIL PROTECTED] Sent: Tuesday, May 08, 2001 5:12 PM Subject: Re:

Re: Struts debugging in Emacs/JDE

2001-05-08 Thread Jonathan
Emacs is geek overload. Try textpad, jbuilder(which is free), or webgain - Original Message - From: Jon Brisbin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 08, 2001 4:50 PM Subject: Struts debugging in Emacs/JDE I've been using the awesome Emacs ECB and JDE for my

Re: Struts questions for evaluation

2001-05-07 Thread Jonathan Asbell
I am interested in the code. Please send. Hello Struts users, We are currently evaluating Struts and other web (MVC) frameworks and would like to ask you some questions: - Is there some struts-config XML-generation from some modeling tool (Rose for instance) ? We would like to

Re: Suggestion/Idea for iterate tag: Iterate ResultSets

2001-05-06 Thread Jonathan Asbell
Result sets ARE tied to the connection in a way. Some DB drivers throw exceptions when you try to manipulate data while you still have a pointer to rows. At work we were trying to manipulate a stream which was pointing to an output parameter in a stored proc while the connection was open. The

Re: dynamically build HTML forms

2001-05-05 Thread Jonathan Asbell
I want to know about this too. I think this may be old. - Original Message - From: Hartmut Bernecker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 05, 2001 1:50 PM Subject: dynamically build HTML forms Hi, I came across the following statement: The Struts framework

Re: Possiblility Answer to: html form widgets not appearing

2001-04-29 Thread Jonathan Asbell
the web app, which should never be in the class path to begin with. It is more likely a bug with the app server. Jonathan Asbell wrote: It sounds like you have a classpath problem. I bet you either have a system classpath (ie a classpath set in your settings/controlpanel/system/advanced

Lookup performance on ActionMappings

2001-04-29 Thread Jonathan Asbell
Our companymanages almost 100 related sites, some with 3 million+ /month viewership. In thinking about how I would approach the ActionServlet I am suspicious that the lookup time of the ActionMapping might become unsatisfactorywhenyou reach a certain number of mappings. Does anyone have any

Correctly using token mechanism

2001-04-29 Thread Jonathan Asbell
After studying how the token mechanism works, I understand the following: 1) The token is a unique identifier (value) which may be found in the Session and Request, which is used with certain form submissions. 2) It is created, ifit does not already exist, by an Action object that wants

Status of autobeans in Struts

2001-04-29 Thread Jonathan Asbell
I can see in the mail list that theinclusion of Thors "autobean" into Struts is still under consideration, but in the dev list and in Ted's clippings form the mail list I get the impression that it has been implemented already (refering to the section "Automatic/Extended Properties,

Possiblility Answer to: html form widgets not appearing

2001-04-28 Thread Jonathan Asbell
It sounds like you have a classpath problem. I bet you either have a system classpath (ie a classpath set in your settings/controlpanel/system/advanced/environmentvariables assuming it is a pc) which conflicts with the classpath you start up when you run your server. Either way it seems

Re: Reducing the burden on ActionServlet.

2001-04-28 Thread Jonathan Asbell
Title: Reducing the burden on ActionServlet. Isnt it true that if you have 10 users you would have 10 instances of the ActionServlet? I believe it is not a singleton and that you always have an instance of the servet for each threaded request. - Original Message - From:

Re: switch from http to https

2001-04-27 Thread Jonathan
You have to use url rewriting to send and save the session temporarily on the https side, and when you are done you have to resend the saved session info, again via url rewriting, back to the non-secure side which will still have your session if you didnt take too long on the https side, and then

Can someone PLEASE PLEASE explain in more detail the path input attribute values of Action

2001-04-26 Thread Jonathan
It is not clear to me exactly whatthese values could or should be. I understand that the ".do" is stripped of the request, so does that mean I only have to match everything up to the ".do" ? Why is a "/" used? To me this means "root", and in fact in the Login example the path changes from

Re: FormBeans and Thread Safety

2001-04-26 Thread Jonathan
Where in the docs does it say that Action objects are pooled?!! - Original Message - From: Rajan Gupta [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Ryan Rich [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 8:58 AM Subject: Re: FormBeans and Thread Safety No. ActionForm are created for

#### Can someone pleeeeeeeeese elaborate on the rules regarding Action attribues input and path ....Please ####

2001-04-26 Thread Jonathan
It is not clear to me exactly whatthese values could or should be. I understand that the ".do" is stripped of the request, so does that mean I only have to match everything up to the ".do" ? Why is a "/" used? To me this means "root", and in fact in the Login example the path changes from

Re: #### Can someone pleeeeeeeeese elaborate on the rules regarding Action attribues input and path ....Please ####

2001-04-26 Thread Jonathan
ot;. The input attribute in the config file is the name of the jsp to which the control should be forwarded in case of errors, which in most of the cases is the input form whcih generated the errors. Hope this helps. Thanks, Uday. [Natra, Uday]-Original Message-From:

To Roman Fail

2001-04-26 Thread Jonathan
of the capable individuals I have met on this list. - Original Message - From: Roman Fail [EMAIL PROTECTED] To: Jonathan [EMAIL PROTECTED]@i-2000.com; [EMAIL PROTECTED] Sent: Thursday, April 26, 2001 5:19 PM Subject: RE: FormBeans and Thread Safety From: http://jakarta.apache.org

Re: simple question

2001-04-25 Thread Jonathan
Title: Java Bean log file. page scope does NOT HOLD VALUES BETWEEN pages. request scope holds values UNTIL THE END OF THE REQEST which could be one or more jsps/servlets. That is, the page request is like a variable useful within the jsp page and not from another page. You can ask the jsp

Re: What is token and When/Why/Where to use it?

2001-04-25 Thread Jonathan
Im not sure...but if you get more please pass one my way - Original Message - From: Suriyanarayanan, Senthil Kumar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 25, 2001 7:00 PM Subject: What is token and When/Why/Where to use it? Hello, I would like to know what is

Can someone explain in more detail the path input attribute values of Action

2001-04-25 Thread Jonathan Asbell
It is not clear to me exactly whatthese values could or should be. I understand that the ".do" is stripped of the request, so does that mean I only have to match everything up to the ".do" ? Why is a "/" used? To me this means "root", and in fact in the Login example the path changes from

** CAN SOMEONE PLEASE ANSWER MY QUESTIONS BELOW **

2001-04-24 Thread Jonathan

Can someone explain the path attribute in action-mappings

2001-04-24 Thread Jonathan
How exactly do I implement it? The doc say "The application context-relative path to the action", but this is not clear to me. I am having the same trouble implementing the "input" attribute. Can anyone make this clear for me: What should the value

Re: *** implementing consecutive form validation? ***

2001-04-24 Thread Jonathan
value, do the corresponding validation in the Form. Amar.. -Original Message-From: Jonathan [mailto:[EMAIL PROTECTED]]Sent: Tuesday, April 24, 2001 3:35 PMTo: [EMAIL PROTECTED]Subject: *** implementing consecutive form

*** Can someone please elaborate on multi form validation ***

2001-04-24 Thread Jonathan
Please share some techniques guys.

Is the Local object a given in Struts ?

2001-04-24 Thread Jonathan
Do we get a Local object when we use struts, or do we have to implement it? It look like I get a default Local object for free, but if I want to be able to change languages on the fly I have to implement more Local objects. The documentation says: "When the user logs on, the application can

why does struts use forward instead of redirect

2001-04-24 Thread Jonathan Asbell
Anyone know why struts uses forward instead of redirect?

Re: Required vs. optional name attribute

2001-04-23 Thread Jonathan Asbell
Incidentally, can antone tell me the difference between id, name, and property? (org.apache.struts.taglib.bean) - Original Message - From: James Howe [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 23, 2001 12:01 PM Subject: Re: Required vs. optional name attribute At

Re: HTML special characters

2001-04-23 Thread Jonathan Asbell
Doesnt this issue depend on the character encoding? That is, high ascii values (128-255) are control characters in some encodings, which I assume you want to get rid of. Than, there is the 0-31 characters in ascii which are control characters of which you want to get rid of all except tabs,

*** implementing consecutive form validation? ***

2001-04-23 Thread Jonathan Asbell
with "if/then" statements to test if I am on the first, second, or third page of the form and then use the Action's validate method at the end? I was interested in what you all were implementing. Cheers Jonathan

how do I get error messages?

2001-04-22 Thread Jonathan Asbell
I have the below form. In the ActionForm class for this form I am testing for a valid username. The code is like so: errors.add("username", new ActionError("error.username.required")); In my mappings I have the response going back to this same page if anything is not valid. But how do I

Can someone explain the path attribute in action-mappings

2001-04-22 Thread Jonathan Asbell
How exactly do I implement it? The doc say "The application context-relative path to the action", but this is not clear to me. I am having the same trouble implementing the "input" attribute. Can anyone make this clear for me: What should the value be?

RE: mail-daemon

2001-03-23 Thread Jonathan Carlson
Alright already. People can stop sending "me too" messages now. :-) -Original Message- From: Sri Lakshmi [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 8:35 AM To: [EMAIL PROTECTED] Subject: RE: mail-daemon even I too . -Original Message- From: Gino Tesei

struts-template.tld

2001-02-24 Thread Jonathan Carlson
? Jonathan Carlson P.S. I would have sent this to the dev list but I haven't subscribed to that one yet.

Jetspeed

2001-02-22 Thread Jonathan Carlson
Are there any Struts users that are also using JetSpeed? I am curious about how compatible JetSpeed is with Struts. Judging by the JetSpeed documentation, I have inferred that it is better to use Turbine if also using JetSpeed. Is this an accurate statement? Any comments? Jonathan

Struts and Turbine

2001-02-14 Thread Jonathan Carlson
that refers to each other. Considering they are both Apache projects, the perceived silence about each other makes me kind of nervous. Hopefully I haven't asked too many questions in one e-mail :-) Jonathan Carlson Software Developer [EMAIL PROTECTED]

Struts and Turbine

2001-02-14 Thread Jonathan Carlson
or the Turbine site that refers to each other. Considering they are both Apache projects, the perceived silence about each other makes me kind of nervous. Hopefully I haven't asked too many questions in one e-mail :-) Jonathan Carlson Software Developer [EMAIL PROTECTED]

<    1   2   3   4