@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4



Comments:

<0> it's simpler than getting it wrong
<0> look at Hashmap in the tutorial
<0> www.thejavatutorial.com
<0> use the really big index
<0> lyroy does that make sense to you
<1> yes of course I will read the HashMap
<2> xtravaga
<3> hello rob
<3> how are you?
<2> doing fine, watching the A1 GP series
<2> you?
<3> just lazying around:) watching Scrubs DVD season 4
<2> I've never seen scrubs
<2> is it a hospital serie?
<3> yes and it a comedy series
<3> watched all 4 seasons :), i have to wait for season 5, which i think will be aired next year for us



<3> iirc you watch galactica right?what season is it currently at?
<2> 2nd
<2> 2x15
<2> it rocks
<3> i couldnt find the DVD here, will look for it
<3> its hard to find unpopular DVDs here
<2> too bad
<2> you can get it from amazon
<2> http://www.amazon.com/gp/product/B00064AFBE/104-8334782-9819938?v=glance&n=130
<3> 2003?
<3> isnt that old?
<2> no
<2> thats season 1
<2> 1978 is the old stuff
<3> so season 1 aired in 2003 and season 2 in 2005?
<3> 2 year gap?
<2> no
<2> season 1 was split in two
<2> the pilot + some episodes in 2003
<2> the rest in 2004
<3> how long is each episiode?
<2> I don't know
<2> 50 minutes or so
<2> 42
<3> 42?same as lost
<2> maybe its a standard
<3> 18 for the commercials:) and crap
<3> so if we are into season 2, how come the CD is already out for season 2?same split thing?
<2> no
<2> I don't know
<3> http://www.amazon.com/gp/product/B000BNI90Y/ref=pd_bxgy_text_b/002-5940221-5470416?%5Fencoding=UTF8&v=glance&n=130
<2> amazon also sells season 2
<2> but they are still airing it
<3> Run Time: 440 minutes
<3> 10 episodes i think
<3> ok am ordering season 1
<3> usually takes 15 days for me
<4> how can i disable cookies in struts?
<2> disable?
<2> just don't use them?
<3> :)he
<2> maybe you don't want webapps to use cookies?
<2> then change the security manager
<2> of your application server
<4> i really need to disable them... i see they are created automatically, and i cannot open two different pages in the same time because they they open the same thing even if i open different databases
<3> is your web-app setting cookies?
<4> i think they are set automatically
<2> sounds unlikely
<4> i don't know the tag to disable this
<0> just stop reading them
<4> my session is identified with cookies, i want to be identified with jsessionid
<2> why do you care if a cookie is used?
<0> because he wants to open two different sessions on the same client
<2> and if he opens a new browser window?
<2> wouldn't that create a new session?
<0> yes
<0> but if he uses cookies it reads the same cookie
<2> ic
<2> then turn off cookies in the browser
<0> imo he needs to stop using cookies, not disable them
<2> or turn them off in his appserver



<3> Ziggy, file->new window will recreate the same instance of IE, have you tried a fresh IE windowby clicking on ie's icon or shortcut?
<0> he is the serverside coder
<0> FFS is everyone out to lunch today :(
<4> thank you for advice, i will try to find the tag on forums
<2> Ziggy_big, do you use tomcat?
<2> then you can turn off cookies in the context
<4> yes
<4> but when i'm deploing my project on a new tomcat server how I will turn off cookeis
<2> add meta-inf/context.html in your war
<2> oops context.xml
<4> ok, I will try! thanks!
<2> you can info about it on the apache tomcat website
<2> what project?
<5> some webscraping and pricecomparrison
<6> hello everyone
<6> how can I force a JButton to repaint on screen?
<2> call repaint()
<6> there is no repaint() method for a JButton
<2> there is
<7> Hi guys, I'm trying to write an applet that p***es a variable to some javascript. I've managed to get it working on my box and my laptop but for other people it seems not to work. I get "applet notinited". http://papernapkin.org/pastebin/app/view/222 any hints?
<2> maybe they lack the netscape cl***es
<7> I've got it online at http://ah.homelinux.org/tmp/java/new/new/getFonts.html (it should just display a popup saying "hello"). I'm pretty sure it's a java error (rather than the javascript used)
<2> ask them to check the console, the console should give the complete error
<2> ah
<7> Rob_uknow, I got their errors, which didn't mean alot to me - I included them in the pastebin
<2> you compiled your applet with a newer version of java
<2> and the end user doesn't have that version
<2> make sure to compile with the -target flag
<7> Oh I see, thanks! So the target flag lets older instilations of java run the code/
<2> yes
<7> many thanks :)
<2> it will create bytecode thats compatible with older versions
<2> like 1.2 or 1.3
<2> if you want to support 1.1 then its best to download the 1.1 sdk
<2> and add its cl***es.zip to the cl***path and compile with that
<7> Hmm, I'll look into that, thanks again
<2> then even microsoft jvm users can run your applet
<7> So the -target flag dosn't support 1.1?
<2> do you use the applet tag or object to load your applet?
<2> correct
<2> if you use the object tag you can specify the minimum java version
<7> Currently I'm using the applet tag, but I'll have to use the object tag later on to get valid xhtml
<2> the user gets a dialog to download that version
<7> ah great, that's good to know
<2> the sdk comes with a applet to object conversion tool
<2> htmlconvertor.exe in the jdk1.x\bin directory
<7> no doubt the linux build will have a binary too? :)
<2> for what?
<7> htmlconvertor
<2> probably
<7> Well, I'll play around with the target flag and read up on the object tag, thanks again Rob_uknow
<2> oke
<2> there is also -source
<2> to make your sourcecode compatible with older versions
<2> then you can spot methods that aren't available in older vm's
<7> hmm, javac -target 1.2 getFonts.java gives me the error, "javac: target release 1.2 conflicts with default source release 1.5"
<7> source 1.2 dosn't however, will the source flag do the same trick?
<8> /win9/win 9
<9> rob
<9> Dalkus: use both switches?
<2> yes, so use -source 1.2 and -target 1.2
<2> Clackwell
<7> I see, thanks :)
<10> hello, anyone using jbuilder ?
<2> not I
<2> jbuilder is dead
<10> why is it dead ?
<2> because borland put it up for sale
<10> just because you dont' use it doesn't mean it dead...LOL
<2> and doesn't develop it anymore
<10> what in the world are you talking about
<10> they just came out jbuilder2006 that integrated with eclipse


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #java
or
Go to some related logs:

VVVVVVVVVVVW
viking cdcether
#skype
uimeste-ma cu o afacere
#linux
#mirc
install gnuworld centos
write xml to textfile
synapsis poc
#chatzone



Home  |  disclaimer  |  contact  |  submit quotes