[java ee programming] Re: Unsubscribe

2009-08-20 Thread Vidmantas Maskoliƫnas
Dear People, I don't want to tutor those who want to unsubscribe, but... have you tried to check the note at the bottom of each message? It says: You received this message because you are subscribed to the Google Groups Java EE (J2EE)

[java ee programming] Unsubscribe

2009-08-20 Thread kenneth kgatwane
Hi, how do I unsubscribe from this course?? _ With Windows Live, you can organize, edit, and share your photos. http://www.microsoft.com/southafrica/windows/windowslive/products/photo-gallery-edit.aspx

[java ee programming] Invitation to connect on LinkedIn

2009-08-20 Thread Rasheed Amir
LinkedIn Rasheed Amir requested to add you as a connection on LinkedIn: -- Alex, I'd like to add you to my professional network on LinkedIn. - Rasheed View invitation from Rasheed Amir

[java ee programming] Servlet Basics Lab Exercise

2009-08-20 Thread Prathibha H M
Hi All, In Servlet_Basics homework, I modified the existing code of Hello2 project and it was successful. I tried to create a new project MyHello2 and copied the 2 servlet files(GreetingServlet and ResponseServlet) and modified the new web.xml. Build is successful. But When I run the project I

[java ee programming] Re: Required help in using Data Source

2009-08-20 Thread Tommy
Thi is a example with datasource with oracle //Server package datasource; import java.sql.*; import javax.sql.*; import oracle.jdbc.pool.OracleDataSource; import javax.naming.*; import java.util.*; /** * A class to create a DataSource and bind it to a directory. */ public class

[java ee programming] text feild

2009-08-20 Thread deepuktvm draps
how to set text field as integer in java using netbean --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Java EE (J2EE) Programming with Passion! group. To post to this group, send email to

[java ee programming] web application

2009-08-20 Thread ANUJ KUMAR
how to exempt a ports from the firewall --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Java EE (J2EE) Programming with Passion! group. To post to this group, send email to

[java ee programming] Re: Servlet Basics Lab Exercise

2009-08-20 Thread Diane Ramsey
Prathibha, I think I had a similar problems at one point. Not sure if it was the exact same thing. But I removed the welcome-file-list elements from the web.xml. Also check the web.xml and make sure your servlets are defined only once and that only valid servlets are defined. Netbeans

[java ee programming] Re: text feild

2009-08-20 Thread tariq masood
Hi Dear basically JTextField is an swing component . You need to do as given e.g JTextField txt1 = new JTextField(); txt1.setText(25); String txtstr = txt1.getText(); int txtint = Integer.parseInt(txtstr); now