User Phill Sacre - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:01:55Z http://stackoverflow.com/feeds/user/7094 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1900016/get-number-of-free-connections-in-connection-pool/1900031#1900031 2 Answer by Phill Sacre for Get number of free connections in connection pool Phill Sacre 2009-12-14T10:07:34Z 2009-12-14T10:07:34Z <p>From the javadocs, you should be able to read this from the <a href="http://commons.apache.org/dbcp/api-1.2.2/org/apache/commons/dbcp/BasicDataSource.html#getNumIdle%28%29" rel="nofollow">getNumIdle()</a> and <a href="http://commons.apache.org/dbcp/api-1.2.2/org/apache/commons/dbcp/BasicDataSource.html#getNumActive%28%29" rel="nofollow">getNumActive()</a> methods, if you can get an instance of the BasicDataSource.</p> http://stackoverflow.com/questions/126073/modular-web-apps 10 Modular web apps Phill Sacre 2008-09-24T08:46:05Z 2009-12-05T12:22:58Z <p>I've been looking into <a href="http://www.osgi.org/Main/HomePage" rel="nofollow">OSGi</a> recently and think it looks like a really good idea for modular Java apps.</p> <p>However, I was wondering how OSGi would work in a web application, where you don't just have code to worry about - also HTML, images, CSS, that sort of thing.</p> <p>At work we're building an application which has multiple 'tabs', each tab being one part of the app. I think this could really benefit from taking an OSGi approach - however I'm really not sure what would be the best way to handle all the usual web app resources.</p> <p>I'm not sure whether it makes any difference, but we're using JSF and <a href="http://www.icefaces.org" rel="nofollow">IceFaces</a> (which adds another layer of problems because you have navigation rules and you have to specify all faces config files in your web.xml... doh!)</p> <p>Edit: according to <a href="http://forums.sun.com/thread.jspa?messageID=3339002" rel="nofollow">this thread</a>, faces-config.xml files can be loaded up from JAR files - so it is actually possible to have multiple faces-config.xml files included without modifying web.xml, provided you split up into JAR files.</p> <p>Any suggestions would be greatly appreciated :-)</p> http://stackoverflow.com/questions/1625137/image-resize-quality-java 1 Image resize quality (Java) Phill Sacre 2009-10-26T14:28:05Z 2009-12-01T11:25:32Z <p>Hi, I have an open-source app which uploads photos to Facebook. To save bandwidth, the photos are automatically resized before uploading (Facebook imposes a maximum size limit). A few people have complained about the photo quality, and in fact you can see the difference (see <a href="http://code.google.com/p/fb-photo-uploader/issues/detail?id=82&amp;colspec=ID%20Type%20Status%20Priority%20Milestone%20Owner%20Summary%20Opened%20Modified" rel="nofollow">this issue</a> for some demo images).</p> <p>So my question is, what is the "best" way of scaling down images (i.e. photos) in Java without losing quality, or at least, with minimal quality loss / artifacts?</p> <p>You can see the current code I have <a href="http://code.google.com/p/fb-photo-uploader/source/browse/trunk/src/main/java/uk/me/phillsacre/uploader/images/ImageUtils.java#247" rel="nofollow">here</a> (resize code via <a href="http://www.java2s.com/Code/Java/2D-Graphics-GUI/PictureScaler.htm" rel="nofollow">this page</a>).</p> http://stackoverflow.com/questions/1818712/convert-a-string-to-an-enum/1818745#1818745 0 Answer by Phill Sacre for Convert a String to an Enum ? Phill Sacre 2009-11-30T09:26:08Z 2009-11-30T09:26:08Z <p>I believe that Enums can implement interfaces, so you could define one with a values() method and then use that as your parameter type.</p> <p>But as the commenter said, it would probably be easier if you named your enums MKP, VOL etc</p> http://stackoverflow.com/questions/1795998/manage-session-when-broswer-has-disable-cookies/1796022#1796022 2 Answer by Phill Sacre for Manage Session when broswer has disable cookies Phill Sacre 2009-11-25T10:28:06Z 2009-11-25T10:28:06Z <p>Each URL must be encoded using <code>response.encodeURL("page.jsp")</code></p> <p>This will add the Session ID onto the end of each URL so cookies do not have to be enabled.</p> <p>Note that you will have to do this manually for <em>every single URL</em> in order for it to work.</p> <p>See <a href="http://www.jguru.com/faq/view.jsp?EID=1045" rel="nofollow">this link</a> for more info.</p> http://stackoverflow.com/questions/1782598/with-java-reflection-how-to-instantiate-a-new-object-then-call-a-method-on-it/1782611#1782611 3 Answer by Phill Sacre for With Java reflection how to instantiate a new object, then call a method on it? Phill Sacre 2009-11-23T11:38:20Z 2009-11-23T11:38:20Z <p>You can find an <a href="http://java.sun.com/docs/books/tutorial/reflect/member/methodInvocation.html" rel="nofollow">example</a> on the Java Reflection API <a href="http://java.sun.com/docs/books/tutorial/reflect/" rel="nofollow">tutorial</a>.</p> <p>Basically you need to get the Method instance and then call "invoke" on it.</p> http://stackoverflow.com/questions/1782517/how-can-i-retrieve-the-msg-from-httpservletresponse-senderror/1782551#1782551 0 Answer by Phill Sacre for how can i retrieve the msg from HttpServletResponse.sendError Phill Sacre 2009-11-23T11:25:40Z 2009-11-23T11:25:40Z <p>I think the error message gets packaged up in HTML and then sent, so in order to get the message you will need to parse the HTML.</p> <p>I would suggest this isn't the most efficient way of transferring information between two servers. Provided that no humans need to look at the data, why don't you send the messages in a machine-readable format such as XML instead? Is there a specific reason you need to use response.sendError()?</p> http://stackoverflow.com/questions/1782507/j2se-question-constructor-auto-run/1782539#1782539 3 Answer by Phill Sacre for J2SE Question, constructor auto run? Phill Sacre 2009-11-23T11:23:06Z 2009-11-23T11:23:06Z <p>paint() is not a constructor. paint() is a method which will be called by Swing when it needs to draw the frame you have created.</p> <p>Try reading a <a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">tutorial on Swing</a> and the Javadocs for <a href="http://java.sun.com/javase/6/docs/api/javax/swing/JFrame.html" rel="nofollow">JFrame</a>.</p> http://stackoverflow.com/questions/1749572/unresponsive-java-application-for-no-reason/1749654#1749654 1 Answer by Phill Sacre for unresponsive java application for no reason Phill Sacre 2009-11-17T15:28:50Z 2009-11-17T15:28:50Z <p>It may help you to get a <a href="http://www.adaptj.com/main/stacktrace" rel="nofollow">Thread Dump</a> when the app freezes. This will hopefully tell you exactly what is holding you up (i.e. waiting for IO somewhere).</p> http://stackoverflow.com/questions/1747404/how-to-debug-a-servlet-in-eclipse-without-having-to-deploy-it/1747447#1747447 1 Answer by Phill Sacre for How to debug a servlet in eclipse without having to deploy it Phill Sacre 2009-11-17T08:53:47Z 2009-11-17T08:53:47Z <p>You can create mock HttpServletRequest and HttpServletResponse objects. It should be possible for you to execute a servlet's main method from a unit test the like, which can then be attached to Eclipse's normal debugger.</p> http://stackoverflow.com/questions/1747413/hibernate-or-ibatis-or-something-else/1747429#1747429 1 Answer by Phill Sacre for Hibernate or iBatis or something else? Phill Sacre 2009-11-17T08:50:27Z 2009-11-17T08:50:27Z <p>Do the tables have the same structure, just different names?</p> <p>This is definitely possible to map in iBATIS.</p> <p>You would just need to include something like this in your SQL Map:</p> <pre><code>&lt;select id="selectAll" resultMap="result" parameterClass="myParameterClass"&gt; SELECT ColumnA, ColumnB FROM $tableName$ &lt;/select&gt; </code></pre> <p>Assuming that I have understood your question correctly, that should solve your problem.</p> http://stackoverflow.com/questions/1721478/is-localization-always-a-good-thing/1721517#1721517 12 Answer by Phill Sacre for Is localization always "A Good thing"? Phill Sacre 2009-11-12T11:16:41Z 2009-11-12T13:27:57Z <p>It seems that your issue is not the fact that the application is localised, but that you have no way of switching the locale.</p> <p>I think that localisation is a good thing to do, provided you have a way of giving users the option of which language they would prefer. Sometimes the default locale isn't the correct one, and even within countries - as you point out - people will not want to use their default language anyway!</p> http://stackoverflow.com/questions/1706982/find-user-independent-temp-directory-with-java/1707084#1707084 0 Answer by Phill Sacre for Find user independent TEMP directory with Java Phill Sacre 2009-11-10T10:50:53Z 2009-11-10T10:50:53Z <p>I'm not sure there is a 'clean' way of doing this.</p> <p>In this situation, I would probably create a directory specifically for the Java app and refer to it in a properties file.</p> http://stackoverflow.com/questions/1496178/call-crystal-reports-through-java/1673049#1673049 0 Answer by Phill Sacre for Call crystal reports through java Phill Sacre 2009-11-04T10:54:46Z 2009-11-04T10:54:46Z <p>You may be able to do this using <a href="http://www.sap.com/solutions/sapbusinessobjects/sme/reporting-dashboarding/reporting/eclipse/index.epx" rel="nofollow">Crystal Reports for Eclipse</a>. This has APIs for both Java applications and web applications.</p> http://stackoverflow.com/questions/1660071/response-any-web-page-in-the-internet-from-a-php-file/1660277#1660277 0 Answer by Phill Sacre for Response any web page in the internet from a PHP file Phill Sacre 2009-11-02T09:42:43Z 2009-11-02T09:42:43Z <p>I think what you're looking for is a PHP Proxy script. There are several on the internet - <a href="http://code.google.com/p/php-web-proxy/" rel="nofollow">this is one</a> I created (although don't have time to fix bugs at the moment).</p> <p>I would recommend using one which is already created over one which you've written yourself, as it's not a trivial thing to do (there are better scripts than mine available as well).</p> http://stackoverflow.com/questions/1587745/localization-of-default-messages-in-javaserver-faces/1587771#1587771 3 Answer by Phill Sacre for Localization of default messages in JavaServer Faces Phill Sacre 2009-10-19T09:40:08Z 2009-10-19T09:40:08Z <p>You're doing almost the right thing, you just need to use the right property keys. The default messages.properties file is located in jsf-impl.jar (in the javax.faces package).</p> <p>This contains all the messages, such as:</p> <pre><code>javax.faces.component.UIInput.CONVERSION=Conversion error occurred. javax.faces.component.UIInput.REQUIRED=Validation Error: Value is required. javax.faces.component.UISelectOne.INVALID=Validation Error: Value is not valid javax.faces.component.UISelectMany.INVALID=Validation Error: Value is not valid </code></pre> <p>If you specify your own custom message file and use those same property keys, it will override the JSF defaults.</p> <p>(See <a href="http://blogs.sun.com/johnc/entry/more%5Fjsf%5Fvalidation%5Fcustom%5Ferror" rel="nofollow">this blog post</a> for more detail)</p> http://stackoverflow.com/questions/1571518/required-language-tools-and-approach-for-a-scalable-web-application-like-twitter/1571554#1571554 0 Answer by Phill Sacre for Required language, tools and approach for a scalable web application like twitter Phill Sacre 2009-10-15T10:37:18Z 2009-10-15T10:37:18Z <p>I recommend looking at the <a href="http://highscalability.com/" rel="nofollow">High Scalability</a> website. You can build a scalable web app in virtually any language, but it's not just a matter of using the right technology and then plugging it in. You have to know what you're doing, no matter what technology you use!</p> http://stackoverflow.com/questions/1571460/multiplayer-browser-game-java/1571532#1571532 1 Answer by Phill Sacre for Multiplayer browser game [Java] Phill Sacre 2009-10-15T10:31:07Z 2009-10-15T10:31:07Z <p>The thing is, there isn't one standard way of doing this which you need to read up on.</p> <p>How do you want to implement this web application? As an applet? Using standard web pages? As a web start application which people have to download?</p> <p>The last option would allow you to re-use most of your existing code. If you go with that option it may be worth you looking into <a href="http://java.sun.com/docs/books/tutorial/rmi/index.html" rel="nofollow">RMI</a> as that will probably fit in with your existing architecture.</p> <p>But otherwise, as S.Lott pointed out, you need to go and learn how to make web applications before doing anything else. Those tutorials would be a good start, also you should definitely learn (X)HTML, JavaScript, and a Java web technology such as JSPs, JSF, or Struts. Exactly what you need will depend on your requirements, without more details it's diffiult to recommend one.</p> http://stackoverflow.com/questions/1542626/how-to-run-shell-script-on-remote-machine-from-java/1542674#1542674 3 Answer by Phill Sacre for How to run shell script on remote machine from Java? Phill Sacre 2009-10-09T08:59:19Z 2009-10-09T08:59:19Z <p>If you have knowledge of the machine details (hostname, login, password) the only thing I can think of at the moment is using a <a href="http://linuxmafia.com/ssh/java.html" rel="nofollow">Java SSH library</a> to login to the box and run that command. </p> <p>Or you could write a script on your local machine which ran the script on the remote machine given the correct parameters.</p> <p>That's the simplest way I can think of anyway!</p> http://stackoverflow.com/questions/1509346/how-would-you-intercept-all-exceptions/1509370#1509370 10 Answer by Phill Sacre for How would you intercept all Exceptions? Phill Sacre 2009-10-02T13:05:12Z 2009-10-02T13:05:12Z <p>What is the purpose of you wanting to intercept every exception - for logging, error reporting?</p> <p>Intercepting every single exception in every single line of a Java program is possible, but would probably incur quite a performance hit. If it's unavoidable, it'd probably be best to use something like <a href="http://eclipse.org/aspectj/" rel="nofollow">AspectJ</a>, which can run at compile-time (i.e. it "weaves" into your class files) and as such is much faster than dynamic proxies.</p> <p>But it's something I would try to avoid doing at all costs! In general I would say it's better to limit the scope of the exceptions you want to catch. Also you might want to look into <a href="http://java.sun.com/javase/6/docs/api/java/lang/Thread.html#setDefaultUncaughtExceptionHandler%28java.lang.Thread.UncaughtExceptionHandler%29" rel="nofollow">Thread.setDefaultUncaughtExceptionHandler</a>, which I find useful for displaying error dialogs in GUI applications.</p> http://stackoverflow.com/questions/1498837/how-to-run-a-task-daily-from-java/1498881#1498881 2 Answer by Phill Sacre for How to run a task daily from Java? Phill Sacre 2009-09-30T15:26:52Z 2009-09-30T15:26:52Z <p>Is it possible for you to use a library such as <a href="http://www.sauronsoftware.it/projects/cron4j/" rel="nofollow">cron4j</a>? It will make your job much easier!</p> http://stackoverflow.com/questions/1464875/head-start-java-server-faces/1464909#1464909 1 Answer by Phill Sacre for Head start Java Server Faces Phill Sacre 2009-09-23T09:25:06Z 2009-09-23T09:25:06Z <p>Hi, it's not generally possible to call arbitrary methods in backing beans from your JSF pages.</p> <p>I suggest reading a decent JSF book or tutorial (the ones on the <a href="http://www.ibm.com/developerworks/library/j-jsf1/" rel="nofollow">IBM website</a> are a little old but still well worth reading).</p> <p>In general backing beans work using "actions".</p> <p>So, you define something like this in your page:</p> <pre><code>&lt;h:commandLink action="#{backingBean.doSomething}" /&gt; </code></pre> <p>Then, in your backing bean you have:</p> <pre><code>public String doSomething() { // Your logic goes here return "navigation-target"; } </code></pre> <p>The String returned from "doSomething" will be a string as defined in your <code>faces-config.xml</code> file, known as an "outcome", which will tell JSF which page to navigate to.</p> <p>Hope this helps!</p> http://stackoverflow.com/questions/1346088/how-to-change-the-list-in-a-selectonemenu-if-the-value-is-changed-in-another/1346116#1346116 0 Answer by Phill Sacre for How to change the list in a SelectOneMenu, if the value is changed in another? Phill Sacre 2009-08-28T10:16:42Z 2009-08-28T10:16:42Z <p>Should be possible if you bind a value change listener to the first selectOneMenu. </p> <p>Get the new value from the ValueChangeEvent and update the list accordingly. the JSF page should then display the updated list.</p> <p>Hope that makes sense!</p> http://stackoverflow.com/questions/1321296/when-registering-for-java-events-are-duplicate-listeners-typically-allowed/1321322#1321322 2 Answer by Phill Sacre for When registering for Java events, are duplicate listeners typically allowed? Phill Sacre 2009-08-24T09:23:14Z 2009-08-24T09:23:14Z <p>I don't think there is a specified behaviour for detecting duplicate listeners. I would say, unless you're writing an event handling framework it's probably better not to bother checking. If a class registers itself as a listener twice, it's a bug in the calling code and not in the observable object.</p> <p>If you did want to do something I'd just suggest throwing an <code>IllegalArgumentException</code> stating the message that you cannot register the same listener twice.</p> http://stackoverflow.com/questions/1300655/whats-alternative-to-singleton/1300717#1300717 4 Answer by Phill Sacre for What's Alternative to Singleton Phill Sacre 2009-08-19T15:28:56Z 2009-08-19T15:28:56Z <p>I might be stating the obvious here, but is there a reason why you can't use a dependency-injection framework such as <a href="http://www.springframework.org" rel="nofollow">Spring</a> or <a href="http://code.google.com/p/google-guice/" rel="nofollow">Guice</a>? (I believe Spring also is available for .NET as well now).</p> <p>That way, the framework can hold a single copy of the configuration objects, and your beans (services, DAOs, whatever) don't have to worry about looking it up.</p> <p>This is the approach I usually take!</p> http://stackoverflow.com/questions/1298310/when-getting-drive-information-using-java/1298336#1298336 1 Answer by Phill Sacre for when getting drive information using java Phill Sacre 2009-08-19T07:39:55Z 2009-08-19T07:39:55Z <p>What are you trying to do? </p> <p>My recommendation would be to use <a href="http://java.sun.com/javase/6/docs/api/javax/swing/filechooser/FileSystemView.html" rel="nofollow">FileSystemView</a>.</p> <p>It's used something like this:</p> <pre><code>FileSystemView fsv = FileSystemView.getFileSystemView(); File[] roots = fsv.getRoots(); for (File f: roots) { System.out.println(fsv.getSystemDisplayName(f); } </code></pre> http://stackoverflow.com/questions/1237543/problem-when-removing-index-php-from-url/1237562#1237562 1 Answer by Phill Sacre for Problem when removing index.php from url Phill Sacre 2009-08-06T08:18:00Z 2009-08-06T08:18:00Z <p>Hi, if it always displays the home page it could be that your application isn't configured properly.</p> <p>Check the <code>system/application/config/config.php</code> file and find the <code>$config['uri_protocol']</code> option.</p> <p>If you notice, in the comments there are a number of options you can try. I've found that sometimes on different servers I need to try different options before it will work (I think it's something to do with the PHP configuration, the AUTO option doesn't always get it right).</p> http://stackoverflow.com/questions/1237439/jsf-facelets-set-action-attribute-to-a-dynamically-evaluated-string/1237458#1237458 1 Answer by Phill Sacre for JSF/Facelets: set `action` attribute to a dynamically evaluated string Phill Sacre 2009-08-06T07:42:06Z 2009-08-06T07:42:06Z <p>Why don't you create a custom component which generates the h:commandLink objects programmatically? It would probably be the 'cleanest' solution.</p> http://stackoverflow.com/questions/1227739/applications-running-on-java-1-4-but-windows-server-says-new-java-updates-availab/1227766#1227766 3 Answer by Phill Sacre for applications running on java 1.4 but windows server says new java updates available. Phill Sacre 2009-08-04T14:11:56Z 2009-08-04T14:11:56Z <p>Allowing the update will install a new Java 1.6 JVM on your machine. It very much depends on how your application is set up - if the path to your Java Home folder is coded into run scripts or configuration files, then it probably won't affect you. </p> <p>However, it will probably change the PATH to point to the new Java executable, so if your programs are run just using "java -jar SomeApp.jar" then it will affect you. Java 1.6 should be backwards compatible with Java 1.4 but it would be worth testing on a separate machine first!</p> http://stackoverflow.com/questions/1222275/java-default-form-action-or-button 0 Java default form action or button Phill Sacre 2009-08-03T13:11:13Z 2009-08-03T13:39:45Z <p>Hi,</p> <p>In HTML forms, if you press 'enter' while in a text field the form will generally submit.</p> <p>I'm implementing a search panel in Java Swing, and I want to include the same functionality as I think users will be expecting this.</p> <p>I know that it's possible to use setAction on a JTextField to accomplish this, however I was wondering if there was an easier / better way than setting the action on every field. I've tried looking around but there doesn't seem to be a standard solution to this problem that I can find!</p> <p><strong>Edit</strong>: There is getRootPane().setDefaultButton(...), but that only seems to set the default button for a frame. That wouldn't work for me as I'm using a tabbed pane, each panel of which has a form on it!</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166139#166139 Comment by Phill Sacre on What real life bad habits has programming given you? Phill Sacre 2009-11-20T09:23:04Z 2009-11-20T09:23:04Z tslib, it's like you can read my mind! Scary! ;) http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688392#1688392 Comment by Phill Sacre on Why the name main for function main() Phill Sacre 2009-11-06T15:42:08Z 2009-11-06T15:42:08Z And then it would have to be made into a symbol, which wouldn't work too well for programming languages! http://stackoverflow.com/questions/1660071/response-any-web-page-in-the-internet-from-a-php-file Comment by Phill Sacre on Response any web page in the internet from a PHP file Phill Sacre 2009-11-02T09:05:45Z 2009-11-02T09:05:45Z What do you mean change the image URL to the full URL? For example, if the image URL was image.gif, how would it know that the domain was google.com? All I can think of is changing the URL to its canonical form, i.e. google.com/image.gif =&gt; <a href="http://www.google.com/image.gif" rel="nofollow">google.com/image.gif</a> http://stackoverflow.com/questions/1625137/image-resize-quality-java/1625209#1625209 Comment by Phill Sacre on Image resize quality (Java) Phill Sacre 2009-10-26T16:08:21Z 2009-10-26T16:08:21Z Hi, actually I haven't tried all six which I probably should. Although I am using bicubic resampling which, as you say, &quot;should&quot; be the best. I'm also not using the &quot;high quality&quot; mode as it doesn't work in that situation, the Java imaging API seems to be prone to deadlocks! Probably something wrong with my code, not sure what though. http://stackoverflow.com/questions/1625137/image-resize-quality-java/1625307#1625307 Comment by Phill Sacre on Image resize quality (Java) Phill Sacre 2009-10-26T16:06:44Z 2009-10-26T16:06:44Z I was hoping to avoid an external call but I think you may be right. Java just doesn't seem to have quite got image processing right yet! http://stackoverflow.com/questions/1346088/how-to-change-the-list-in-a-selectonemenu-if-the-value-is-changed-in-another/1346628#1346628 Comment by Phill Sacre on How to change the list in a SelectOneMenu, if the value is changed in another? Phill Sacre 2009-08-28T13:08:44Z 2009-08-28T13:08:44Z Glad that you got it working. RichFaces does make it easier to do things than standard JSF! http://stackoverflow.com/questions/1345680/running-an-applet-in-linux Comment by Phill Sacre on Running an applet in Linux? Phill Sacre 2009-08-28T08:36:26Z 2009-08-28T08:36:26Z At the risk of stating the obvious, does your Linux browser have Java support? Have you tried it on an applet you know does work? http://stackoverflow.com/questions/1237439/jsf-facelets-set-action-attribute-to-a-dynamically-evaluated-string/1237458#1237458 Comment by Phill Sacre on JSF/Facelets: set `action` attribute to a dynamically evaluated string Phill Sacre 2009-08-07T10:57:06Z 2009-08-07T10:57:06Z There are a number of tutorials on the internet. For example, the IBM developerWorks tutorials: <a href="http://www.ibm.com/developerworks/views/java/libraryview.jsp?search_by=nonbelievers" rel="nofollow">ibm.com/developerworks/views/&hellip;</a>: http://stackoverflow.com/questions/1237543/problem-when-removing-index-php-from-url/1237562#1237562 Comment by Phill Sacre on Problem when removing index.php from url Phill Sacre 2009-08-06T08:25:47Z 2009-08-06T08:25:47Z Glad it helped - I had the same issue myself :) http://stackoverflow.com/questions/1170201/is-it-possible-to-fetch-data-from-multi-dbs-through-one-connection-request Comment by Phill Sacre on is it possible to fetch data from multi dbs through one connection request Phill Sacre 2009-07-23T07:36:32Z 2009-07-23T07:36:32Z Which database server are you using? It is possible to set up a connection between database servers from the database in SQL Server and Oracle (and probably most database engines) - but setting it up will be different for each. http://stackoverflow.com/questions/1124614/i-got-the-url-value-using-request-getheaderreferer-how-to-get-the-parameter/1124638#1124638 Comment by Phill Sacre on i got the url value using request.getHeader("Referer"), How to get the parameter values? Phill Sacre 2009-07-14T10:51:32Z 2009-07-14T10:51:32Z Good catch - you'd probably need to decode using URLDecoder.decode(...) http://stackoverflow.com/questions/995312/gui-changing-panels-based-on-value-of-combo-box/995417#995417 Comment by Phill Sacre on GUI: Changing panels based on value of combo box Phill Sacre 2009-06-15T15:43:34Z 2009-06-15T15:43:34Z Thanks, that was useful! :) http://stackoverflow.com/questions/875867/how-can-i-use-credit-card-numbers-containing-spaces/875875#875875 Comment by Phill Sacre on How can I use credit card numbers containing spaces? Phill Sacre 2009-05-19T12:16:48Z 2009-05-19T12:16:48Z Maybe it would be better to use a regex which removed any character that isn't a number. But yes, I agree that any website which doesn't do something this basic is not doing its job properly! http://stackoverflow.com/questions/705575/what-is-an-open-source-java-project-i-could-contribute-to Comment by Phill Sacre on What is an open source Java project I could contribute to? Phill Sacre 2009-04-01T13:53:47Z 2009-04-01T13:53:47Z What kind of open source are you looking for? Web app, Desktop app, any particular area at all? http://stackoverflow.com/questions/665597/collective-nouns/665608#665608 Comment by Phill Sacre on Collective-nouns Phill Sacre 2009-03-20T10:28:34Z 2009-03-20T10:28:34Z or even a stack of programmers. If you have too many in a room, you know what that means...