Re: request scope for bean from servlet
You can do it using RequestDispatcher. > -- > From: Karl Roberts[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Wednesday, August 02, 2000 10:54 PM > To: [EMAIL PROTECTED] > Subject: request scope for bean from servlet > > Hi All, > > Does any one know how to pass a bean into a JSP with a request > scope > from a servlet so that the bean is not re-instanciated (because it already > exists in the request). > > thanks in advance > > Karl > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Re: jsp-bean
Hi Deepak, I never worked on weblogic but I do have experiance of other Application Servers. In our case we have a folder called classes where we dump our beans. The other way to do this would be to make a jar file of all the classes and put them in your lib directory and start the server. This will make your classes to be loaded in to the classpath whenever you start your application server. I hope this will help you. Manish > -- > From: Deepak Arora[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Friday, August 04, 2000 1:57 PM > To: [EMAIL PROTECTED] > Subject: jsp-bean > > Hi friends > i am trying to acess a bean from my jsp pages > i have placed my jsp pages & bean in public_html > directory of weblogic > but my jsp pages are not able to locate the class file > > is there any other directory where i should keep the > class files > i am also unclear about id and class attributes of > usebean tag > any example will be apppreciated > kindly help > it's very urgent > thanks > deepak > > > > __ > Do You Yahoo!? > Kick off your party with Yahoo! Invites. > http://invites.yahoo.com/ > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Re: Compilation
Hi BRN, I am not sure about the 1.3 candidate version but the given coomand works perfectly fine. One more thing.. both the commands which i sent to you are same. The only difference is the name of source file. Actually, when you say javac *.java, It will compile all the java source codes present in the working directory. Manish > -- > From: B R Nair[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Tuesday, August 01, 2000 12:22 AM > To: [EMAIL PROTECTED] > Subject: Re: Compilation > > Dear Manish, > Thanks for your input. I changed your first command a little bit because > the > first command that you gave me (javac -J-Djavac.pipe.output=true > *.java>error.txt) was not working. > > Sorry for disturbing you. Your revised command > javac -J-Djavac.pipe.output=true Hello.java>error.txt > runs but it always gives an empty error.txt, eventhough errors are > reported > on the screen. Is it a bug in 1.3 candidate version? I am still using 1.3 > candidate version! > > Thanks and regards > BRN. > > -Original Message- > From: Manish Bijay Kumar <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > Date: Monday, July 31, 2000 11:42 AM > Subject: Re: Compilation > > > >Hi BRN, > >The command you used is not correct. > >Command should be.. > >javac -J-Djavac.pipe.output=true Hello.java>error.txt > > > >One more thing... > >If you don't have any error in your source code ..still an empty > error.txt > >file will be generated. > > > >Just try it out and let me know whether you succeeded. > > > >Manish... > >> -- > >> From: B R Nair[SMTP:[EMAIL PROTECTED]] > >> Reply To: A mailing list about Java Server Pages specification and > >> reference > >> Sent: Sunday, July 30, 2000 6:46 PM > >> To: [EMAIL PROTECTED] > >> Subject: Re: Compilation > >> > >> Hello Manish, > >> > >> javac Hello.java -J-Djavac.pipe.output=true Hello.java>error.txt > >> > >> does not make any output to error.txt; it makes an empty error.txt > >> Can you please make it working? > >> > >> Control-pannel/console and Buffer-size are not available on my Win 95 > >> machine. I hope making the above command workable is the only solution > >> available to me. > >> > >> Thanks > >> BRN. > >> > >> > >> -Original Message- > >> From: Manish Bijay Kumar <[EMAIL PROTECTED]> > >> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > >> Date: Thursday, July 27, 2000 4:07 PM > >> Subject: Re: Compilation > >> > >> > >> >Hi ruchi.. > >> >u can use following command to generate a error log. while changing > the > >> >buffer size is also a solution but for me at least this one is more > >> handy. > >> >Suppose I want to compile a xyz.java file. then my command should > be. > >> >javac -J-Djavac.pipe.output=true *.java>error.txt > >> > > >> >where, > >> >xyz.java is the bean you are going to compile. > >> >error.txt is the error log. (you can give any name for this. If you > just > >> >give like this error.txt will get generated in your current > >> directory...but > >> >you can specify the path also. Like, C:\myfolder\error.txt) Then > command > >> >would look like this.. > >> >javac -J-Djavac.pipe.output=true *.java>C:\myfolder\error.txt > >> > > >> > > >> >Manish > >> > > >> > > >> >> -- > >> >> From: Ruchi Duggal[SMTP:[EMAIL PROTECTED]] > >> >> Reply To: [EMAIL PROTECTED] > >> >> Sent: Thursday, July 27, 2000 3:09 PM > >> >> To: [EMAIL PROTECTED] > >> >> Subject: Re: Compilation > >> >> > >> >> Go to control panel... > >> >> click on console > >> >> and change the layout screen buffer size and then > >> check... > >> >> > >> >> > >> >> -Original Message- > >> >> From: A mailing list about Java Server Pages specification and > >> reference > >> >> [mailto:[EMAIL PROTECTED]]On Behalf Of B R Nair > >> >> Sent: 26 July 2000 18:04 > >> >> To: [EMAIL PROTECTED] >
Re: Referrer URL
if the following doesn't work..then try history.go(-1) > -- > From: TODD HARNEY[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Monday, July 31, 2000 5:35 PM > To: [EMAIL PROTECTED] > Subject: Re: Referrer URL > > In Javascript it is like this... > > window.history.back() > > Hope this helps... > > >>> [EMAIL PROTECTED] 7/31/00 7:34 >>> > Is it possible to get the url of the referring page, that is, the page > before this one ? I thought this was possible when I previously used > isapi. > > What I am trying to do is to put a 'retry' link on my error page, and more > importantly to log the url of the page that generated the error. > > thanks, > Richard > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Re: Connection to a database - failure
where is the method signature. You have directly coded evrything in the class body. Put your code within method body and then compile...it won't give such error > -- > From: Marcel van Kooy[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Monday, July 31, 2000 3:32 PM > To: [EMAIL PROTECTED] > Subject: Connection to a database - failure > > Hi all, > > Can somebody please help me with this problem. > When I compile this source-code, for making a connection to a database, > I'll receive the error "type expected" in the first TRY-statement. > How can I solve this and what does it mean? > Thanks, > Marcel van Kooy > > import java.sql.*; > > public class TestBean { > > try { > Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); > } > > catch( Exception e ) { > System.out.println("Failed to load JdbcOdbcDriver."); > return; > } > > try { > Connection con = > DriverManager.getConnection("jdbc:odbc:Studio_Bezoekers", "", ""); > Statement select = con.createStatement(); > ResultSet result = select.executeQuery > ("...A query..."); > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Re: Compilation
Hi BRN, The command you used is not correct. Command should be.. javac -J-Djavac.pipe.output=true Hello.java>error.txt One more thing... If you don't have any error in your source code ..still an empty error.txt file will be generated. Just try it out and let me know whether you succeeded. Manish... > -- > From: B R Nair[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Sunday, July 30, 2000 6:46 PM > To: [EMAIL PROTECTED] > Subject: Re: Compilation > > Hello Manish, > > javac Hello.java -J-Djavac.pipe.output=true Hello.java>error.txt > > does not make any output to error.txt; it makes an empty error.txt > Can you please make it working? > > Control-pannel/console and Buffer-size are not available on my Win 95 > machine. I hope making the above command workable is the only solution > available to me. > > Thanks > BRN. > > > -Original Message- > From: Manish Bijay Kumar <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > Date: Thursday, July 27, 2000 4:07 PM > Subject: Re: Compilation > > > >Hi ruchi.. > >u can use following command to generate a error log. while changing the > >buffer size is also a solution but for me at least this one is more > handy. > >Suppose I want to compile a xyz.java file. then my command should be. > >javac -J-Djavac.pipe.output=true *.java>error.txt > > > >where, > >xyz.java is the bean you are going to compile. > >error.txt is the error log. (you can give any name for this. If you just > >give like this error.txt will get generated in your current > directory...but > >you can specify the path also. Like, C:\myfolder\error.txt) Then command > >would look like this.. > >javac -J-Djavac.pipe.output=true *.java>C:\myfolder\error.txt > > > > > >Manish > > > > > >> -- > >> From: Ruchi Duggal[SMTP:[EMAIL PROTECTED]] > >> Reply To: [EMAIL PROTECTED] > >> Sent: Thursday, July 27, 2000 3:09 PM > >> To: [EMAIL PROTECTED] > >> Subject: Re: Compilation > >> > >> Go to control panel... > >> click on console > >> and change the layout screen buffer size and then > check... > >> > >> > >> -Original Message- > >> From: A mailing list about Java Server Pages specification and > reference > >> [mailto:[EMAIL PROTECTED]]On Behalf Of B R Nair > >> Sent: 26 July 2000 18:04 > >> To: [EMAIL PROTECTED] > >> Subject: Re: Compilation > >> > >> > >> Hello, > >> > >> Thanks for the answer. But my problem is persisting! I tried many > >> combinations in the property dialogue of the MSDOS prompt. But I was > never > >> successful in making the screen scrollable. Therefore, compiling of > Beans > >> and JSP are nightmares! > >> > >> Help me please! > >> BRN. > >> > >> -Original Message- > >> From: Karanjit Singh <[EMAIL PROTECTED]> > >> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > >> Date: Tuesday, July 25, 2000 11:11 PM > >> Subject: Re: Compilation > >> > >> > >> >go to the frame header right click gointo properties and then increase > >> >buffer size u will be able to scroll across ur errors. > >> >mandeep > >> > > >> > > >> >>From: B R Nair <[EMAIL PROTECTED]> > >> >>Reply-To: A mailing list about Java Server Pages specification and > >> >> reference <[EMAIL PROTECTED]> > >> >>To: [EMAIL PROTECTED] > >> >>Subject: Compilation > >> >>Date: Tue, 25 Jul 2000 10:58:00 +0530 > >> >> > >> >>Hello All, > >> >> > >> >>I am unable to debug my java beans because while compiling the > program, > >> if > >> >>more errors are there, the error messages roll up and I am able to > see > >> only > >> >>the last messages. I am using JDK 1.3 candidate version under Windows > >> 95. > >> >>In > >> >>erlier versions I could say > >> >>javac filename > repo.log > >> >>so that I could check repo.log for errors. This does not work with > JDK > >> 1.3. > >> >> > >> >>Can anyone help me please? > >> >>BRN. > >> >> > >> > >>===
Difference between JSP.92 & JSP1.1
Hi all, Is there any site available where i can find the differences between JSP0.92 & JSP1.0 or JSP1.1 ? Thanks in advance... Manish === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Re: Help for JSP implicit objects
refer to following faqs...you will find good help.. http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > -- > From: Ruchi Duggal[SMTP:[EMAIL PROTECTED]] > Reply To: [EMAIL PROTECTED] > Sent: Friday, July 28, 2000 3:03 PM > To: [EMAIL PROTECTED] > Subject: Re: Help for JSP implicit objects > > See on java.sun.com... > U'll find it > > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of manish jain > Sent: 28 July 2000 10:25 > To: [EMAIL PROTECTED] > Subject: Help for JSP implicit objects > > > Where can i get help for JSP implicit objects > session,application,request,responseetc > Can u tell me links Also books for the same > > Manish. > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > > > This message has been checked for all known viruses, by Star Internet, > delivered through the MessageLabs Virus Control Centre. > For further information visit: > http://www.star.net.uk/stats.asp > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Re: Development Tool and JSP Deployment
you can use Jbuilder3.5 EE. But the evaluation copy is not free. So, if you want to get it, you have to pay 7 US$. Just check the jbuilder's site for more info. > -- > From: Randy San Miguel[SMTP:[EMAIL PROTECTED]] > Reply To: A mailing list about Java Server Pages specification and > reference > Sent: Friday, July 28, 2000 2:24 PM > To: [EMAIL PROTECTED] > Subject: Development Tool and JSP Deployment > > Greetings, > I am looking for a development tool for JSP and EJB's other than > Oracle JDeveloper3.0. I also seek help regarding JSP deployment to any > application server. > Thanks in advance. > > -randy > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Re: Compilation
Hi ruchi.. u can use following command to generate a error log. while changing the buffer size is also a solution but for me at least this one is more handy. Suppose I want to compile a xyz.java file. then my command should be. javac -J-Djavac.pipe.output=true *.java>error.txt where, xyz.java is the bean you are going to compile. error.txt is the error log. (you can give any name for this. If you just give like this error.txt will get generated in your current directory...but you can specify the path also. Like, C:\myfolder\error.txt) Then command would look like this.. javac -J-Djavac.pipe.output=true *.java>C:\myfolder\error.txt Manish > -- > From: Ruchi Duggal[SMTP:[EMAIL PROTECTED]] > Reply To: [EMAIL PROTECTED] > Sent: Thursday, July 27, 2000 3:09 PM > To: [EMAIL PROTECTED] > Subject: Re: Compilation > > Go to control panel... > click on console > and change the layout screen buffer size and then check... > > > -Original Message- > From: A mailing list about Java Server Pages specification and reference > [mailto:[EMAIL PROTECTED]]On Behalf Of B R Nair > Sent: 26 July 2000 18:04 > To: [EMAIL PROTECTED] > Subject: Re: Compilation > > > Hello, > > Thanks for the answer. But my problem is persisting! I tried many > combinations in the property dialogue of the MSDOS prompt. But I was never > successful in making the screen scrollable. Therefore, compiling of Beans > and JSP are nightmares! > > Help me please! > BRN. > > -Original Message- > From: Karanjit Singh <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> > Date: Tuesday, July 25, 2000 11:11 PM > Subject: Re: Compilation > > > >go to the frame header right click gointo properties and then increase > >buffer size u will be able to scroll across ur errors. > >mandeep > > > > > >>From: B R Nair <[EMAIL PROTECTED]> > >>Reply-To: A mailing list about Java Server Pages specification and > >> reference <[EMAIL PROTECTED]> > >>To: [EMAIL PROTECTED] > >>Subject: Compilation > >>Date: Tue, 25 Jul 2000 10:58:00 +0530 > >> > >>Hello All, > >> > >>I am unable to debug my java beans because while compiling the program, > if > >>more errors are there, the error messages roll up and I am able to see > only > >>the last messages. I am using JDK 1.3 candidate version under Windows > 95. > >>In > >>erlier versions I could say > >>javac filename > repo.log > >>so that I could check repo.log for errors. This does not work with JDK > 1.3. > >> > >>Can anyone help me please? > >>BRN. > >> > >> > == > = > >>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > >>JSP-INTEREST". > >>Some relevant FAQs on JSP/Servlets can be found at: > >> > >> http://java.sun.com/products/jsp/faq.html > >> http://www.esperanto.org.nz/jsp/jspfaq.html > >> http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > >> http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > > > > > >Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com > > > >= > == > >To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > >Some relevant FAQs on JSP/Servlets can be found at: > > > > http://java.sun.com/products/jsp/faq.html > > http://www.esperanto.org.nz/jsp/jspfaq.html > > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > > > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > > > This message has been checked for all known viruses, by Star Internet, > delivered through the MessageLabs Virus Control Centre. > For further information visit: > http://www.star.net.uk/stats.asp > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.
com.sun.image.codec.jpeg
Hi All, Has any body used the com.sun.image.codec.jpeg API. It would be great if some can provide some good examples on the above. Thanks, Manish === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Servlet to JSP
Hi all, Can anybody tell the optimum way to pass a collection object from the servlet to JSP ? I have got two options currently. 1. Adding the collection object with the session or, 2. Using a javaBean which will hold the collection object and using the JavaBean in the JSP using usebean tag with scope = session. Thanks & regards. Manish === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Image genration using jcchart & passing it to HTML client.
Hi all, What I am trying to do is to create a graph at the server end using jcchart and passing it to the client (HTML page). Does any body has done this successfully. If yes..then please guide me. Thanks in advance... Manish Kumar === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
URGENT: SESSION TRACKING
Hi all, First of all I will tell you what exactly I want to do. Actually We have a logon screen from where we enter into our site. When we enter into the site a new frame pops up and we retain the logon screen as it is. Now suppose i want to login with different user id. In this case i need to start a different session. There shouldn't be any conflict with the existing session. So the idea is to have two different & concurrent sessions. Is it possible ? if yes, then please reply back with the solution. Thanks Manish === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
Tech: Tree in JSP
Hi, Has anybody used tree-structures in JSPs. If yes please give some related information. Thanks, Manish > -- > From: David Yee[SMTP:[EMAIL PROTECTED]] > Sent: Thursday, February 10, 2000 10:34 AM > To: [EMAIL PROTECTED] > Subject: weird error > > Hi - > > While running some jsp code, I'm getting the following error at > the > end of every jsp page. > > Error: 500 > javax.servlet.ServletResponse: method flushBuffer()V not found > > > > This is the error message I'm getting from stdout. Any idea what might be > the problem? > > > > > Unhandled error! You might want to consider having an error page to report > such errors more gracefully > java.lang.NoSuchMethodError: javax.servlet.ServletResponse: method > flushBuffer()V not found > at > org.apache.jasper.runtime.JspWriterImpl.flush(JspWriterImpl.java:193) > at > jsp._0002fjsp_0002fwelcome_0002ejspwelcome_jsp_0._jspService(_0002fjsp_000 > 2f > welcome_0002ejspwelcome_jsp_0.java:453) > at > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:126) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:840) > at > org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet. > ja > va:161) > at > org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:247) > at > org.apache.jasper.runtime.JspServlet.service(JspServlet.java:352) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:840) > at > org.apache.tomcat.core.ServiceInvocationHandler.method(ServletWrapper.java > :6 > 26) > at > org.apache.tomcat.core.ServletWrapper.handleInvocation(ServletWrapper.java > :5 > 34) > at > org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:37 > 8) > at > org.apache.tomcat.core.RequestDispatcherImpl.forward(RequestDispatcherImpl > .j > ava:134) > at > go.shop.frame.ShopDispatcherComponentAdapter.callUrl(ShopDispatcherCompone > nt > Adapter.java:58) > at > go.shop.frame.DepartmentDispatcherCheck.go(DepartmentDispatcherCheck.java: > 20 > 7) > at > go.shop.servlet.DepartmentDispatcher.doGo(DepartmentDispatcher.java:67) > at > go.shop.servlet.DepartmentDispatcher.doGet(DepartmentDispatcher.java:50) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:715) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:840) > at > org.apache.tomcat.core.ServiceInvocationHandler.method(ServletWrapper.java > :6 > 26) > at > org.apache.tomcat.core.ServletWrapper.handleInvocation(ServletWrapper.java > :5 > 34) > at > org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:37 > 8) > at org.apache.tomcat.core.Context.handleRequest(Context.java:644) > at > org.apache.tomcat.core.ContextManager.service(ContextManager.java:440) > at > org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(Htt > pC > onnectionHandler.java:144) > at > org.apache.tomcat.service.TcpConnectionThread.run(TcpEndpoint.java:304) > at java.lang.Thread.run(Thread.java) > > == > = > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff > JSP-INTEREST". > FAQs on JSP can be found at: > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html
Books on JSP
Hi all, I want to know about some good books on JSP. Thanks, Manish === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html
Help:JSPs on IIS webserver
Hi all, Is there any way to use JSP on IIS web server. I have heard that some JAR file is available which can be used as some add-on to IIS web server to run JSPs. Looking forward to ur reply. Thanks Manish > -- > From: Christian Mallwitz[SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, February 09, 2000 2:26 PM > To: [EMAIL PROTECTED] > Subject: Re: i18n support in JSP > > <>< charset-sjis-dynamic-unicode.jsp>><>< charset-utf-8.html>><>< charset-utf-8-static.jsp>> > Hi, > > I'm using JWS2.0. I have attached some test pages for you. First there > are HTML pages which should not make any difficulties. Secondly there > are JSP pages which should produce the same output as the HTML files. > > The UTF-8 files are just an additional example on what I tried to test > with regard to I18N in JSP engines. > > All of the files are displayed correctly on a US version of NT 4.0 SP5 > and US version of IE 5 with sufficient font support for Japanese > characters ... > > Hope this helps > Christian > -- > Christian Mallwitz INTERSHOP Communications Germany > Senior Software Engineerphone: +49 3641 894 334 > > === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html