RE: mapping a html page request

2004-10-27 Thread Lucero, Dennis M
t all requests go to the Java app so extension mapping might be necessary based on the web server or java app server to ensure everything goes to the filter (i.e. ensure *.html files map to the java filter so they would be processed). Regards, David -Original Message- From: Lucero, Den

mapping a html page request

2004-10-26 Thread Lucero, Dennis M
How would I go about mapping a URL of the form somePage.html into an action class. (I have no control over the syntax of this URL and can not make it be a someAction.do URL.) any help appreciated. I am he, as you are he, as you are me, and we are all together.

RE: httpsURLConnection

2004-10-04 Thread Lucero, Dennis M
Yes connection.disconnect() is called. -Original Message- From: Richard Yee [mailto:[EMAIL PROTECTED] Sent: Sunday, October 03, 2004 8:20 PM To: Struts Users Mailing List Subject: Re: httpsURLConnection Dennis, Are you closing the connection in a finally clause? If you don't, you are go

RE: timeouts

2004-10-04 Thread Lucero, Dennis M
equest after a client connects to it, not how long it will keep the connection open while it keeps sending data to the client's browser. So, please send more details so people smarter than I can help suggest a better solution or strategy. Regards, David (who's probably getting on p

httpsURLConnection

2004-10-03 Thread Lucero, Dennis M
I open an httpsURLConnection in my struts application. And I am getting orphaned sessions. I think this may be due to dead (or orphaned) connections after the user has logged off. Has anybody experienced this? I am he, as you are he, as you are me, and we are all together.

RE: timeouts

2004-10-03 Thread Lucero, Dennis M
will wait to the request to return? What are we talking about? -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Lucero, Dennis M" <[EMAIL PROTECTED]> To: "Struts Users Mailing Li

RE: timeouts

2004-09-30 Thread Lucero, Dennis M
Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Lucero, Dennis M" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 30, 2004 1:26 PM Subject: timeouts I am setting connection timeouts in

timeouts

2004-09-30 Thread Lucero, Dennis M
I am setting connection timeouts in server.xml but these settings do not seem to be working. Does struts have a timeout function? I am he, as you are he, as you are me, and we are all together.

RE: form problem

2004-08-20 Thread Lucero, Dennis M
the processActionForm() method in RequestProcessor - you need to store it the same way. http://cvs.apache.org/viewcvs.cgi/jakarta-struts/src/share/org/apache/st ruts/action/ Niall - Original Message - From: "Lucero, Dennis M" <[EMAIL PROTECTED]> To: <[EMAIL PROTECT

form problem

2004-08-20 Thread Lucero, Dennis M
Does anyone know how to do this or why it does not work? Both these methods would be called from an action class. Function void useMyForm(ActionForm form){ SomeFormClass myForm = new SomeFormClass(); myForm.setName("Blah"); myForm.setAge("289"); etc... form = myForm; } When I get to the j

pdf quirk

2004-08-06 Thread Lucero, Dennis M
When I download a PDF file using a link the user gets it without any security info box, but when I use a form (html:form) to download the PDF they are presented with the security box: "This page contains both secure and nonsecure items. Do you want to display the nonsecure items?" how can I k

URL connections

2004-06-09 Thread Lucero, Dennis M
I am having a strange problem. When I try and connect to a URL within the struts framework (within an action class) I get errors. Below is the code, this code works fine in a standalone java class (main) but in an action class I get an error when I try and Cast the connection, any help is appr