JSP on ATG-Dynamo

2002-07-17 Thread Ronny Van der Perre [Smart IT Systems]
hi, i'm looking for resources on developing jsp & beans on the ATG-Dynamo platform. These are very hard to find so please send me your ATG-Dynamo resource favourites. much obliged, /r === To unsubscribe: mailto [EMAIL PRO

setAttribuve vs setValue

2002-07-17 Thread Manuel Rodriguez Diaz
Which is the difference between setAttribute and setValue? Are both the same? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST D

Re: setAttribuve vs setValue

2002-07-17 Thread Bhushan_Bhangale
Hi Manuel, For which class these methods you are talking about? There is no setValue method in HttpServletRequest or HttpSession class infact putValue which is deprecated now in Httpsession. Can you elaborate your question a little bit? -Original Message- From: Manuel Rodriguez Diaz [m

Can you Suggest.

2002-07-17 Thread Abu dhahir
Hi All Can you suggest me a good JSP/XML/XSLT implementation.. may be sites, documents, etc abudhahir Polaris Software Lab Ltd., MAIL DISCLAIMER :This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. If by an addressing or transmission

Re: Can you Suggest.

2002-07-17 Thread Narasimha
You can refer www.developer.sun.com/developer/technicalArticles/xml/WebAppDev2/ Narasimha Rao TNV Email : [EMAIL PROTECTED] - Original Message - From: "Abu dhahir" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 17, 2002 5:14 PM Subject: Can you Suggest. > Hi All > Ca

Re: session error

2002-07-17 Thread aRUN NANDY
Pl try forward instead of sendredirect that will be better choice. - Do You Yahoo!? Yahoo! Autos - Get free new car price quotes === To unsubscribe: mailto [EMAIL PROTECTED] with body: "sig

Re: setAttribuve vs setValue

2002-07-17 Thread Manuel Rodriguez Diaz
Sorry, i'm writting about session object. Bhushan_Bhangale escribió: > Hi Manuel, > > For which class these methods you are talking about? There is no setValue method in >HttpServletRequest or HttpSession class infact putValue which is deprecated now in >Httpsession. Can you elaborate your que

Re: setAttribuve vs setValue

2002-07-17 Thread Bhushan_Bhangale
So in session object there is not setValue method but putValue is there that too deprecated. the new method is setAttribute. -Original Message- From: Manuel Rodriguez Diaz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 4:37 PM To: [EMAIL PROTECTED] Subject: Re: setAttribuve vs

Re: Daemon Process

2002-07-17 Thread Isidoros Vacropoulos
STH LIKE THAT import public class your_class extends Thread { // Constructor public your_class() { start(); } // The threads run method public void run() { try { // Sleeping... sleep(8640); } catch (InterruptedExcepti

Re: Daemon Process

2002-07-17 Thread Shamshad Alam
Thank you very much for your effort. but this code sceleton will not create any daemon process. Well, it will create threads but how to run this program in the background so that it can interact with different processes within a specified time. Anyway, Thank you again for the pain u have taken to

Re: Daemon Process

2002-07-17 Thread Isidoros Vacropoulos
for windows you should try sth like this: open a notepad and write: "path_to_java.exe\java.exe" -classpath classes;any_jars your_daemon_class(without .class ending) then save this file with .bat ending for unix/linux i imagine it is sth like this with the difference that you will have to save i

What is Daemon Process..?

2002-07-17 Thread Shankar
Hello, Anybody explain to me what is Daemon Process in Java..? Thanks, Shankar === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTERES

Re: What is Daemon Process..?

2002-07-17 Thread Isidoros Vacropoulos
First of all it is a process which is a class that may do some things.. Term daemon refers usually to the fact that it runs in the background you can program this process to do sht at a specific time and then sleep for some miliseconds and wake up again and do the same thing... Imagine a dae

Re: What is Daemon Process..?

2002-07-17 Thread Jose Andrés Pérez
Take a look at this, may be it can help you. I didn´t have enough time to have a look. http://jcrontab.sourceforge.net/index.shtml Jose > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Isidoros Vacro

Re: Daemon Process

2002-07-17 Thread Tai Seiberrt
Java doesn't really do daemon processes, just threads. To create a deamon process that is a Java application, write a launching program in C (or other language of choice) which becomes a daemon (disassociate from a controlling terminal, close stdin,stdout,stderr) then exec the java application,