delfuego
|
Registered User
|
I've been programming since I was a kid, and now have managed to combine my medical interests and programming interests into a career of bioinformatics.
|
|
10h |
comment |
Using MySQL and database and having ClassNotFoundException You clearly don't have them in your classpath, Johanna, or you wouldn't be getting that Exception. |
|
10h |
comment |
How can we make a movable sentence? Yet another missive from the Johanna-bot... |
|
10h |
comment |
need some films for knowing how can I use MySQL?? This might be of help, Johanna: tinyurl.com/yj3l5sl |
|
18h |
comment |
Spring JdbcTemplate returns empty result when there should be a valid result Your code is missing the important parts -- such as what this.getComsumerQueryStatement() returns, and what is in your ResultSet. |
|
18h |
comment |
Setting values from a class to Spring context file I, too, have no idea what you're trying to achieve. The context file just gives you the ability to create a pool of (potentially) pre-created objects with defined properties... but nothing prevents you from further modifying the properties of those objects after retrieving them from the context. |
|
Dec 5 |
comment |
How do I pass console input to a running Java program instead of to jdb? Yes, this is the way -- but issue your second command in another terminal window/process, not the same one in which you ran your Java program. This lets you have one terminal process that has stdin/stdout devoted to your Java program, and another terminal process with stdin/stdout devoted to jdb. |
|
Dec 4 |
comment |
Is there a way to access the Bing Maps geocoding API via REST? Mike, that's not what I asked -- Google HAS a REST interface to its mapping data, a well-documented one at that. I'm looking for a Bing mapping data REST interface. |
|
Dec 2 |
comment |
Removing a row from an Excel sheet with Apache POI HSSF OK -- I'd just say, though, that you'd probably be well-served just to subclass your existing parser and let your subclass ignore empty rows rather than do something with them; that way, the files from the other app can still look nice and you don't have to die on those files. :) |
|
Dec 2 |
answered | Removing a row from an Excel sheet with Apache POI HSSF |
|
Nov 30 |
answered | Confusion with equal method |
|
Nov 25 |
comment |
What should I do for separating a string? Luvieere, I find it hard to imagine that someone of your ilk and rep here would neglect to even open the damn Javadocs before posting your question to SO -- that's the distinction we're trying to make. Look at Johanna's posting history, and convince me/us that she's actually making any effort other than clicking a bookmark to the SO "Post a new question" page, typing a semi-comprehensible string of jibberish into the box, and clicking submit... |
|
Nov 25 |
comment |
What should I do for separating a string? I'm fairly certain that at this point, we can put Johanna into the category of people using the SO community to do her learning for her. |
|
Nov 25 |
answered | How can the state of the browser cause the server to send a 404 error? |
|
Nov 25 |
revised |
Java - appending to Excel file with FileOutputStream added append constructor info |
|
Nov 25 |
answered | How to model parent-child entities via REST and JAX-RS |
|
Nov 25 |
accepted | Java - appending to Excel file with FileOutputStream |
|
Nov 25 |
answered | Java - appending to Excel file with FileOutputStream |
|
Nov 25 |
comment |
signed java applet restrictions? Any number of things, silverbandit91, which is why Jonathan was asking for clarification. |
|
Nov 25 |
revised |
What should I do for separating a string? edited tags |
|
Nov 25 |
comment |
What should I do for separating a string? Johanna, I don't mean to be rude (really!), but looking at your list of questions over the past month or so, I'm not entirely sure you spend any time looking at Javadocs or even basic Java references. I assure you that the best way to learn Java (or any language) by far is to read the documentation and learn by doing. |
|
Nov 25 |
comment |
How to include advertising in an application? Why is a program that periodically grabs new ads from an internet-based service "spyware"? What exactly is it spying on? The common understanding of the term "spyware" is that it's somehow spying on the activity of the user or computer, not that it connects to the internet. |
|
Nov 25 |
answered | Creating object to get expected Json |
|
Nov 25 |
answered | need a really simple WIFE example |
|
Nov 25 |
comment |
how to implement a search feature in java addiosamigo, the entire "is this homework" issue was dealt with in another one of your questions yesterday... so it's a little insulting to this community to act as if you didn't get it. |
|
Nov 24 |
comment |
Accept All Incoming Email Messages on Server Once again, the Default SMTP Virtual Server isn't the tool you're looking for -- it does not do what you want it to. You need another piece of software, one that handles inbound mail and saves it to the files that you intend to process. If you'll look at the last paragraph of my post, you'll see a link to another Stack Overflow post that offered up a few options. |
|
Nov 24 |
comment |
Hibernate query a foreign key field with ID I have to ask: why does Employee have an ID field for the address? Can an employee not have more than one address? Wouldn't it make more sense for the Address object have an ID field for the employee? In the end, what's more likely -- an employee having more than one address, or an address having more than one employee? If it's the former, than you have your foreign-key relationship reversed... |
|
Nov 24 |
comment |
If I search for my companies domain on google, it returns a different domain. It might be our fault. help This isn't really programming-related; it might belong on serverfault.com, but I don't even think it belongs there. |
|
Nov 23 |
comment |
Java Thread won’t pause on I/O operation Remember that the behavior he's describing isn't happening on an InputStream, it's happening on a DatagramSocket -- there's no InputStream involved in the problem behavior, only in the functioning behavior (the TCP version of his code). |
|
Nov 23 |
revised |
Java Thread won’t pause on I/O operation added info about synchronization on the DatagramSocket.receive() method; added 92 characters in body |
|
Nov 23 |
comment |
Java Thread won’t pause on I/O operation Ah, I think I misread then -- I thought that this was all happening in the same thread. |
|
Nov 23 |
revised |
How to find State location from iphone GPS? edited tags |
|
Nov 23 |
comment |
How to find State location from iphone GPS? Just a warning that MKReverseGeocoder uses Google to do the reverse geocoding -- and as others have posted here (stackoverflow.com/questions/918423/…), it's against the TOS of the Google Maps API to use the geocoding data unless you're also going to display a corresponding Google Map. (See section 10.12 of the Terms of Service: code.google.com/apis/maps/…) |
|
Nov 23 |
comment |
how do i enter a new contact to my address book?? Wow, and here: forums.sun.com/thread.jspa?threadID=5417276/… |
|
Nov 23 |
comment |
how do i enter a new contact to my address book?? Fascinating -- looks VERY very similar to this, over at DevShed: forums.devshed.com/java-help-9/… Homework, indeedio. |
|
Nov 23 |
revised |
Accept All Incoming Email Messages on Server added link to older SO post |
|
Nov 23 |
comment |
Accept All Incoming Email Messages on Server Jon, thanks for the info about A fallback -- I had totally forgotten about that behavior! |
|
Nov 23 |
comment |
Accept All Incoming Email Messages on Server From the OP's comment reply below, I think that the first test was done using this SMTP server to pass along the message, so that explains why it ended up remaining in the queue. But in the end, it still doesn't matter; the core problem is that the MS SMTP server is an MTA that doesn't have the ability to deliver mail to mailboxes or users, only to pass it from SMTP clients to SMTP servers (which might be more robust and able to deliver it to mailboxes or users via a POP, IMAP, Exchange, or other server with these capabilities). |
|
Nov 23 |
comment |
Accept All Incoming Email Messages on Server The error message is stored because you're talking about two different things, outgoing email and incoming email. The "bounced" message is one you're trying to send out of the SMTP server. When your server connects to the destination domain's server and tries to deliver the message, the destination server says "no such user"; your server then leaves the message in your outgoing queue so that an administrator can deal with it. Incoming mail is entirely different, and as I said, the server you've chosen -- a pure SMTP server -- does not handle incoming email. |
|
Nov 23 |
comment |
Accept All Incoming Email Messages on Server It stands to reason that there already is the appropriate MX record, since the SMTP server receives the delivery failure message from the OP's first trial (using an address at the abcdef.com domain as the From: address of an email and then sending it to a non-existent recipient) -- the only way the mailserver for the destination domain knows where to bounce the message back to is via the MX record. Either this, or the OP is using this SMTP server to try to deliver the message in the first trial, and the destination server rejects it in-band. |
|
Nov 23 |
answered | Accept All Incoming Email Messages on Server |
|
Nov 23 |
revised |
Sending an Email Using Java edited tags |
|
Nov 23 |
answered | A basic DHCP client |
|
Nov 23 |
comment |
Sending an Email Using Java What is your question? The only thing I can deduce is that you're wondering what the Zen Spamhaus RBL is and why it's blocking your email, in which case this isn't programming-related... and I'd posit that Google can answer that for you. :) |
|
Nov 23 |
revised |
Java Thread won’t pause on I/O operation added more info about the UDP side of things |
|
Nov 23 |
answered | Java Thread won’t pause on I/O operation |
|
Nov 23 |
revised |
open jquery wysiwyg in a jquery dialog edited tags |
|
Nov 23 |
comment |
How is PHP $_SESSION timed out? I'm still confused how what you're asking about session timeouts has anything to do with what you're asking about session save-handlers. |
|
Nov 23 |
comment |
Is there a way to access the Bing Maps geocoding API via REST? (No offense meant, really, but I'm not sure how I could have intuited that intention from your response...) |
|
Nov 23 |
accepted | java value object |
|
Nov 23 |
comment |
Java: Alternative to iterator.hasNext() if using for-each to loop over a collection It would be helpful to know why you're replacing an iterator-based loop with a for-each statement, especially since (as most have pointed out) the iterator-based approach you're replacing offers you the functionality you're requesting while the for-each statement doesn't. |
