[java ee programming] Help, GlassFish V2 server no longer starts

2009-04-12 Thread Priyanka Bhardwaj
Hi everyone, I use NetBeans IDE 6.5.1 and the GlassFish V2 server that comes with it. I am learning J2EE and I was able to run projects successfully. But today when I try to run, I get this error message:- *Starting of server GlassFish V2 is not supported. Please, start the server manually. See t

[java ee programming] Re: Remotely access of MYSQL server

2009-04-12 Thread anh le
Hi Yu try to see the your connection. "Connection refused" is connection failed. You can check it as command "ping 192.168.0.100" or "telnet 192.168.0.100 3306". 2009/4/11 > > Hi > > Dear Sang and All members > > I have problem to connect MySQL server from another client computer > through an IP

[java ee programming] Re: Please can anybody help me solve this Problem with graph

2009-04-12 Thread Biljana Biljana
Hi! Ua.. This is tipical example of Servlet Controlled Action, this is for Struts. Simple form to choose action, two input jsp, but also must know Numerical Mathematics for , I think, but I am not sure, Njutn polynomial, create simle Java funcions which will give you result. Good practis for Str

[java ee programming] Re: Remotely access of MYSQL server

2009-04-12 Thread Enrique Estelles
Try using the 3306 port. *Enrique Estellés Arolas * Universidad CEU-Cardenal Herrera Departamento de Matemáticas, Ciencias Físicas y de la Computación. Sistema

[java ee programming] Re: One more problem regarding Expression language homework.

2009-04-12 Thread Artashes Hovasapyan
Hi, I think your classes should look like this. public class Name { private String firstname; private String lastname; public Name() { this(null, null); } public Name(String firstname, String lastname) { this.firstname = firstname; this.lastname = last

[java ee programming] Re: Remotely access of MYSQL server

2009-04-12 Thread Evans
First, don't spam this list, one message is enough there's no need for a second one. Secondly, you're trying to connect to default port 80 which is not possible. So change your post on the URL to 3306, that should help. Good luck. -- Evans http://twitter.com/javawug - Original Message ---

[java ee programming] Question about Exercise 2: Build and run "tiles-blank-struts1-1" sample application

2009-04-12 Thread pxk5249
I am getting the following error when I try to run the project tiles- blank-struts1-1 init: deps-module-jar: deps-ear-jar: deps-jar: library-inclusion-in-archive: C:\Documents and Settings\Owner\My Documents\NetBeansProjects \strutstiles\samples\tiles-blank-struts1-1\nbproject\build-impl.xml: 517

[java ee programming] Remotely access of MYSQL server

2009-04-12 Thread starzam
Hi Dear Sang and All members I have problem to connect MySQL server from another client computer through an IP address of server computer. Example of JDBC is given below . it execute only mysql server with localhost **

[java ee programming] Re: Please can anybody help me solve this Problem with graph

2009-04-12 Thread Karl
a) What does this have to do with J2EE? b) you really expect others to do your homework for you? c) are you kidding me? --- On Thu, 4/9/09, aderemi adeyi wrote: > From: aderemi adeyi > Subject: [java ee programming] Please can anybody help me solve this Problem > with graph > To: java-ee-j2

[java ee programming] MySQL server is not connecting from client computer

2009-04-12 Thread rdm
Hi Dear Sang and All members I have problem to connect MySQL server from another client computer through an IP address of server computer. Example of JDBC is ** import java.sql.Connection; import java.sql.DriverManager;