Software applicaton using java NetBeans IDE 5.0

Attempting to use the GUI Builder, I have trouble writing a socket application (from the client perspective).

I have written a small client/server application with java that works fine. However, trying to implement the same code approach using the IDE, I cannot connect to the Server.

If there is anyone that can be of help, I would appreciate it.

Sincerely

Terjeg

[396 byte] By [Terjega] at [2007-10-3 4:03:35]
# 1
Not likely to be anything to do with the IDE. What kind of connection problem are you getting?Are you sure your server is running when you try to connect?
malcolmmca at 2007-7-14 22:02:36 > top of Java-index,Java Essentials,Java Programming...
# 2
Thank you for your response. I have made sure that the server is running. As far as any error messages are concerned, I don't get any. The connection atttempt is in a try/catch/finally loop where the finally section actually closes the application.Regards Terjeg
Terjega at 2007-7-14 22:02:36 > top of Java-index,Java Essentials,Java Programming...
# 3

Are you moving from a command line to a GUI type program? They are rather different programming environments and I wonder if there's something wrong with your code structure. Certainly a failure to connect should give you an exception and you should be displaying and/or logging the details somewhere.

malcolmmca at 2007-7-14 22:02:36 > top of Java-index,Java Essentials,Java Programming...