Hi! I am currently working on a web application that may run on multiple servers. Weblogic will be servlet/ejb runner. I want to develop some of my servlets...
anjumniaz@...
Feb 6, 2001 5:37 am
645
Hi, I am writing a database browser for Sybase using Java Servlets. Is is possible to share the same JDBC connection across different servlets. Any help would...
Amita@...
Feb 8, 2001 8:07 am
646
Contact: Tel: 2726 - New Media Systems, 1st Floor South, Queens Walk If all your servlets are doing read-only operations, you will probably be alright....
Charles.Chen@...
Feb 8, 2001 10:07 am
647
Charles, I thank you for you valuable comments. I am building just a browser that would do simple things like display table(or view) data/text of stored...
Amit Agarwal
Amita@...
Feb 8, 2001 10:32 am
648
Hi, I tried searching the archives for a solution to this problem, but couldn't find anything relevant. If this has been discussed before, please forgive me...
Rajesh J Advani
rajesh.jag@...
Feb 8, 2001 4:48 pm
649
... I see. ... I find it difficult to believe that you've searched anywhere for the answer to this question. ... You need an event exacrlt similar to: ...
Nic Ferrier
nferrier@...
Feb 8, 2001 4:55 pm
650
Hi all, I'm currently rewriting the Java Servlet chapter of O'Reilly's Java Enterprise in a Nutshell, for the 2nd edition of the book. I'm also adding a JSP...
William Crawford
will@...
Feb 8, 2001 5:01 pm
651
Hello. How can I add some jsp engine (Tomcat, for example) to the Oracle Application Server (version 4.0.7.1)? TIA. -- Martín Capote...
Martín Capote
mcapote@...
Feb 8, 2001 9:32 pm
652
... This question is not suitable for this forum. Is it an advanced-question? No. Please read the welcome message that you recieved when you joined this list. ...
Nic Ferrier
nferrier@...
Feb 8, 2001 11:32 pm
653
Ah, you know the answer... PLEASE remove me. Good bye. ... -- Martín Capote mailto:mcapote@... Desarrollo - Sistemas de Información Banco Central...
Martín Capote
mcapote@...
Feb 9, 2001 2:32 pm
654
hai guys, i am displaying a MS-Word document through a servlet for the user to edit it and finally the changes has to saved in the server.i can able to display...
sampathkumar kandasamy
sunsam@...
Feb 9, 2001 3:10 pm
655
... Thanks for the reply, but this is not the answer I was looking for. Let me explain my situation once more. I have a complete online application, of about...
Rajesh J Advani
rajesh.jag@...
Feb 12, 2001 11:06 am
656
... You don't have to do that. JUst put one object on the session which implements the listener interface. The container should not remove the objects from the...
Nic Ferrier
nferrier@...
Feb 12, 2001 11:28 am
657
... Unfortunately I don't think that is true. Specifically the spec says: "The valueUnbound method must be called after the object is no longer available via...
Greg Wilkins
gregw@...
Feb 12, 2001 12:03 pm
658
... Yes... I'd always considered invalidation a special case and dealt with it as I described. But I've just checked the spec and found that I was "wrong"....
Nic Ferrier
nferrier@...
Feb 12, 2001 12:13 pm
659
... Well I just checked Jetty, and I am also "wrong" in my invalidate handling. I think I will fix this for the next release, unless the spec is going to ...
Greg Wilkins
gregw@...
Feb 12, 2001 12:41 pm
660
Thanks for the info there. So you're telling me that unless I can afford to upgrade to Spec 2.3 (which I can't), I need to go in for lots of code change. ...
Rajesh J Advani
rajesh.jag@...
Feb 12, 2001 3:15 pm
661
It depends if you want portability or not. You could write you code for a specific container that implements the behaviour that Nic described. Not good form,...
Greg Wilkins
gregw@...
Feb 12, 2001 3:27 pm
662
... We're already using Weblogic 5.1.0 (the current implementation is running on that), and that works correctly - which of course translates into wrongly for...
Rajesh J Advani
rajesh.jag@...
Feb 12, 2001 3:59 pm
663
Perhaps I'm missing something, but it seems to me you could add one aggregate object to the session that has references to all the objects you want to backup. ...
Preston L. Bannister
pbannister@...
Feb 12, 2001 5:22 pm
664
... That's a good idea... a slight twiest on that is to use an adapter for the session stored on the session in such a way that you don't have to change much...
Nic Ferrier
nferrier@...
Feb 12, 2001 5:31 pm
665
But if the aggregation object is removed from the session before the listener event is fired, the data you want to backup is gone before you catch the event....
Robert.Zhang@...
Feb 13, 2001 3:06 pm
666
i'm trying to solve a problem. i've got two solutions but i might be missing others and i would like to know what the "best way" of doing this is. i'm serving...
rsanford
rsanford@...
Feb 15, 2001 4:57 pm
667
Usually Nic chimes in with the correct answer before I can even open a reply windows, but... not this time. I'd like some more info on your problem. ... OK,...
Charles Forsythe
forsythe@...
Feb 16, 2001 7:09 am
668
I've been using the trick of calling: Object.class.getResourceAsStream("/filename"); to load files in applications and supporting classes. This way, the files...
Charles Forsythe
forsythe@...
Feb 19, 2001 12:58 am
669
Hi Charles ... I use a similar approach; the main problem I see with it is that classloading seems to be a weakness of servlet engines in general. For example...
Geoff Soutter
geoff@...
Feb 19, 2001 5:51 am
670
Whats wrong with this servlet, so it can not delete the 12.txt file. The 12.txt file has 755 mod with nobody.nobody owner. ... // Servlet delete // Date : 08...
Leonard Tambunan
thegonewind@...
Feb 19, 2001 6:49 am
671
Please direct questions about UNIX and basic Java to another list in the future. The java-linux list at blackdown.org would have been a more appropriate...
Charles Forsythe
forsythe@...
Feb 19, 2001 7:04 am
672
... I am sorry, But your comment about folder permission is right. And it helps me. Thank you. ... __________________________________________________ Do You...
Leonard Tambunan
thegonewind@...
Feb 19, 2001 9:15 am
673
... it is a servlet that allows me to execute existing cgi apps so that i can do a piecemeal conversion from my existing cgi infrastructure to a servlet...