[java ee programming] WebApplication

2011-06-27 Thread Rafał Laczek
Hi Colleagues, In MyApplication which extends WebApplication I have method getBean(). When I build the project I get "cannot find method getContext() in WebApplication" Can somebody help please. Regards, Rafal public class MyApplication extends WebApplication { public static Object getBean(Strin

Odp: [java ee programming] SPRING - need urgen help

2011-06-27 Thread Rafał Laczek
Hi, This mail is not valid already. I wait when moderator will put my last post. Br, Rafal Dnia 27-06-2011 o godz. 11:44 Rafał Laczek napisał(a): > Hi Colleagues, > > I need urgent help. > I must change getServicePoint() which gets the service point" " to look > up using Spring instead of the

Re: [java ee programming] read the content of a url

2011-06-27 Thread Bob Tarling
>From a quick glance of this code it should return whatever is requested of the URL. What do you mean by 'content' as opposed to the source? If you are looking to download images or video clips then you will have to write some code to scan the HTML returned to find the URL of those items then cal

[java ee programming] read the content of a url

2011-06-27 Thread ANUJ KUMAR
can some please provide me with the code to read the content of a url. i mean only the content of the url not the html sourse. I used he code given in http://download.oracle.com/javase/tutorial/networking/urls/readingURL.html but it is reading the html content and not the actual content. Thanks, An

[java ee programming] Looking for moderator of this email group

2011-06-27 Thread Sang Shin
Hi, folks. I am looking for a moderator or this email group. In return, you get to have free membership to JavaPassion.com. The moderation is only for new members as a default so it should not be that heavy load. Thanks. -Sang Shin --

[java ee programming] Software Testing Conference 2011(July 2nd, Bangalore)

2011-06-27 Thread mahi kumar
Hi , I got to know of an exciting event happening in Bangalore on July 2nd. I guess it will add a great value to all the Testing professionals in the Testing domain. I believe it is worth attending as there are interesting topics. (See the Sessions below). The Conference starts at 8.30 AM. The

Re: [java ee programming] Digest for java-ee-j2ee-programming-with-pass...@googlegroups.com - 1 Message in 1 Topic

2011-06-27 Thread Fernando Garcia
are you talking to me? 2011/6/14 > Today's Topic Summary > > Group: > http://groups.google.com/group/java-ee-j2ee-programming-with-passion/topics > >- Error while deploying application on > glassfish

[java ee programming] SPRING - need urgen help

2011-06-27 Thread Rafał Laczek
Hi Colleagues, I need urgent help. I must change getServicePoint() which gets the service point" " to look up using Spring instead of the ClientConfig" Thanks and regards, Rafal private static final ClientConfig config = ClientConfig.getConfig(ClientConfig.generateName(HittegodsAPI.class));

[java ee programming] PD: WebApplication - this mail is correct

2011-06-27 Thread Rafał Laczek
Hi, Can you add urgently my post. Thank you BR Rafal Dnia 27-06-2011 o godz. 16:07 Rafał Laczek napisał(a): > Hi Colleagues, > > In MyApplication which extends WebApplication I have method getBean(). > When I build the project I get "cannot find method getContext() in > WebApplication" > Can s

[java ee programming] WebApplication - this mail is correct

2011-06-27 Thread Rafał Laczek
Hi Colleagues, In MyApplication which extends WebApplication I have method getBean(). When I build the project I get "cannot find method getContext() in WebApplication" Can somebody help please. Regards, Rafal public class MyApplication extends WebApplication { public static Object getBean(Strin

[java ee programming] How to portably (sp?) write/create files in Web Applications...

2011-06-27 Thread cyclemaniaque
So the feature request sounded "reasonable". From my web based Java module, which is primarily a tag library that reads in and is wholly dependent upon xml files from the local file system (through URLClassLoader), devise a fallback strategy if for some some reason the source xml files should beco

[java ee programming] WebApplication

2011-06-27 Thread Rafał Laczek
Hi Colleagues, In MyApplication which extends WebApplication I have method getBean(). When I build the project I get "cannot find method getContext() in WebApplication" Can somebody help please. Regards, Rafal public class MyApplication extends WebApplication { public static Object getBean(Stri

[java ee programming] Re: swing or jsp

2011-06-27 Thread cyclemaniaque
Well, is your need to have a desktop or web based application? On May 28, 1:48 pm, Arya pathak wrote: > Hi , > >  Thanks in advance... > quite new to java-j2ee...need one suggestion want to design GUI either by > using swing or by using jsp...can any one tell me which is preferable...and > why...

Re: [java ee programming] From char[] to arraylist

2011-06-27 Thread Mansee Mongia
Since you want to put you char values to String Arraylist ... I guess you need to convert your char values to string before adding into the arraylist.. something like this.. ArrayList selectedActualUserRolesList = new ArrayList(); for(int index=0; index < roles.length; index++) se