error-page directive

2003-10-03 Thread Carlos Pereira
the problem? Regards, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: error-page directive

2003-10-03 Thread Carlos Pereira
. Isn't there another workaround? If this is a cut'n'paste job from your web.xml page then the problem is you have defined a .hmtl and not .html file. (Graham Reeds) No, it wasn't cut'n'paste. Sorry about that... Regards, Carlos Pereira

RE: error-page directive

2003-10-03 Thread Carlos Pereira
impossible situations, which end up happening. Thanks again, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: error-page directive

2003-10-06 Thread Carlos Pereira
regards, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: error-page directive

2003-10-09 Thread Carlos Pereira
Which versions of IE is that applicable to? (Graham Reeds) Sorry for the delay. IE v 6.0.2600 Regards, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

shared/classes folder

2003-10-14 Thread Carlos Pereira
, is there any way i can prevent this? Best regards, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: shared/classes folder

2003-10-15 Thread Carlos Pereira
need to exchange with outside apps can be done in a variety of other ways, e.g. XML documents, pinging URLs, JMS messages... (Yoav Shapira) I'm using XML. I don't know JMS messages, but i'm glad you mentioned it, i'll see more... Thanks for your help! Best regards, Carlos Pereira

JDBC Connection question

2003-10-21 Thread Carlos Pereira
? Where can i know more? The security system works on top of the database, so that's not a problem. I'm more concerned with performance and concurrency. Regards and thanks, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED

File writing performance

2003-10-21 Thread Carlos Pereira
retrieving the file? If so, is it significative? Best regards, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JDBC Connection question

2003-10-22 Thread Carlos Pereira
to put it working. What about when i have to deploy the application? And if the server is NOT Tomcat, will it support connection pooling? Best regards, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Request, response and session.

2003-10-22 Thread Carlos Pereira
Documentation page and should have everything you need. Starting out with Servlet Essentials is a good bet; it covers the very basics and you will learn very fast. Including the equivalent to Request and Response, and sessions. Regards, Carlos Pereira

RE: File writing performance

2003-10-22 Thread Carlos Pereira
? I've searched the SWF file format specification, macromedia's developer center and Flash's help files. They don't have any reference to that either. I tried an example and it worked fine, with no problems at all. But, i want to make sure i don't need to worry about this... Best regards, Carlos

RE: File writing performance

2003-10-22 Thread Carlos Pereira
remark was just a warning, that something like that can happen. (Ralph Einfeldt) Yes, and i don't know anything about that, so i must be careful. What is the consequence, if flash uses byte range requests and i simply write the file to the output stream? Best regards, Carlos Pereira

Re: JDBC Connection question

2003-10-23 Thread Carlos Pereira
Which server do you use? Weblogic, Websphere, ... support connection pooling. (Caroline Jen) Oracle 9iAS Supports DataSources with pooling as well. (Wade Chandler) Thats not the issue. Whatever server i use, i'll have to deploy the application somewhere. My company does not have any servers,

Re: Factory methods.

2003-10-29 Thread Carlos Pereira
patterns there; it starts with the basics. Regards, Carlos Pereira - Original Message - From: anunay ashish [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 11:35 AM Subject: Factory methods. Why are some methods called factory methods? e.g

Re: xhtml and Internet Explorer

2003-10-30 Thread Carlos Pereira
, this last thing should ALWAYS be done. Otherwise, you might be getting IE cached versions of the web page and asking yourself why the changes aren't working. 2. Force IE to read the Content-Type again. Simply shut down the browser, and request your xhtml page to see if it works. Hope that helps. Carlos

servlet mappings

2003-12-16 Thread Carlos Pereira
Yes there any way i can programatically find out the servlet mappings defined in web.xml? Best regards, Carlos Pereira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: RTFM

2004-01-15 Thread Carlos Pereira
no, I'm not returning anything from the servlet. It's not returning anything! You must return after using sendRedirect, otherwise your servlet will continue running. That's probably the problem, as it redirects you to another page, but continues it's execution. Try returning. Carlos Pereira