Search the web
Sign In
New User? Sign Up
Java_Official · Java SE . EE . ME . AJAX . Web services
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 9849 - 9882 of 32213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9849
Hi, I am new to this list and Java as a whole. I have some experience in writing sites in HTML and am trying to extend my knowledge to Java too. What I am...
Chris Exell
cexell2003
Offline Send Email
Mar 1, 2003
12:09 pm
9850
There is some proxy connection code in the java source at: http://www.quantumhyperspace.com/SourceBank/viewCode.jsp?javaFile=SimpleWebPageReader.java ... ...
Charles Bell at home
quantumhyper...
Offline Send Email
Mar 1, 2003
9:26 pm
9851
I use java One to develop programs and I am using a netbeans download to help speed up creating a gui. The problem is when I try to run the application in the...
wexir
Offline
Mar 2, 2003
2:07 am
9852
Hi Friends, I am Virani Nurali(spelled Noorali) from India. I have recently joined the group. At present, I am doing Bachelor Degree in Computer Application....
Nurali Virani
nuralivirani
Offline Send Email
Mar 2, 2003
2:48 pm
9853
is there any way to write to a file at the beginning of the file so that everytime something is written previously goes under it automaticaly....
ultimate_martial <ati...
ultimate_mar...
Offline Send Email
Mar 3, 2003
8:55 am
9855
I have several sites I maintain. Unfortunately the servers have a tendency to go down. What I'd like to do is check them. Someone suggested javascript as a...
omeganoh <developer@a...
developer@...
Send Email
Mar 3, 2003
10:18 am
9856
Hi all , I'm connectiong to a secure web site (this works fine) then I've to authenticate (this works fine too) the point is when I want to egt the...
rangoon_fr
Offline
Mar 3, 2003
11:04 am
9857
Java (not jav script) is rich in networking features. For the problem you describe, you could write a java client application program or even a java applet to...
Charles Bell
quantumhyper...
Offline Send Email
Mar 3, 2003
3:00 pm
9858
The error occurred attempting to connect to the server. Thus your connection is still not there. You probably need to test the status of your connection before...
Charles Bell
quantumhyper...
Offline Send Email
Mar 3, 2003
3:19 pm
9859
Thank you Charles :-) I am thus wondering when the connection is effectivelly established ? Be kind about the code, I'm *java-ing* for a few 15 days now,...
rangoon_fr
Offline
Mar 3, 2003
4:20 pm
9860
Well, it costs resources to instanciate a class, and then later garbage collect it... an int wont cost the same ammount of resources as a class do. Of...
Erik Alm
erik_alm
Offline Send Email
Mar 3, 2003
4:31 pm
9861
Hello Katy, I use Data Access Objects (DAO) for access to a database, check them out at ...
Erik Alm
erik_alm
Offline Send Email
Mar 3, 2003
4:54 pm
9862
i wanna know in details , step by step how can i send an email with java and how can i get mails from my inbox Thanks ... Do you Yahoo!? Yahoo! Tax Center -...
mohammed nabil
mnegypt1983@...
Send Email
Mar 3, 2003
5:19 pm
9863
For secure connection should you be using HttpsURLConnection instead of HttpURLConnection? conn = (HttpsURLConnection) url.openConnection(); Note the extra s...
Charles Bell
quantumhyper...
Offline Send Email
Mar 3, 2003
6:30 pm
9864
I am trying to play with Java & SOAP using the examples at http://www- 106.ibm.com/developerworks/xml/library/x-jaxmsoap/. I've installed the Java Web Services...
johto <johto@...>
johto
Offline Send Email
Mar 3, 2003
6:36 pm
9866
Erik, You are absolutely correct, there is almost always a tradeoff between resource usage and clarity of an API. My personal opinion is to get clarity first...
Anthony Eden
spooge21
Offline Send Email
Mar 3, 2003
7:17 pm
9867
It's going to be tough to answer your question precisely without seeing the code. However, based on your description of symptoms I can take a wild stab at it. ...
Rudy Gireyev
rgireyev
Offline Send Email
Mar 3, 2003
8:56 pm
9868
Hi, I'm new to the group and haven't programmed in Java since 1.0 . . . however, I use anfy applets on my site at www.datatrack.net. I have IE6 and NS6 both...
Gene Gerard
vfoxdel
Offline Send Email
Mar 4, 2003
3:13 am
9871
hi friends, this is purush, and this is my first mail.please give your replies soon. I have problems in using objectstreams in sockets. here is my problem. i...
purushcse <purushcse@...
purushcse
Offline Send Email
Mar 4, 2003
5:57 am
9872
Hi all In my application , I have tabpane I set some tooltip with each tab in the tabpane using JtabbedPane tbPane = new JTabbedPane(); tbPane.addTab("Title...
sanjay paithankar
callme_sanjay
Offline Send Email
Mar 4, 2003
6:36 am
9873
The point is, as far as I get it, the HttpsURLConnection does not exists in JDK 1.3.1 and we cannot upgrade to 1.4 at this time :-( otherwize, about the code,...
rangoon_fr
Offline
Mar 4, 2003
8:04 am
9874
Hi I am vishal and i am currently working as a developer and i have a query regarding executing the JSP and ejb in jboss with ant utility if you have any ...
vishal Yadav
vishalnhy
Offline Send Email
Mar 4, 2003
9:18 am
9875
Does anyone have any experience with JavaServer Faces? What kinds of things can you do with them? What kinds of components can be created? Does anyone know...
Dennis Trusty
dentrusty
Offline Send Email
Mar 4, 2003
1:32 pm
9876
Go to: Start ==>Seetings ==>ControlPanel Select the JavaPlugIn icon Select the Browser Tab deselect Microsoft Internet Explorer Restart InternetExplorer...
Charles Bell
quantumhyper...
Offline Send Email
Mar 4, 2003
2:04 pm
9877
Could anyone tell me what is wrong..? I'm still a beginner, so any comments are welcomed. codes in Figure.java : package pbangun; public abstract class Figure...
robin
mbin034
Offline Send Email
Mar 4, 2003
2:10 pm
9878
Your connection should be non null and established after: conn = (HttpURLConnection) url.openConnection();...
Charles Bell
quantumhyper...
Offline Send Email
Mar 4, 2003
2:14 pm
9879
try implements instead of extends. ... From: "robin" <muarars@...> To: <java_official@yahoogroups.com> Sent: Tuesday, March 04, 2003 8:12 AM ...
Bryan LaPlante
cflaplante
Offline Send Email
Mar 4, 2003
2:22 pm
9880
... ************************* That didn't work. I also downloaded/installed the MS virtual manager and turned off the Sun java. The best I could get was a...
Gene Gerard
vfoxdel
Offline Send Email
Mar 4, 2003
6:20 pm
9881
You've got to make the display() methods public ********* package pbangun; public abstract class Figure { int color; int center_position; public abstract void...
Charles Bell
quantumhyper...
Offline Send Email
Mar 4, 2003
6:22 pm
9882
I had this problem on win2000 with IE 5.5 I had to change the name of the directory for the older JRE's to get IE to use the 1.4 version. Default Install...
heybret02
Offline
Mar 4, 2003
6:33 pm
Messages 9849 - 9882 of 32213   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help