User delfuego - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:11:08Z http://stackoverflow.com/feeds/user/16414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916467/embed-hibernate-hbm-xml-mappings-in-jar/1916581#1916581 3 Answer by delfuego for Embed hibernate hbm.xml mappings in jar delfuego 2009-12-16T18:15:12Z 2009-12-16T18:15:12Z <p>Just to clarify, as well: you're specifically talking about Spring and Hibernate together, since the configuration you're showing is Spring's configuration of Hibernate. Spring's <a href="http://www.jarvana.com/jarvana/view/org/springframework/spring/1.2.9/spring-1.2.9-javadoc.jar!/org/springframework/orm/hibernate3/LocalSessionFactoryBean.html" rel="nofollow"><code>LocalSessionFactoryBean</code></a> accepts a multitude of different ways to set the location of your Hibernate mapping files; you only show using the <a href="http://www.jarvana.com/jarvana/view/org/springframework/spring/1.2.9/spring-1.2.9-javadoc.jar!/org/springframework/orm/hibernate3/LocalSessionFactoryBean.html#setMappingResources%28java.lang.String%5B%5D%29" rel="nofollow"><code>mappingResources</code></a> parameter, but there's also <a href="http://www.jarvana.com/jarvana/view/org/springframework/spring/1.2.9/spring-1.2.9-javadoc.jar!/org/springframework/orm/hibernate3/LocalSessionFactoryBean.html#setMappingLocations%28org.springframework.core.io.Resource%5B%5D%29" rel="nofollow"><code>mappingLocations</code></a>, <a href="http://www.jarvana.com/jarvana/view/org/springframework/spring/1.2.9/spring-1.2.9-javadoc.jar!/org/springframework/orm/hibernate3/LocalSessionFactoryBean.html#setMappingJarLocations%28org.springframework.core.io.Resource%5B%5D%29" rel="nofollow"><code>mappingJarLocations</code></a>, and <a href="http://www.jarvana.com/jarvana/view/org/springframework/spring/1.2.9/spring-1.2.9-javadoc.jar!/org/springframework/orm/hibernate3/LocalSessionFactoryBean.html#setMappingDirectoryLocations%28org.springframework.core.io.Resource%5B%5D%29" rel="nofollow"><code>mappingDirectoryLocations</code></a>.</p> <p>I'd think that for your example, you might want to use <a href="http://www.jarvana.com/jarvana/view/org/springframework/spring/1.2.9/spring-1.2.9-javadoc.jar!/org/springframework/orm/hibernate3/LocalSessionFactoryBean.html#setMappingDirectoryLocations%28org.springframework.core.io.Resource%5B%5D%29" rel="nofollow"><code>mappingDirectoryLocations</code></a> and just point it to a specific directory within your JAR, such as:</p> <pre><code>&lt;property name="mappingDirectoryLocations"&gt; &lt;list&gt; &lt;value&gt; com/…/domain/ &lt;/value&gt; &lt;/list&gt; &lt;/property&gt; </code></pre> http://stackoverflow.com/questions/1908683/storing-uuid-in-hsqldb-database/1908793#1908793 1 Answer by delfuego for Storing UUID in HSQLDB database delfuego 2009-12-15T16:52:22Z 2009-12-16T18:04:57Z <p>You have a few options:</p> <ul> <li>Store it as a VARCHAR(36), as you already have suggested. This will take 36 bytes (288 bits) of storage per UUID, not counting overhead. </li> <li>Store each UUID in two BIGINT columns, one for the least-significant bits and one for the most-significant bits; use <a href="http://java.sun.com/javase/6/docs/api/java/util/UUID.html#getLeastSignificantBits%28%29" rel="nofollow">UUID#getLeastSignificantBits()</a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/UUID.html#getMostSignificantBits%28%29" rel="nofollow">UUID#getMostSignificantBits()</a> to grab each part and store it appropriately. This will take 128 bits of storage per UUID, not counting any overhead.</li> <li>Store each UUID as an OBJECT; this stores it as the binary serialized version of the UUID class. I have no idea how much space this takes up; I'd have to run a test to see what the default serialized form of a Java UUID is.</li> </ul> <p>The upsides and downsides of each approach is based on how you're passing the UUIDs around your app -- if you're passing them around as their string-equivalents, then the downside of requiring double the storage capacity for the VARCHAR(36) approach is probably outweighed by not having to convert them each time you do a DB query or update. If you're passing them around as native UUIDs, then the BIGINT method probably is pretty low-overhead.</p> <p>Oh, and it's nice that you're looking to consider speed and storage space issues, but as many better than me have said, it's also good that you recognize that these might not be critically important given the amount of data your app will be storing and maintaining. As always, micro-optimization for the sake of performance is only important if not doing so leads to unacceptable cost or performance. Otherwise, these two issues -- the storage space of the UUIDs, and the time it takes to maintain and query them in the DB -- are reasonably low-importance given the cheap cost of storage and the ability of DB indices to make your life much easier. :)</p> http://stackoverflow.com/questions/1480127/is-there-a-way-to-access-the-bing-maps-geocoding-api-via-rest 1 Is there a way to access the Bing Maps geocoding API via REST? delfuego 2009-09-26T00:57:27Z 2009-12-16T13:20:16Z <p>Is there a way to access the Bing Maps API via REST to obtain geocoding information from an address? This is something that's trivial to do with Google and Yahoo; what I'm looking for is functionality like this, from Yahoo:</p> <p><a href="http://developer.yahoo.com/maps/rest/V1/geocode.html" rel="nofollow">http://developer.yahoo.com/maps/rest/V1/geocode.html</a></p> <p>(Specifically, see the sample request URL on that page, but also imagine that URL with a simple "location" parameter rather than separate street, city, state, and zip parameters.)</p> <p>I've found examples of using other parts of the Bing API via REST, but nothing that accesses the Maps API, or specifically, the geocoding functionality.</p> http://stackoverflow.com/questions/1911889/how-to-call-stored-procedure-to-read-return-value-and-out-parameter-both-in-sprin/1911972#1911972 2 Answer by delfuego for How to call stored procedure to read return value and out parameter both in Spring? delfuego 2009-12-16T02:57:34Z 2009-12-16T02:57:34Z <p>If you are using Spring 2.5X, I believe that <a href="http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/jdbc/core/simple/SimpleJdbcCall.html#withReturnValue%28%29" rel="nofollow"><code>SimpleJdbcCall#withReturnValue()</code></a> specifies that you want the return value to be included in the return results. I'm not sure what the entry will be keyed to in the Map, but I'd try that out.</p> http://stackoverflow.com/questions/1911868/what-is-wrong-with-this-join-query/1911895#1911895 3 Answer by delfuego for What is wrong with this JOIN query? delfuego 2009-12-16T02:30:46Z 2009-12-16T02:30:46Z <p>I'd assume that your problem is that there are a bunch of tenants with alt_email = NULL, and a bunch of reports with alt_email = NULL, and your OR clause will match each report with alt_email = NULL with <em>all</em> the tenants records with alt_email = NULL.</p> <p>You should probably catch the NULL case:</p> <pre><code>WHERE reports.id = '{$id}' AND ( (tenants.email IS NOT NULL AND tenants.email = reports.email) OR (tenants.alt_email IS NOT NULL AND tenants.alt_email = reports.alt_email) ) </code></pre> http://stackoverflow.com/questions/1908915/java-generic-class-and-wildcards/1909006#1909006 1 Answer by delfuego for Java generic class and wildcards delfuego 2009-12-15T17:22:01Z 2009-12-15T17:27:20Z <p>I might be missing something, but why not do the following in your MyMotherClass class, using the explicit class <code>AbstractItem</code> rather than the generic class <code>C</code>?</p> <pre><code>public abstract class MyMotherClass&lt;C extends AbstractItem&gt; { private AbstractItem item; public void setItem(AbstractItem item) { this.item = item; } public AbstractItem getItem() { return this.item; } } </code></pre> <p>This change alone would allow you to use your wildcard approach:</p> <pre><code>Map&lt;String, MyMotherClass&lt;?&gt;&gt; myCollection = new HashMap&lt;String, MyMotherClass&lt;?&gt;&gt;(); Map&lt;String, AbstractItem&gt; myItems = new HashMap&lt;String, AbstractItem&gt;(); // fill the 2 collections MyMotherClass&lt;?&gt; child = myCollection.get("key"); child.setItem(myItems.get("key2")); </code></pre> <p>with no errors.</p> <p>Of course, in <code>MyChildClass</code>, you can then override <code>MyMotherClass#getItem()</code> as follows:</p> <pre><code>@Override public ConcreteItem getItem() { return (ConcreteItem) super.getItem(); } </code></pre> <p>to make sure that the right class is being returned; this same approach for all subclasses of <code>MyMotherClass</code> would allow you to return the right types.</p> http://stackoverflow.com/questions/1901934/web-site-certificate-issue/1901998#1901998 2 Answer by delfuego for web site certificate issue delfuego 2009-12-14T16:40:42Z 2009-12-14T16:40:42Z <p>SSL certs are bound to a given domain name (or domain name pattern, in the case of wildcard SSL certs); you can move them from machine to machine trivially.</p> <p>In the case of your round-robin server farm, the same SSL cert can be installed on both IIS servers -- in the eyes of IIS on each server, it is responding for the given domain, and the SSL cert will validly reflect that domain.</p> http://stackoverflow.com/questions/1890892/iphone-app-harnessing-public-xml-feeds/1890918#1890918 0 Answer by delfuego for iPhone App Harnessing Public XML Feeds delfuego 2009-12-11T21:15:25Z 2009-12-11T21:15:25Z <p>Legal, probably -- as nstehr said, there are plenty of existing usages that back that up. (And that feed you point to is a US Government work product, so by definition it's perfectly valid to use.) Of course, the wrinkle of the App Store is that if Apple decides your particular usage is verboten or otherwise unkosher, you've really got no recourse... so you have to consider that.</p> http://stackoverflow.com/questions/1890681/calling-displaytag-returns-nullpointerexception/1890827#1890827 0 Answer by delfuego for Calling DisplayTag returns NullPointerException delfuego 2009-12-11T20:58:54Z 2009-12-11T20:58:54Z <p>My suspicion is that it's not a DisplayTag issue, it's an issue of the underlying data you're trying to display with DisplayTag. Did you check to make sure that the object referenced by <code>pageScope</code> really has a non-null <code>userKeyList</code> property, and that the <code>userKeyList</code> property really has a non-null <code>licenseKeyList</code> property, for example?</p> <p>(Just reading those names, I'm suspicious that perhaps your restoration didn't restore a license key that you are expecting...)</p> http://stackoverflow.com/questions/1890459/hibernate-java-application-must-be-restarted-for-data-to-be-realoaded/1890796#1890796 0 Answer by delfuego for Hibernate : Java Application must be restarted for data to be realoaded. delfuego 2009-12-11T20:51:27Z 2009-12-11T20:51:27Z <p>I'm not sure how you've configured your Hibernate sessions, but some configurations require that you flush your session in addition to closing it (e.g., sessions that are able to be disconnected from the underlying JDBC connection to the DB). So in a comment reply, you said that you end your work with <code>session.close();</code> -- try doing:</p> <pre><code>session.flush(); session.close(); </code></pre> <p>instead and see if this fixes what you're seeing.</p> <p>Otherwise, I'd look to verify that you're really not using a second-level cache... explicitly disable it in your Hibernate configuration, setting <code>hibernate.cache.provider_class</code> to <code>org.hibernate.cache.NoCacheProvider</code>.</p> http://stackoverflow.com/questions/1888503/secure-connection-between-client-and-server/1888609#1888609 1 Answer by delfuego for Secure connection between client and server delfuego 2009-12-11T14:56:51Z 2009-12-11T14:56:51Z <p>First question, just to get it out there: if you're concerned enough about nefarious client-impersonator accesses, why not carry out the entire conversation over HTTPS? Is the minimal performance hit significant enough for this application that it's not worth the added layer of security?</p> <p>Second, how can someone replay the login request? If I'm not mistaken, that's taking place over HTTPS; if the connection is set up correctly, HTTPS prevents replay attacks using one-time nonces (see <a href="http://serverfault.com/questions/32473/does-https-include-protection-from-a-replay-attack">here</a>).</p> http://stackoverflow.com/questions/1887438/how-to-switch-from-mysql-to-amazon-rds-with-minimal-application-impact/1887525#1887525 1 Answer by delfuego for How to 'switch' from MySQL to Amazon RDS with minimal application impact? delfuego 2009-12-11T11:42:24Z 2009-12-11T11:51:36Z <p>Amazon RDS is pure MySQL, accessible by your app the same way as any other MySQL database; the web services interface to RDS is purely for creation, deletion, and modification of the DB <em>instances</em>, not the DB data. From their <a href="http://aws.amazon.com/rds/faqs/#7" rel="nofollow">FAQ</a>:</p> <blockquote> <p>Q: How do I access my running DB Instance?</p> <p>Once your DB Instance is available, you can retrieve its endpoint via the DescribeDBInstance API. Using this endpoint you can construct the connection string required to connect directly with your DB Instance using your favorite database tool or programming language. In order to allow network requests to your running DB Instance, you will need to authorize access. For a detailed explanation of how to construct your connection string and get started, please refer to our Getting Started Guide.</p> </blockquote> <p><a href="http://docs.amazonwebservices.com/AmazonRDS/latest/GettingStartedGuide/index.html?CommonCommands.html#CommonCommands.ConnectingToAnInstance" rel="nofollow">This</a> is the part of the Getting Started Guide you need -- it explains how to get the hostname of your new instance so you can connect to it, authorize the instance for access from the client, and then connect using the MySQL command-line client (as an example):</p> <pre><code>$ rds-describe-db-instances --headers $ rds-authorize-db-security-group-ingress default --cidr-ip 192.0.2.0/30 --headers $ mysql -h myinstance.crwjauxgijdf.us-east-1.rds.amazonaws.com -P 3306 -u mymasteruser -p </code></pre> http://stackoverflow.com/questions/1834971/removing-a-row-from-an-excel-sheet-with-apache-poi-hssf/1835041#1835041 0 Answer by delfuego for Removing a row from an Excel sheet with Apache POI HSSF delfuego 2009-12-02T18:56:30Z 2009-12-02T18:56:30Z <p>I'm trying to reach back into the depths of my brain for my POI-related experience from a year or two ago, but my first question would be: why do the rows need to be removed before parsing? Why don't you just catch the null result from the <code>sheet.getRow(rowNum)</code> call and move on?</p> http://stackoverflow.com/questions/1822136/confusion-with-equal-method/1822172#1822172 2 Answer by delfuego for Confusion with equal method delfuego 2009-11-30T20:20:08Z 2009-11-30T20:20:08Z <p>If what you are looking to do is compare the String representations of the two StringBuffer objects, then what you want to do is:</p> <pre><code>StringBuffer sb1 = new StringBuffer("434"); StringBuffer sb2 = new StringBuffer("434"); if (sb1.toString().equals(sb2.toString())) { // whatever you want to do if they're equal } else { // whatever you want to do if they're not } </code></pre> <p>Otherwise, you're comparing for equality of the two StringBuffer <em>objects</em>, not their contents -- in other words, executing Object#equals(), not (the non-existent) StringBuffer#equals().</p> http://stackoverflow.com/questions/1799281/how-can-the-state-of-the-browser-cause-the-server-to-send-a-404-error/1799308#1799308 0 Answer by delfuego for How can the state of the browser cause the server to send a 404 error? delfuego 2009-11-25T19:14:23Z 2009-11-25T19:14:23Z <p>It entirely depends on what logic your web application server is using to process page requests.</p> <p>Say, for example, that your web app uses a session cookie sent by the client to determine the proper destination of their requests -- when a client logs into the web app, they receive a cookie that then dictates how your web app processes their requests. If that session cookie gets out-of-date with the state of the web app for any reason (the web app gets restarted and loses session state, or any of a number of other causes), then the client might be sent to pages that don't exist anymore.</p> <p>That's just one example... but in the end, the fact that a reboot of the client "fixed" the problem makes it seem like the issue was something cached by the client, and thus reset by the restart.</p> http://stackoverflow.com/questions/1799182/java-appending-to-excel-file-with-fileoutputstream/1799206#1799206 0 Answer by delfuego for Java - appending to Excel file with FileOutputStream delfuego 2009-11-25T18:58:53Z 2009-11-25T19:07:53Z <p>According to <a href="http://java.sun.com/javase/6/docs/api/java/io/FileOutputStream.html#FileOutputStream%28java.lang.String%29" rel="nofollow">the Javadocs for the String-accepting constructor of FileOutputStream</a>, rover12, if the file doesn't already exist then it's created. Are you not seeing this behavior?</p> <p>(And as others have mentioned, be sure to use <a href="http://java.sun.com/javase/6/docs/api/java/io/FileOutputStream.html#FileOutputStream%28java.lang.String,%20boolean%29" rel="nofollow">the constructor that takes the second boolean argument</a> so you can specify that you want to append the file if it already exists...)</p> http://stackoverflow.com/questions/1786795/how-to-model-parent-child-entities-via-rest-and-jax-rs/1799238#1799238 0 Answer by delfuego for How to model parent-child entities via REST and JAX-RS delfuego 2009-11-25T19:03:27Z 2009-11-25T19:03:27Z <p>Taylor, Jersey's implementation of JAX-RS certainly does emit the List properties of objects that it converts into XML or JSON. So in an app I just finished, the UserStore object has a property, users, that's a List:</p> <pre><code>List&lt;User&gt; users = new ArrayList&lt;User&gt;(); </code></pre> <p>When I use Jersey to emit the XML or JSON version of the UserStore, I get an array of users for that property:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt; &lt;users&gt; &lt;user&gt; &lt;firstName&gt;John&lt;/firstName&gt; &lt;id&gt;a29a377f-4329-4ec8-9459-b5b1c2efc38a&lt;/id&gt; &lt;lastName&gt;Doe&lt;/lastName&gt; &lt;/user&gt; &lt;user&gt; &lt;firstName&gt;Jane&lt;/firstName&gt; &lt;id&gt;bb4dad28-1263-440a-afc5-062a8566ef90&lt;/id&gt; &lt;lastName&gt;Roe&lt;/lastName&gt; &lt;/user&gt; &lt;/users&gt; </code></pre> <p>and</p> <pre><code>{ "user": [{ "firstName": "John", "id": "a29a377f-4329-4ec8-9459-b5b1c2efc38a", "lastName": "Doe", }, { "firstName": "Jane", "id": "bb4dad28-1263-440a-afc5-062a8566ef90", "lastName": "Roe", }] } </code></pre> <p>Perhaps the issue you're running into is merely related to your property being a Collection rather than a List...</p> http://stackoverflow.com/questions/1795278/creating-object-to-get-expected-json/1797084#1797084 2 Answer by delfuego for Creating object to get expected Json delfuego 2009-11-25T13:59:59Z 2009-11-25T13:59:59Z <p>Just to throw it out there, there are a few JSON Java libraries that are pretty nice and simple. The two I have most of my experience with are:</p> <ul> <li><a href="http://json-lib.sourceforge.net/" rel="nofollow">JSON-Lib</a></li> <li><a href="http://code.google.com/p/json-simple/" rel="nofollow">json-simple</a></li> </ul> <p>The benefit to both (and most other JSON libraries for Java) is that they handle marshalling most native Java object types to sane JSON equivalents -- in other words, they make it easy to add the contents of a variable to a JSON structure, whether the variable's an integer, long, string, boolean, whatever. So with JSON-Lib, you could build your example as such:</p> <pre><code>int id = 123; String questionText = "some text"; int[] nodes = new int[] { 123, 111 }; JSONObject question = new JSONObject(); question.put(":id", id); question.put(":question text", questionText); question.put(":nodes", nodes); JSONObject json = new JSONObject(); json.put(":question", question); String jsonString = json.toString(); </code></pre> http://stackoverflow.com/questions/1794555/need-a-really-simple-wife-example/1794577#1794577 0 Answer by delfuego for need a really simple WIFE example delfuego 2009-11-25T04:15:36Z 2009-11-25T04:15:36Z <p>I'm confused -- the documentation contains <a href="http://wife.sourceforge.net/index.php?page=parser" rel="nofollow">this page</a>, which includes what you (seem) to be looking for, an example of a parse call followed by examples of how you then display the components of the parsed message.</p> <p>The only part that's not included is how to read the SWIFT message into the variable, and I'd imagine that that depends entirely on how the message is getting to you -- in a file, over a wire, etc. all would need different methods of reading the message.</p> http://stackoverflow.com/questions/1784570/java-thread-wont-pause-on-i-o-operation/1784732#1784732 1 Answer by delfuego for Java Thread won't pause on I/O operation delfuego 2009-11-23T17:32:41Z 2009-11-23T21:03:11Z <p>It seems that you're using an InputStream, and according to <a href="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html#read%28byte%5B%5D,%20int,%20int%29" rel="nofollow">the JDK docs for InputStream.read()</a>, the read blocks exactly as you've described -- until the data is received, an end-of-file is reached, or an exception is thrown.</p> <p>So for me, the question is: why does the TCP version of your code allow the block to get interrupted? That doesn't seem to make any sense. Perhaps your TCP code breaks the reads up into discrete, short-enough bursts that the thread has a chance to jump in between separate calls to read()?</p> <p>Looking further, I see that the difference is that the TCP version of your code receives data via the InputStream that's provided by Socket, whereas the UDP version of your code receives data directly from the DatagramSocket's own receive() method. So I'd posit that this is just a fundamental difference between the functionality offered by the two (InputStream.read and DatagramSocket.receive). Have you thought about using <a href="http://java.sun.com/javase/6/docs/api/java/net/DatagramSocket.html#setSoTimeout%28int%29" rel="nofollow">DatagramPacket.setSoTimeout</a> to set a timeout on the socket's receive block, and then catching the SocketTimeoutException when it's thrown by the call to receive() that times out? You should be able to implement this to achieve what you want.</p> <p><strong>UPDATE</strong>: looking further still, it appears that <a href="http://www.techq.com/source/java/JDK/1.6.0/java/net/DatagramSocket.java" rel="nofollow">the DatagramSocket.receive method is synchronized</a>. So the way to explain the behavior you're seeing is that you're starting two threads that are attempting to use the same DatagramSocket instance -- if two threads are attempting to execute receive() on the same DatagramSocket instance, one will block the instance until it's done, and the other will be blocked. (There's <a href="http://forums.sun.com/thread.jspa?messageID=10778178#10778178" rel="nofollow">a post on the Sun forums that describes this</a>, as well.) Might this be what's happening -- you're reusing the same DatagramSocket for both threads?</p> http://stackoverflow.com/questions/1784818/accept-all-incoming-email-messages-on-server/1784904#1784904 0 Answer by delfuego for Accept All Incoming Email Messages on Server delfuego 2009-11-23T18:03:05Z 2009-11-23T19:34:11Z <p>SMTP is a message transfer agent (MTA), responsible only for handling the transfer of mail from one point (the client, perhaps) to another (the mailbox server, such as a POP or IMAP server). SMTP servers aren't the right tool for ultimately handling mail coming INTO a domain -- they only handle transferring the mail coming into a domain to another app, such as the aforementioned POP or IMAP server, which then know how to sort and store that mail.</p> <p>In short, the Default SMTP Virtual Server isn't the tool you're looking for for your project.</p> <p>From <a href="http://stackoverflow.com/questions/1353439/development-smtp-server-for-windows">this other StackOverflow question</a>, it looks like there are a few SMTP servers which are intended for development use but which might serve the purpose you seek -- they accept incoming messages and then write them to files (in some manner, and with some tweaking).</p> http://stackoverflow.com/questions/1784685/a-basic-dhcp-client/1784787#1784787 4 Answer by delfuego for A basic DHCP client delfuego 2009-11-23T17:45:22Z 2009-11-23T17:45:22Z <p>You shouldn't have trouble "deciding" whether to use TCP or UDP, you should <a href="http://tools.ietf.org/html/rfc2131" rel="nofollow">rely on the actual DHCP spec</a> to determine what protocol is used. In fact, reliance on that spec will be more or less critical to implementing a DHCP client that does what it's supposed to do... since "what it's supposed to do" is defined in the spec.</p> http://stackoverflow.com/questions/1783710/sending-an-email-using-commons-email-to-gmail/1784158#1784158 2 Answer by delfuego for Sending an Email Using Commons-Email to Gmail delfuego 2009-11-23T16:10:05Z 2009-11-23T16:19:59Z <p>Don't you need to <a href="http://commons.apache.org/email/apidocs/org/apache/commons/mail/Email.html#setTLS%28boolean%29" rel="nofollow">tell Commons Email that you're sending a TLS email</a>:</p> <pre><code>email.setTLS(true); </code></pre> <p>prior to your call to email.send()?</p> <p>I'm not sure if this will fix what ails you, since I'm not sure whether you're experiencing a problem connecting to smtp.gmail.com:465 or successfully sending to it (the error message/exception is ambiguous as you've presented it), but it's definitely something that's missing so far as I can tell.</p> http://stackoverflow.com/questions/1783836/java-value-object/1783959#1783959 1 Answer by delfuego for java value object delfuego 2009-11-23T15:42:06Z 2009-11-23T15:42:06Z <p>Dennis, if the code as you posted it is the exact code you're running, then this makes no sense -- the "User u = new User();" call would return you a new User object without any issues, since your constructor is empty.</p> <p>To demonstrate that to yourself, change your constructor to:</p> <pre><code>public User() { System.out.println("I'm inside the User constructor!"); } </code></pre> <p>and call your some_function() function again. You should see that line printed out to your console.</p> <p>Given what you're reporting and the code you're showing, I suspect that the class that contains some_function() isn't "seeing" the User class -- you're importing some other User class rather than the one you created. Are the two classes -- the User class and the class which contains some_function() -- in the same package? If not, what import statement at the top of the some_function()-containing class is handling the import of your User class?</p> http://stackoverflow.com/questions/1766183/setting-http-headers-form-a-firefox-extension/1766452#1766452 1 Answer by delfuego for Setting HTTP Headers form a Firefox Extension delfuego 2009-11-19T20:54:12Z 2009-11-19T20:54:12Z <p>There are a few existing Firefox extensions that modify HTTP headers en route to the server, and at least one of them, <a href="http://modifyheaders.mozdev.org/" rel="nofollow">modifyheaders</a>, has <a href="http://www.mozdev.org/source/browse/modifyheaders/" rel="nofollow">open source code</a>.</p> <p>Or, of course, there's the relevant page in the Mozilla Developer Center, <a href="https://developer.mozilla.org/en/Setting%5FHTTP%5Frequest%5Fheaders" rel="nofollow">Setting HTTP request headers</a>.</p> http://stackoverflow.com/questions/1765507/packaging-a-mac-app-for-distribution/1765657#1765657 4 Answer by delfuego for Packaging a Mac app for distribution delfuego 2009-11-19T18:48:29Z 2009-11-19T18:48:29Z <p>Regarding the disk image (DMG) approach, typically this is implemented in a way that makes obvious to the user that they need to drag the app over to their /Applications folder. (Sometimes this is done with a pre-existing alias of the /Applications folder next to the app icon on the DMG, and then a background image that has an arrow between them or text instructions overlaid that explains what to do.) Too often, though, users just double-click the app and run it from the disk image, which gets confusing (what if they eject the disk image? what happens next time they try to run the app?)</p> <p>Alexander Limi, one of the Mozilla Firefox developers, has two great articles about getting your OS X app to detect when it's being run from the installer disk image, and then offering to copy itself to the /Applications folder.</p> <ul> <li><a href="http://limi.net/articles/improving-the-mac-installer-for-firefox/" rel="nofollow">http://limi.net/articles/improving-the-mac-installer-for-firefox/</a></li> <li><a href="http://limi.net/articles/firefox-mac-installation-experience-revisited/" rel="nofollow">http://limi.net/articles/firefox-mac-installation-experience-revisited/</a></li> </ul> <p>It's an approach that's now accepted enough to have generated at least one code class, <a href="http://www.mcubedsw.com/dev" rel="nofollow">M3InstallController</a>, to enable the behavior in your own app. The developer of another OS X app that takes this approach released <a href="http://github.com/potionfactory/LetsMove/" rel="nofollow">his own code example</a>, as well.</p> <p>So if you go the route of a disk image with an app that needs to be dragged into the /Applications folder, strongly consider detecting whether the user is running the app from the disk image, and offer to move it for them! Your users, and your support folks, will thank you. :)</p> http://stackoverflow.com/questions/1590102/using-spring-validation-on-request-headers/1765377#1765377 1 Answer by delfuego for using spring validation on request headers delfuego 2009-11-19T18:11:41Z 2009-11-19T18:11:41Z <p>I don't see how this would be possible, since the validation framework only operates on your domain objects, not on the HTTP request itself. Specifically, <a href="http://static.springsource.org/spring/docs/2.5.x/api/index.html?org/springframework/validation/Validator.html" rel="nofollow">the Validator interface</a> doesn't specify any methods that take the HttpServletRequest object, which is what you'd need to have access to in order to grab the headers and test them.</p> <p>Using the validation framework feels like the wrong solution to whatever problem you're trying to solve, especially since it's hard to know how there'd be a unique HTTP request header for a given form submission. Are you looking to test for an HTTP header that should <em>always</em> be present in requests to your app? Then you might want to consider implementing a <a href="http://static.springsource.org/spring/docs/2.5.x/api/index.html?org/springframework/web/servlet/HandlerInterceptor.html" rel="nofollow">HandlerInterceptor</a>, which will intercept and process all requests to pages that you've mapped in any HanderMappings. Are you looking to test for an HTTP header that should <em>always</em> be present in <em>any</em> page view of your app? Then you'd want to implement a <a href="http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/Filter.html" rel="nofollow">Filter</a>, which operates outside of the context of Spring MVC.</p> http://stackoverflow.com/questions/1757965/adding-form-elements-with-javascript-they-wont-submit/1758004#1758004 0 Answer by delfuego for adding form elements with javascript - they won't submit delfuego 2009-11-18T18:16:50Z 2009-11-18T18:16:50Z <p>Your HTML is munged, so it's hard to know exactly what's going on, but I'm fairly certain the answer is that you're adding the elements as straight HTML, not as DOM objects.</p> <p>In other words, instead of setting the innerHTML of newdiv, you have to append new objects to it, such as:</p> <pre><code>var newInput = document.createElement("input"); newInput.type="text"; newInput.name="inputName"; newdiv.appendChild(newInput); </code></pre> <p>(Code typed off the top of my head, so apologies for any typos...)</p> <p>And as another commenter noted, you have to also make sure that you append the new objects inside the form object in the DOM.</p> http://stackoverflow.com/questions/1757295/using-https-with-rest-in-java/1757633#1757633 2 Answer by delfuego for Using HTTPS with REST in Java delfuego 2009-11-18T17:19:39Z 2009-11-18T17:28:21Z <p>When you say "is there an easier way to... trust this cert", that's exactly what you're doing by adding the cert to your Java trust store. And this is very, very easy to do, and there's nothing you need to do within your client app to get that trust store recognized or utilized.</p> <p>On your client machine, find where your cacerts file is (that's your default Java trust store, and is, by default, located at &lt;java-home&gt;/lib/security/certs/cacerts.</p> <p>Then, type the following:</p> <pre><code>keytool -import -alias &lt;Name for the cert&gt; -file &lt;the .cer file&gt; -keystore &lt;path to cacerts&gt; </code></pre> <p>That will import the cert into your trust store, and after this, your client app will be able to connect to your Grizzly HTTPS server without issue.</p> <p>If you don't want to import the cert into your default trust store -- i.e., you just want it to be available to this one client app, but not to anything else you run on your JVM on that machine -- then you can create a new trust store just for your app. Instead of passing keytool the path to the existing, default cacerts file, pass keytool the path to your new trust store file:</p> <pre><code>keytool -import -alias &lt;Name for the cert&gt; -file &lt;the .cer file&gt; -keystore &lt;path to new trust store&gt; </code></pre> <p>You'll be asked to set and verify a new password for the trust store file. Then, when you start your client app, start it with the following parameters:</p> <pre><code>java -Djavax.net.ssl.trustStore=&lt;path to new trust store&gt; -Djavax.net.ssl.trustStorePassword=&lt;trust store password&gt; </code></pre> <p>Easy cheesy, really.</p> http://stackoverflow.com/questions/1757363/java-hashmap-performance-optimization-alternative/1757424#1757424 5 Answer by delfuego for Java HashMap performance optimization / alternative delfuego 2009-11-18T16:52:21Z 2009-11-18T16:52:21Z <p>My first idea is to make sure you're initializing your HashMap appropriately. From the <a href="http://java.sun.com/javase/6/docs/api/java/util/HashMap.html" rel="nofollow">JavaDocs for HashMap</a>:</p> <blockquote> <p>An instance of HashMap has two parameters that affect its performance: initial capacity and load factor. The capacity is the number of buckets in the hash table, and the initial capacity is simply the capacity at the time the hash table is created. The load factor is a measure of how full the hash table is allowed to get before its capacity is automatically increased. When the number of entries in the hash table exceeds the product of the load factor and the current capacity, the hash table is rehashed (that is, internal data structures are rebuilt) so that the hash table has approximately twice the number of buckets.</p> </blockquote> <p>So if you're starting off with a too-small HashMap, then every time it needs to resize, <strong>all</strong> the hashes are recomputed... which might be what you're feeling when you get to the 2-3 million insertion point.</p> http://stackoverflow.com/questions/1918810/is-it-possible-to-select-data-while-a-transaction-is-occuring Comment by delfuego on Is it possible to select data while a transaction is occuring? delfuego 2009-12-17T00:54:38Z 2009-12-17T00:54:38Z As always, the best answer possible: have you tried it? http://stackoverflow.com/questions/1911889/how-to-call-stored-procedure-to-read-return-value-and-out-parameter-both-in-sprin/1911972#1911972 Comment by delfuego on How to call stored procedure to read return value and out parameter both in Spring? delfuego 2009-12-16T18:07:44Z 2009-12-16T18:07:44Z Great! I learned something new, then, too. :) http://stackoverflow.com/questions/1908915/java-generic-class-and-wildcards/1909006#1909006 Comment by delfuego on Java generic class and wildcards delfuego 2009-12-16T18:07:11Z 2009-12-16T18:07:11Z So you don't have to -- you can always return a subclass as the (more generic) superclass from which it's derived. Overriding the subclass methods is only important if it's important that the subclass method declare that it's only returning a specific subclass of your abstract class. http://stackoverflow.com/questions/1908683/storing-uuid-in-hsqldb-database/1908793#1908793 Comment by delfuego on Storing UUID in HSQLDB database delfuego 2009-12-16T18:04:39Z 2009-12-16T18:04:39Z Alas, I apparently live in my own universe. :/ I'll edit it. http://stackoverflow.com/questions/1911767/hibernate-nonuniqueobjectexception Comment by delfuego on Hibernate NonUniqueObjectException delfuego 2009-12-16T02:18:51Z 2009-12-16T02:18:51Z I'm confused -- you say the ID is definitely null, but then say that you look up whether or not a matching object exists by trying to retrieve the object by a specific ID (35, in your example). Which is it -- null, or 35? http://stackoverflow.com/questions/1908915/java-generic-class-and-wildcards/1909096#1909096 Comment by delfuego on Java generic class and wildcards delfuego 2009-12-15T20:46:44Z 2009-12-15T20:46:44Z This doesn't really make sense -- he's not looking for a superclass of AbstractItem, he's still looking for a subclass of it in the relevant method signatures. http://stackoverflow.com/questions/1908915/java-generic-class-and-wildcards/1909001#1909001 Comment by delfuego on Java generic class and wildcards delfuego 2009-12-15T20:45:32Z 2009-12-15T20:45:32Z As Mike McNertney explains above -- and as you've discovered -- this actually doesn't solve your problem; it's actually the exact opposite, since the meaning of your wildcard here is that your class is a **super**class of AbstractItem, not a subclass. That doesn't make any sense. If I might be so bold, give my suggestion a try -- change <code>MyMotherClass#setItem()</code> to expect an AbstractItem, and <code>MyMotherClass#getItem()</code> to return an AbstractItem. Then change the respective methods of <code>MyChildClass</code> -- your subclasses of MyMotherClass -- to expect/return the correct class. http://stackoverflow.com/questions/1908915/java-generic-class-and-wildcards/1909207#1909207 Comment by delfuego on Java generic class and wildcards delfuego 2009-12-15T20:41:14Z 2009-12-15T20:41:14Z This is basically the concept that I implemented in my answer below... the subclasses of <code>MyMotherClass</code> all override the type expected by <code>setType</code> and returned by <code>getType</code>. http://stackoverflow.com/questions/1908736/how-can-i-get-a-count-of-the-instances-of-an-arbitrary-class Comment by delfuego on How can I get a count of the instances of an arbitrary class? delfuego 2009-12-15T16:59:48Z 2009-12-15T16:59:48Z Chad, given that you have a specific method you're looking to implement, I'm wondering if this is a homework assignment... http://stackoverflow.com/questions/1908736/how-can-i-get-a-count-of-the-instances-of-an-arbitrary-class/1908772#1908772 Comment by delfuego on How can I get a count of the instances of an arbitrary class? delfuego 2009-12-15T16:54:49Z 2009-12-15T16:54:49Z Nice, but I suspect the OP is more interested in being able to count the number of <i>any</i> class, not those which he is able to modify. But nice nonetheless. http://stackoverflow.com/questions/1896339/how-can-delete-one-row-from-mysql/1896356#1896356 Comment by delfuego on how can delete one row from MySQL?? delfuego 2009-12-15T15:02:51Z 2009-12-15T15:02:51Z Vrutberg, I hope you understand how amazing it is that you got an accepted-answer tick from Johanna... that's rarer than unicorn silk. http://stackoverflow.com/questions/1905113/why-i-can-not-show-my-mysql-information-in-my-gui-table/1905254#1905254 Comment by delfuego on Why I can not show my MySQL information in my GUI table? delfuego 2009-12-15T15:00:30Z 2009-12-15T15:00:30Z I wish I could upvote this answer 1,000 times, and 1,000 more times. http://stackoverflow.com/questions/1899166/why-does-it-throw-an-indexoutofboundsexception/1899216#1899216 Comment by delfuego on Why does it throw an IndexOutOfBoundsException? delfuego 2009-12-15T14:59:54Z 2009-12-15T14:59:54Z +1 from me -- I'm 100% with you on Johanna. http://stackoverflow.com/questions/1905113/why-i-can-not-show-my-mysql-information-in-my-gui-table Comment by delfuego on Why I can not show my MySQL information in my GUI table? delfuego 2009-12-15T14:58:50Z 2009-12-15T14:58:50Z Johanna, it's amazing how little you understand the community here. Frankly, I'm stunned that people continue to give you any help. http://stackoverflow.com/questions/1907861/why-does-it-throw-a-nullpointerexception Comment by delfuego on Why does it throw a NullPointerException? delfuego 2009-12-15T14:57:26Z 2009-12-15T14:57:26Z Johanna, have you read <i>any</i> of the comments people have made on your posts asking you to put a little effort into debugging your own (fairly obvious) issues before bringing them here? As others have said, the error here is <b>plainly</b> obvious in the stack trace error messages, as it has been many, many times in the past.