Colin Humber

Greenhorn
+ Follow
since Nov 05, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Colin Humber

My suggestion would be (in case you haven't already) to create specific method for each operation you wish to perform. i.e one for Database Access. Also have a controller method which makes the appropriate method calls.
Declare all of you "worker" methods to throw their respective Exceptions, and in the controller method wrap your method calls in one try/catch.
Cheers
21 years ago
After reading the API and the trace messages for this exception, I cannot find where its coming from. Although I have narrowed it down to one line of code.
in=(org.omg.CORBA_2_3.portable.InputStream)_invoke(out);
This line is found in a generate STUB class for an Entity EJB. I'm using VisualAge for Java 4. Any input would be appreciated.
Colin
21 years ago
Don't know if you've already tried this, it may help.
FileWriter(String fileName, boolean append)
Constructs a FileWriter object given a file name with a boolean indicating whether or not to append the data written.
22 years ago
JLabel[] x={new JLabel("Label1"),
new JLabel("label2")};
22 years ago
JPanel is a container. Container has a method called remove(Component c). This method removes the component from the container.
22 years ago
Does anybody know where I can find information about using applets as EJB Clients?