Steve Wall

Greenhorn
+ Follow
since Aug 08, 2007
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 Steve Wall

Hello Everyone,

We are developing a new set of webservices that will interact with a RDBMS in the backend through JDBC. It is a standalone java application and NOT a web application.

Can someone please suggest whether we should go for Axis2 Standalone server or Axis2 in tomcat. Also, can someone give some insight into the advantages of standalone over the Tomcat one and vice-versa.

Thanks in advance

Steve
16 years ago
I just had the same problem with my ticker applet.
Do you have an infinite loop in your applet?
if yes put it in a separate thread.
You might also cosider doing this:
public void update(Graphics g) {
paint(g);
}
and then call the
repaint();
somewhere in the code. Perhaps the start() method.
23 years ago
I just bumped into the same problem here is the snipped of my code. Whe I try to run it I get a file not found found exception.
Can anyone please tell me what the problem is.
String fileURL = "http://www.nfl.com/matchup.html";
BufferedReader fileStream = new BufferedReader(new FileReader(fileURL));
23 years ago
I think it is for the annonymous class declared in line 30
I am not going to mention the question I had on the test, but wanted to get feedback from people in this forum.
The fill-in the blank question specified DO NOT USE SPACES IN YOUR ANSWER.
the answer was some method call with two arguments
Ex. method(a, b);
I did not use a space between a, and b do you think I was right.
I don't know if this post is welcome because of such a low score, but here are my comments:
I have no experience working in the programing field.
I read "Thinking in Java" from front to back, and used the Exam Cram as my study guide.
I visited this site frequently and usually found answers to my questions in previous posts.
The exam consisted of approximatly:
4 String questions
5 Layout questions( only one on GridBag layout)
3 Garbage Collection questions
0 MediaTracker questions
I also only got 2 fill-in a blank questions
This site was a huge help. Thanks to all of you I am now certified!
My question:
Now that I passed with such a low score, is it possible for me to get a job working with Java given that I also don't have any experience?
I hope this post will help somebody.
Any feedback on my question will be greatly appreciated.
Again THANK YOU!
I am taking the test tommorow.
I used exam cram as my study guide.
After reading the posts I have a couple of questions.
What are the sun marketing questions?
Where on the net can I study about the media tracker?
Any help will be greatly appreciated
Here is how i do it:
first convert any int to binary
then if it is hex you need then every four binary digits summed
represent one hex digit
Ex.
int 28 bin 11100
for hex break bin into quads 0001 : 1100 this gives 0x001C
for oct break bin into trips 011 : 100 this gives 034
hope this helps
Thanks, this is great.
24 years ago
Is ther a site on the internet that has all of the swing components and examples them being implemented. I have just started reading "Thinkin in java" but it doesn't have any pictures and doesn't cover swing as well as I would like.
Thanks
24 years ago