[java ee programming] Tree view in JSP

2009-06-01 Thread mori . rasesh . d
Hi all, I wanted to know how can I use tree view in JSP as we have on the left side of explorer in XP. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to t

[java ee programming] Re: Problem with Hibernate Lab

2009-06-01 Thread mak pandian
Hello I got error while running this application is "Session factory can not be created"" How can i solve it? On Sat, May 30, 2009 at 2:26 PM, lalit wrote: > > Check if your hibernate.cfg.xml is in the class path. > Check the sample code at http://oyejava.com/tiki-index.php? > page=Hibernate+I

[java ee programming] Re: webuijsf:listbox multiple option not working

2009-06-01 Thread Bill Gordon
i have an app that uses multi-select dropdown lists in a VWP page, and for all of these dropdown lists scroll bars DO appear when the list size is > the number of display rows specified. These dropdown lists are populated by data read from database tables. Here is the jsp for one example:

[java ee programming] Re: Netbeans-Servlet-help

2009-06-01 Thread adetola ademiju
hi, I also use the same version of netbeans and i also get the same error message so i have resulted to deploying via the Glassfish admin (localhost:4848) Date: Mon, 1 Jun 2009 08:53:59 -0700 From: sims_sa...@yahoo.com Subject: [java ee programming] Netbeans-Servlet-help To: java-ee-j2ee-

[java ee programming] webuijsf:listbox multiple option not working

2009-06-01 Thread Ginger Cheng
Hello, Everyone, Please allow me to ask this webuijsf:listbox question here. I can't find helps in days. I tried to use webuijsf:listbox for a multiple select dropdown list. Bu the result list does NOT have a scroll bar even if I have more items than specified in 'rows'. I've been searching on

[java ee programming] Re: Need help

2009-06-01 Thread Justin Hogg
Have a look at: http://quercus.caucho.com/ Its a Java implementation of PHP. Regards On Mon, Jun 1, 2009 at 5:22 AM, manu wrote: > > Hello, > I am Using jdk 6 + Eclipse 3.4.2 + Tomcat 6.0 and apache 2.0and mysql > 5.0 + php 5.1. i want to run my project at tomcat and use java library > at php

[java ee programming] hi all ....

2009-06-01 Thread jayant chaudhari
hi all, I m new to this group .i jst joined this group. I m fresher graduate working as a Java developer from last 7 months . currently working on servlets , jsp,struts,etc. I have completed SCJP 5.0 exam. and I would like to learn new technologies and frameworks . Could you plz help to find bes

[java ee programming] Re: hi all ....

2009-06-01 Thread Serginho Henrique
Hey there. Check out this website. http://www.booktraining.net/search/label/.---Java Best Regards, **Sérgio Henrique de Morais* *Mobile*:* +55 31 861 246 70 Email*:* <%E2%80%9Dmailto:j...@wisestamp.com%e2%80%9d> serginho.henri...@gmail.com <%E2%80%9Dhttp://j...@wisestamp.com%e2%80%9d>

[java ee programming] Re: Netbeans-Servlet-help

2009-06-01 Thread David Amend
Hi Saran, I had the same error, I would change the active GlassFish Server from v3 to v2 . This should easily fix the problem.   You can change the Server on right-Click the Project - Properies -Run - Server ->>> Hello   I am new to servlets just started pgmi am using net

[java ee programming] Re: Netbeans-Servlet-help

2009-06-01 Thread Biljana Biljana
many of programs have name HelloWeb. usuali when your GlassFish won't work it is because you did something wrong in web.xml.But your problem is that you run program on GlassFishV3, change server to GlassFIsh V2. And that will solve your program. I think!   Regards, Biljana --- On Mon, 6/1/09, s

Re: Fw: [java ee programming] Homework in Lab-4913

2009-06-01 Thread Biljana Biljana
Hello!     I also notice that in zipped folder for lab no proect name SpringInjectionRef just SpringInjectionInjectRef . But content and result of running is the same I think. So I have copy of this one I done homework.   Regards, Biljana       --- On Mon, 6/1/09, Biljana Biljana wrote: Fro

[java ee programming] Re: How can i display image file from absolute path with JSP in Tomcat

2009-06-01 Thread Nguyễn Quang Tùng
okay, I have understood. thanks so much :) On Mon, Jun 1, 2009 at 4:58 PM, Santhosh Kumar wrote: > Hi, > > You can do this by using java.io.File. > > sample code > File file=new File("D:\\image_storage"); > File listImages[]=null; > if(file.existrs()) > { > listImages=file.listFiles(); > if(list

Fw: [java ee programming] Homework in Lab-4913

2009-06-01 Thread Biljana Biljana
Hello! I wrote in beans.xml                ... then in wrote that class BookwormOracle extends Address class, and that is all   And when I run program ity works with same bean injectRef.   Is it good homework even I added that extends in class BookwormOracle?   Re

[java ee programming] Re: How can i display image file from absolute path with JSP in Tomcat

2009-06-01 Thread Santhosh Kumar
Hi, You can do this by using java.io.File. *sample code* File file=new File("D:\\image_storage"); File listImages[]=null; if(file.existrs()) { listImages=file.listFiles(); if(listImages!=null) { for(int i=0;i //your code goes here, } } } regards, G.Santhosh Kumar 2009/6/1 Nguyễn Quang Tùng

[java ee programming] Re: How can i display image file from absolute path with JSP in Tomcat

2009-06-01 Thread Nguyễn Quang Tùng
when i do a action upload images , i will store it into local folder in my PC. Therefore, the size of folder may be quite big. i think it's possible too, but i resolve this problem not yet. thanks On 6/1/09, EaKG wrote: > > Hi everyone! > i'm creating a web project and i have a folder in a loca