[java ee programming] I want an applet on jsp

2009-09-18 Thread ravi
1.I write an applet .jsp page. That is open a file path name and pass it to my mysql 6.0 data. but in applet The computer files are not opened . 2. how i will get full path of the computer file .ravi --~--~-~--~~~---~--~~ You receiv

[java ee programming] lab-4003

2009-09-18 Thread derezone
For the Homework In modifying the Hello1 project after doing the first step which says Modify index.jsp and response.jsp to display another item The next step I have to add a JSP, adding another parm - how do I pass the parms to the response.jsp so that it will recognize them --~--~-~

[java ee programming] Re: A problem: "getServletContext() "

2009-09-18 Thread gozlemci
I did not realize it. Thank you. On 17 Eylül, 22:20, Mihai DINCA wrote: > Hi, > > Your class is not (yet) a servlet! In order to be one (and to inherit > "getServletContext()" method) it must extend > "javax.servelt.http.HttpServlet" > -- > Hope it helps > mihai > > gozlemci a écrit : > > > > >

[java ee programming] Re: consultation

2009-09-18 Thread Moria Shebsovich
Hi, I think this is good explanation: Question: What is the difference between servlet and Java Server Pages? Which is preferred? Answer: Servlets and Java Server Pages are complementary APIs, both providing a means for generating dynamic Web content. A servlet is a Java class implemen

[java ee programming] Re: LAB-4015 Exercise 3: SQL tags

2009-09-18 Thread Cynthia Qin
Yes, I was able to run the bookstore project, and yes, the server is GlassFish. Thanks, Cynthia On Fri, Sep 18, 2009 at 9:06 AM, diegosouza.br wrote: > > Hello Cynthia, > > I haven't created anything to run the project. By The way I haven't > seen any DataSource file config. > Are you sure you

[java ee programming] Re: Bookstore1 DB error...

2009-09-18 Thread diegosouza.br
Hello, That's it. Open the aggregated project (bookstore), change the JDBC DataSource address and rebuild it to generate a new jar. So if you rebuild the bookstore1 project I think everything is going to run properly. Tell me the result. On Sep 17, 4:58 pm, "p. stephen wille" wrote: > Thanks

[java ee programming] Re: LAB-4015 Exercise 3: SQL tags

2009-09-18 Thread diegosouza.br
Hello Cynthia, I haven't created anything to run the project. By The way I haven't seen any DataSource file config. Are you sure you're deploying in the right server? Have you ran another project with a Derby connection? On Sep 18, 12:36 am, Cynthia Qin wrote: > Hello Diego, > > I tried everyt

[java ee programming] Re: How to add MySql5.0 Driver to eclipse

2009-09-18 Thread Alin Dumitrescu
You have to look for the "mysql-connector-java-3.0.17-ga-bin.jar" on the internet, you have the link at the bottom. It is the jar that you have to put in the /lib directory of your project It will tell your application how to reach the MySQL server. http://dev.mysql.com/downloads/connector/j/5.1.h

[java ee programming] Re: How to add MySql5.0 Driver to eclipse

2009-09-18 Thread Bob Santos
Hi Sagar, I'm not sure with eclipse 5.1 cause I haven't used it yet but here's some points: 1. If you are creating a desktop app then you should add it to the build path.Right click the project and select Build Path -> Configure Build Path and go to the Libraries tab and click Add External Jars a

[java ee programming] Re: consultation

2009-09-18 Thread Kamal Chandana Mettananda
I guess you should read a bit about this from the internet. Simply said; JSP came after Servlet, a Servlet is a simple java class you extend from HttpServlet class. JSP is similar to a simple html page that you would write, but contains Java related code inside. When you use a jsp page inside you

[java ee programming] How to add MySql5.0 Driver to eclipse

2009-09-18 Thread aryan
Hi, In eclipse 5.1 there is only one driver "JDBC ODBC" Driver. I want to add mysql driver. how can i add driver to eclipse. Regards Sagar --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming w