Search the web
Sign In
New User? Sign Up
novajug · Northern Virginia Java Users Group (NOVA
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 10387 - 10416 of 12258   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10387
Any Shale installation instructions or tutorials out there? __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has...
A. Shiraz
atharshiraz
Offline Send Email
Jan 2, 2007
1:26 pm
10388
All - I thought I'd share with you an obscure but interesting corner of Javaland. I was dealing with doubles, and wanted to have a primitive double value that...
Keith R. Bennett
krbennettmd
Offline Send Email
Jan 2, 2007
4:41 pm
10389
That's something that trips up a lot of people and isn't well documented. You should use Double.isNaN(d) instead of d == Double.NaN Luis...
Luis de la Rosa
louielouielouie
Offline Send Email
Jan 2, 2007
5:44 pm
10390
... (Unless somehow I'm confused) positive zero and negative zero compare as being equal, so equality tests are not bitwise comparisons. ... I think they meant...
Daniel Barclay
daniel@...
Send Email
Jan 3, 2007
7:57 pm
10391
A double has 1 sign bit, 11 exponent bits, and 52 significand bits mushed into a 64-bit word. These words are loaded into a register. It would seem that they...
Ed James
lej31428
Offline Send Email
Jan 3, 2007
9:00 pm
10392
Once you've allowed division by zero, all numbers are equal to zero, and therefore to one another, thus: Let 1/0 = x. Multiplying both sides by zero gives: ...
Lufkin, Brad (Mission...
lufkin_brad
Offline Send Email
Jan 3, 2007
9:17 pm
10393
Brad, Either there's a flaw in yer logic, or you just proved the existance of wormholes. Better grab an IP patent or wotever quickly. Ed James...
Ed James
lej31428
Offline Send Email
Jan 3, 2007
9:55 pm
10394
How is the serialVersionUID for an interface used? I understand that a serialVersionUID is calculated based not only on data, but methods as well. So a...
Keith R. Bennett
krbennettmd
Offline Send Email
Jan 3, 2007
10:55 pm
10395
found this on the net http://mathforum.org/library/drmath/view/55764.html "1/0 is said to be undefined because division is defined in terms of multiplication....
shivamantrik
Offline Send Email
Jan 3, 2007
11:24 pm
10396
Keith, I always pick and set the number manually, such as: public static final long serialVersionUID = 666; Thus, I can change code at will without throwing an...
Ed James
lej31428
Offline Send Email
Jan 4, 2007
12:08 am
10397
Shiva, Mathematically, you are correct. In the Java world, I think Java doesn't throw exceptions for divide by zero, but instead sets such a result to...
Ed James
lej31428
Offline Send Email
Jan 4, 2007
12:10 am
10398
you define your own serial version UID ( as opposed to computing at runtime) mainly for few reasons: 1. Defining a Serial version UID at compile time avoids...
Srinivas Chennamaraja
schennamaraja
Offline Send Email
Jan 4, 2007
3:27 am
10399
Ed - I think we have two orthogonal issues here: 1) Do we change the serialVersionUID whenever the source code changes, or just when we deem it necessary? 2)...
Keith R. Bennett
krbennettmd
Offline Send Email
Jan 4, 2007
4:42 pm
10400
Hi Folks, Let me introduce my self, am Kalam joined this group today.I am planning to write a SCJEA(Sun Certified Enterprise Architect Exam).I need your...
kalam4u
Offline Send Email
Jan 4, 2007
6:11 pm
10401
Keith, Caveat - I'm not even close to being an expert here. That said... ... The class object isn't sent, but the object type IS. The reader will create an...
Ed James
lej31428
Offline Send Email
Jan 4, 2007
7:07 pm
10402
... Do you mean at compilation time (by the compiler) or by (before) compilation time (by the programmer)? ... Are default serial version UIDs generated at...
Daniel Barclay
daniel@...
Send Email
Jan 4, 2007
10:02 pm
10403
Keith R. Bennett wrote: ... I'm pretty sure that methods don't matter (other than possibly the no-arguments constructor?). It's serialization/de-serialization...
Daniel Barclay
daniel@...
Send Email
Jan 4, 2007
10:04 pm
10404
... I meant the later (by the programmer). ... What I meant at runtime is the process of actually calculating the 64-bit hashcode computed from all of the...
schennamaraja
Offline Send Email
Jan 5, 2007
3:55 am
10405
pls anyone suggest me how to start learning webservices....
rajesh m
rajwait4u@...
Send Email
Jan 5, 2007
5:31 am
10406
Ok I found something on Shale http://www-128.ibm.com/developerworks/java/library/j-shale0228/ That is what I was looking for and could not find through google...
A. Shiraz
atharshiraz
Offline Send Email
Jan 5, 2007
1:10 pm
10407
Ok this is not what I used but I suspect this is better than most explanations out there, I am sure someone else can give you a better pointer : ...
A. Shiraz
atharshiraz
Offline Send Email
Jan 5, 2007
1:16 pm
10408
Ok I am using the regex package again and some insight into a more appropriate reg expression would be great. Here is some sample text : One mathematical model...
A. Shiraz
atharshiraz
Offline Send Email
Jan 5, 2007
6:00 pm
10409
Arild, ... Hey, don't shrink the text from its default size. ... Do you mean: - the span _tags_ themselves (leaving the content that is between each begin...
Daniel Barclay
daniel@...
Send Email
Jan 5, 2007
8:23 pm
10410
... From: Daniel Barclay <daniel@...> To: novajug@yahoogroups.com Sent: Friday, January 5, 2007 3:12:26 PM Subject: Re: [novajug] Regexp Question ... I...
A. Shiraz
atharshiraz
Offline Send Email
Jan 5, 2007
9:10 pm
10411
Hello Java users, I would like to compile my class files with debug information. I use ant and am not sure how to accomplish this. Appreciate any help in this...
Jaiprakash Sundararajan
spjai
Offline Send Email
Jan 6, 2007
1:37 am
10412
Jai, Take a look at the debug and debuglevel attributes for the javac Ant task: <http://ant.apache.org/manual/CoreTasks/javac.html> Hope that helps, - David...
David Schlosnagle
schlosna
Offline Send Email
Jan 6, 2007
2:22 am
10413
I need to be learning about web services myself, and have found this three-part tutorial[1] to be quite good so far. The tutorial seems like something that,...
Glen Mazza
GlenMazza
Offline Send Email
Jan 6, 2007
10:23 am
10414
I've been learning about how to configure JBoss so that it will authenticate with an LDAP server. Ultimately, I want JBoss Portal to authenticate via LDAP but...
David Medinets
medined
Offline Send Email
Jan 6, 2007
3:28 pm
10415
...note, however, there are some bugs within the tutorial that may trip you up a bit--I wrote down the problems/fixes I found here: ...
Glen Mazza
GlenMazza
Offline Send Email
Jan 6, 2007
9:24 pm
10416
The Roles should always be stored in LDAP. The portal will find the roles from the LDAP through its server security settings. I have done that for WebLogic...
Ramanand Singh
sramanand
Offline Send Email
Jan 7, 2007
7:21 am
Messages 10387 - 10416 of 12258   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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