User jdigital - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T21:43:47Z http://stackoverflow.com/feeds/user/37231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1519125/actionscript-tcp-socket-failing-to-send-message-for-some-people/1574097#1574097 2 Answer by jdigital for Actionscript TCP Socket failing to send message for some people jdigital 2009-10-15T18:08:22Z 2009-10-15T18:08:22Z <p>You're right that this is a common problem, but the problem is a general one, independent of flash. <em>I sent a message but it was never received, what should I do?</em> You need to check that your client code really did send the message; you need to check that the message left the client machine; you need to check that the message reached the server machine; and you need to check that the server application received the message. You'll also want to make sure that your connection/socket between the client and the server is still alive.</p> <p><strong>In trying to diagnose this problem, assuming that TCP failed is the wrong place to start.</strong> If you're using UDP, then the story is different because UDP does not guarantee delivery (but you already knew that, right?).</p> <p>Repeating previous suggestions, you should use Wireshark (or equivalent) to determine if the message leaves the client machine. You can start on your server, to make sure that nothing funny is happening there; however, if there is really no trace of the message on the server side, then you'll need to provide some kind of client-side instrumentation to see what's going on over there.</p> http://stackoverflow.com/questions/1573768/log4j-versus-jcl/1573950#1573950 1 Answer by jdigital for Log4j versus JCL jdigital 2009-10-15T17:39:44Z 2009-10-15T17:39:44Z <p>Check out <a href="http://www.slf4j.org/faq.htm" rel="nofollow">Simple Logging Facade for Java (SLF4J)</a>. The article you referenced talks about the "classloader problem" and SLF4J is supposed to answer that.</p> http://stackoverflow.com/questions/1562758/win32-wmpaint-and-a-child-window/1563022#1563022 1 Answer by jdigital for Win32 WM_PAINT and a child window jdigital 2009-10-13T21:32:48Z 2009-10-13T21:32:48Z <p>You should be calling BeginPaint and EndPaint in response to the WM_PAINT message to validate the window. Otherwise, the system thinks that your window has not been painted and so it will send the paint message again (and again). See the <a href="http://msdn.microsoft.com/en-us/library/aa922583.aspx" rel="nofollow">Microsoft documentation.</a></p> http://stackoverflow.com/questions/1468774/recursive-directory-deletion-with-win32/1468829#1468829 1 Answer by jdigital for Recursive directory deletion with WIN32 jdigital 2009-09-23T22:18:49Z 2009-09-23T22:18:49Z <p>Try calling <a href="http://msdn.microsoft.com/en-us/library/aa364413%28VS.85%29.aspx" rel="nofollow">FindClose</a> to close handle returned by FindFileFileA.</p> http://stackoverflow.com/questions/449312/best-way-to-convert-xml-to-x12-and-x12-to-xml 1 Best way to convert XML to X12 and X12 to XML jdigital 2009-01-16T02:26:42Z 2009-08-25T22:36:46Z <p>Looking for a tool/library to convert XML to X12 (270 - medical eligibility request) and then to convert the X12 response (271 - eligibility response) back to XML. This will be embedded in a server application (will consider any target language). I've toyed with idea of writing my own X12 parser and generator but this project will most likely expand to other X12 transactions and I'd like to find a solution that will be extensible.</p> http://stackoverflow.com/questions/449312/best-way-to-convert-xml-to-x12-and-x12-to-xml/1331402#1331402 0 Answer by jdigital for Best way to convert XML to X12 and X12 to XML jdigital 2009-08-25T22:36:46Z 2009-08-25T22:36:46Z <p>I ended up creating my own XML &lt;-> x12 transformation tool. There were some commercial offerings that I came across (one of which, from <a href="http://www.etasoft.com/" rel="nofollow">EtaSoft</a>, is worth checking out for their fine documentation) but ultimately the advantage of a homegrown solution was too great.</p> <p>I did use the configuration files from <a href="http://search.cpan.org/~prasad/X12-0.08/Readme.pod" rel="nofollow">X12::Parser</a> as the basis for an X12 parser, essentially turning the config file into code and eliminating the overhead and error handling for managing configuration files that should in theory almost never change.</p> http://stackoverflow.com/questions/1302971/desktop-like-ui-implementations-for-java-web-applications/1303008#1303008 0 Answer by jdigital for Desktop-like UI implementations for Java web applications? jdigital 2009-08-19T22:39:40Z 2009-08-19T22:39:40Z <p>How about <a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a>?</p> http://stackoverflow.com/questions/1269359/downloading-a-file-over-https-over-java/1269389#1269389 1 Answer by jdigital for Downloading a file over https over java jdigital 2009-08-13T00:10:39Z 2009-08-13T00:10:39Z <p>You can use <a href="http://www.sslshopper.com/article-most-common-java-keytool-keystore-commands.html" rel="nofollow">keytool</a> import.</p> http://stackoverflow.com/questions/1263532/preserving-sqlserver-permissions/1263547#1263547 0 Answer by jdigital for Preserving SQLServer permissions jdigital 2009-08-11T23:34:00Z 2009-08-11T23:34:00Z <p>How is the user accessing the database? If via an application, then just log the user out and require the user to re-authenticate.</p> http://stackoverflow.com/questions/1070646/multi-java-processes-by-jvm/1070708#1070708 0 Answer by jdigital for Multi java processes by jvm ? jdigital 2009-07-01T18:45:08Z 2009-07-01T18:45:08Z <p>A process runs a JVM; JVMs do not run processes (although they can start processes, as mentioned earlier). So there's no way to have multiple processes under the same JVM.</p> http://stackoverflow.com/questions/1041532/prevent-system-tray-icon-from-stealing-focus-when-clicked/1041631#1041631 0 Answer by jdigital for Prevent system tray icon from stealing focus when clicked jdigital 2009-06-25T00:34:09Z 2009-06-25T00:34:09Z <p>Probably not, at least not easily. <a href="http://stackoverflow.com/questions/621998/restoring-window-focus-back-to-previous-owner">This issue been discussed before.</a></p> http://stackoverflow.com/questions/1034536/how-do-i-prepend-information-to-stderr-when-a-method-generates-stderr/1034601#1034601 0 Answer by jdigital for How do I prepend information to STDERR when a method generates stderr? jdigital 2009-06-23T19:22:21Z 2009-06-23T19:22:21Z <p>You can use <a href="http://java.sun.com/javase/6/docs/api/java/lang/System.html#setErr%28java.io.PrintStream%29" rel="nofollow">System.setErr</a> to redirect stderr to your own PrintStream.</p> http://stackoverflow.com/questions/843843/getshortpathname-unpredictable-results/999209#999209 2 Answer by jdigital for GetShortPathName unpredictable results jdigital 2009-06-16T01:12:51Z 2009-06-16T01:12:51Z <p>Have you tried <a href="http://msdn.microsoft.com/en-us/library/aa365543%28VS.85%29.aspx" rel="nofollow">SetFileShortName</a>?</p> http://stackoverflow.com/questions/998209/alternative-to-servicewrapper-for-java/998504#998504 0 Answer by jdigital for Alternative to servicewrapper for java? jdigital 2009-06-15T21:31:30Z 2009-06-15T21:31:30Z <p>We use the open source <a href="http://javaservice.ow2.org/index.html" rel="nofollow">JavaService</a> package.</p> <p>Edit: We use an older version of this package (when it was being maintained by the original developer, Alexandria Software Consulting). I have not had a chance to look at the improvements made since then.</p> http://stackoverflow.com/questions/472161/moving-applications-between-desktops-in-windows/998426#998426 0 Answer by jdigital for Moving applications between desktops in Windows jdigital 2009-06-15T21:12:25Z 2009-06-15T21:12:25Z <p>Window resources (such as HWNDs) are specific to a desktop. If you create a window in one desktop, I can't see how you would be able to move it to another desktop. For example, the HWNDs used by your application might already be in use in the other desktop.</p> <p>Virtual Desktop Managers don't have to use Windows Desktops -- they can create the same effect by manipulating the windows. Take a look at <a href="http://virtuawin.sourceforge.net/" rel="nofollow">VirtuaWin</a>, an open source Virtual Desktop Manager.</p> http://stackoverflow.com/questions/960459/realloc-crashing-in-previously-stable-function/960481#960481 0 Answer by jdigital for realloc crashing in previously stable function jdigital 2009-06-06T20:39:38Z 2009-06-06T20:39:38Z <p>Ah, the joys of C programming. A crash in realloc (or malloc or free) can be triggered by writing past the bounds of a memory block -- and this can happen anywhere else in your program. The approach I've used in the past is some flavor of <a href="http://www.google.com/search?q=debugging%2Bmallo" rel="nofollow">debugging malloc</a> package. Before jumping in with a third party solution, check the docs to see if Visual Studio provides anything along these lines.</p> http://stackoverflow.com/questions/960182/eclipse-java-project-error-cannot-resolve-declaration-in-swing/960194#960194 4 Answer by jdigital for Eclipse Java project error: cannot resolve declaration in swing jdigital 2009-06-06T17:48:38Z 2009-06-06T17:48:38Z <p>Start with a fully qualified reference:</p> <pre><code>javax.swing.WindowConstants.DISPOSE_ON_CLOSE </code></pre> <p>then when you have time, read this section on <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/static-import.html" rel="nofollow">static import</a></p> http://stackoverflow.com/questions/949379/limit-availableprocessors/953684#953684 0 Answer by jdigital for Limit availableProcessors jdigital 2009-06-04T23:56:33Z 2009-06-04T23:56:33Z <p>Not surprising that taskset won't work here, since it's a command that sets scheduler parameters, whereas availableProcessors() would not have any reason to query the scheduler.</p> <p>Note that in your example, taskset isn't merely limiting you to two processors; it is limiting you to two specific processors (0 and 1).</p> <p>I wonder if you can use crosscutting (AOP) or byte code generation to wrap the availableProcessors() call?</p> http://stackoverflow.com/questions/953040/why-wont-python-allow-me-to-delete-files/953054#953054 4 Answer by jdigital for Why won't python allow me to delete files? jdigital 2009-06-04T20:58:09Z 2009-06-04T20:58:09Z <p>Are you opening each file and then trying to delete it? If so, try closing it first.</p> http://stackoverflow.com/questions/948417/how-to-launch-a-gui-program-in-a-windows-service/948690#948690 0 Answer by jdigital for How to launch a GUI program in a Windows service? jdigital 2009-06-04T05:09:13Z 2009-06-04T05:09:13Z <p>You may be running in the wrong window station or desktop. See this <a href="http://msdn.microsoft.com/en-us/library/ms687098%28VS.85%29.aspx" rel="nofollow">Microsoft reference on Window Stations and Desktops</a>.</p> http://stackoverflow.com/questions/936573/hooking-into-terminal-services-manager/937195#937195 0 Answer by jdigital for Hooking into Terminal Services Manager jdigital 2009-06-01T22:51:53Z 2009-06-01T22:51:53Z <p>Take a look at <a href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" rel="nofollow">psexec</a> and the other ps* utilities from Microsoft (originally from SysInternals).</p> http://stackoverflow.com/questions/936830/cbt-hook-not-working-in-windows-vista/937182#937182 3 Answer by jdigital for CBT Hook not working in Windows Vista jdigital 2009-06-01T22:47:04Z 2009-06-01T22:47:04Z <p>Might be a UIPI issue:</p> <blockquote> <p>User Interface Privilege Isolation (UIPI) implements restrictions in the windows subsystem that prevents lower-privilege applications from sending window messages or <strong>installing hooks</strong> in higher-privilege processes.</p> </blockquote> <p>from Microsoft's <a href="http://msdn.microsoft.com/en-us/library/bb625963.aspx" rel="nofollow">Windows Integrity Mechanism Design</a></p> http://stackoverflow.com/questions/935954/programmatically-determine-dpi-via-the-browser/936420#936420 -1 Answer by jdigital for Programmatically determine DPI via the browser? jdigital 2009-06-01T19:44:33Z 2009-06-01T19:44:33Z <p>DPI is a lie. It doesn't have anything to do with dots per inch, at least not in this context.</p> <p>You can have two monitors that are different sizes and yet they can have the same resolution and the same DPI.</p> <p>There is no software solution. You'd have to calibrate this on your own by displaying a grid on the screen and ask the user to place a ruler next to it to see where things align.</p> http://stackoverflow.com/questions/931013/jquery-validation-errorplacement-and-removing-elements/931045#931045 0 Answer by jdigital for jQuery validation errorPlacement and removing elements? jdigital 2009-05-31T01:40:31Z 2009-05-31T01:40:31Z <p>Have you tried debugging with <a href="http://getfirebug.com/" rel="nofollow">FireBug</a>? While you're using it, use the DOM inspector to make sure that the tree structure matches your expectations.</p> http://stackoverflow.com/questions/930915/which-java-thread-is-hogging-the-cpu/931037#931037 1 Answer by jdigital for Which Java thread is hogging the CPU? jdigital 2009-05-31T01:36:43Z 2009-05-31T01:36:43Z <p>If you're running under Windows, try <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a>. Bring up the properties dialog for your process, then select the Threads tab.</p> http://stackoverflow.com/questions/923866/how-to-determine-the-keyboard-layout-for-another-process-windows/924304#924304 0 Answer by jdigital for How to determine the keyboard layout for another process (Windows)? jdigital 2009-05-29T03:51:35Z 2009-05-29T03:51:35Z <p>Why is this a service? If it requires a user to be logged in, then you can run it as a startup application and you'll be running in the same environment as the user.</p> http://stackoverflow.com/questions/923631/win32-modal-dialog-not-returning-focus/923783#923783 0 Answer by jdigital for Win32: Modal dialog not returning focus jdigital 2009-05-28T23:53:19Z 2009-05-28T23:53:19Z <p>You're saving a pointer to lpCreateParams. Is it possible that the associated memory block is being freed or otherwise destroyed?</p> http://stackoverflow.com/questions/874815/how-do-i-get-real-time-information-back-from-a-subprocess-popen-in-python-2-5/874896#874896 1 Answer by jdigital for How do I get 'real-time' information back from a subprocess.Popen in python (2.5) jdigital 2009-05-17T16:11:43Z 2009-05-17T16:11:43Z <p>You might try this <a href="http://stackoverflow.com/questions/803265/getting-realtime-output-using-subprocess">StackOverflow thread</a>. If that's not it, then try this <a href="http://stackoverflow.com/search?q=python%2Bstdout%2Breadline">StackOverflow search</a>.</p> http://stackoverflow.com/questions/873536/how-to-retrieve-the-value-of-a-text-area-in-javascript/873580#873580 3 Answer by jdigital for How to retrieve the value of a text area in javascript jdigital 2009-05-16T23:54:58Z 2009-05-16T23:54:58Z <p>The <a href="http://docs.jquery.com/Attributes/val" rel="nofollow">jQuery documentation</a> suggests that val() was not available is older versions of jQuery. Is your version up to date?</p> http://stackoverflow.com/questions/871710/can-vsversioninfo-be-added-to-non-exe-files/871730#871730 0 Answer by jdigital for Can VS_VERSION_INFO be added to non-exe files? jdigital 2009-05-16T04:57:03Z 2009-05-16T04:57:03Z <p>Can't think of any way to do this short of a shell extension. The approach I've taken in the past is a separate "census" program that knows how to read version information from any kind of file.</p> <p>Zip files can be converted into exe files by using a program that turns a zip file into a self-extracting zip (I know that WinZip does this, there are most likely free utilities for this also; <a href="http://www.chilkatsoft.com/ChilkatSfx.asp" rel="nofollow">here's one that came up on a search</a> but I haven't actually tried it). Once you've got an exe, you should be able to use a tool like <a href="http://www.angusj.com/resourcehacker/" rel="nofollow">Resource Hacker</a> to change the version information.</p> http://stackoverflow.com/questions/1640304/vb-net-why-is-this-starting-at-0 Comment by jdigital on vb.net: why is this starting at 0? jdigital 2009-10-28T21:46:08Z 2009-10-28T21:46:08Z If temp_string starts with &quot;&lt;beginning of record&gt;&quot;, then that would be the expected result, wouldn't it? http://stackoverflow.com/questions/935954/programmatically-determine-dpi-via-the-browser/936420#936420 Comment by jdigital on Programmatically determine DPI via the browser? jdigital 2009-10-23T22:21:58Z 2009-10-23T22:21:58Z You're confusing the physical number of dots per inch with the DPI setting used by the operating system. Of course you can determine the former, but the operating system cannot and does not (at least not the ones I'm familiar with). The browser uses the DPI setting provided by the OS. I suggest that you actually check the DPI settings on different size monitors running at the same resolution. I have (under WinXP) and they're all reported as 96 DPI. http://stackoverflow.com/questions/1590983/low-level-keyboard-hook-issue-keyboard-state-losed-when-application-is-not-focu Comment by jdigital on Low-level keyboard hook issue : Keyboard state losed when application is not focused (Delphi) jdigital 2009-10-19T20:47:15Z 2009-10-19T20:47:15Z The barcode readers that I've used emulate a keyboard so there's no need to write any code. Are you using a reader that doesn't have this capability? http://stackoverflow.com/questions/1536205/running-another-program-in-windows-bat-file-and-not-create-child-process/1552400#1552400 Comment by jdigital on Running another program in Windows bat file and not create child process. jdigital 2009-10-15T18:01:05Z 2009-10-15T18:01:05Z In many cases you should be able to omit the &quot;cmd /c&quot; (see answer by Corey Trager) http://stackoverflow.com/questions/1309076/the-wording-of-the-interview-question-probability-of-marbles/1309090#1309090 Comment by jdigital on the wording of the interview question 'probability of marbles' jdigital 2009-08-20T22:09:01Z 2009-08-20T22:09:01Z &quot;Picking a marble from the jar&quot; would not preclude me from reaching all the way down and grabbing one from the bottom. http://stackoverflow.com/questions/15496/hidden-features-of-java/1025306#1025306 Comment by jdigital on Hidden Features of Java jdigital 2009-08-13T00:26:36Z 2009-08-13T00:26:36Z &quot;Premature optimization&quot; is a phrase used to describe a situation where a programmer lets performance considerations affect the design of a piece of code. This can result in a design that is not as clean as it could have been or code that is incorrect, because the code is complicated by the optimization and the programmer is distracted by optimizing. [ref: <a href="http://en.wikipedia.org/wiki/Optimization_%28computer_science%29]" rel="nofollow">en.wikipedia.org/wiki/&hellip;</a> http://stackoverflow.com/questions/1269045/seting-proxy-in-javascript Comment by jdigital on seting proxy in javascript jdigital 2009-08-13T00:14:15Z 2009-08-13T00:14:15Z You can't change the browser's proxy from javascript (at least not without a plugin). What is it that you're trying to achieve? There might be some other way to do it... http://stackoverflow.com/questions/1189688/quickly-detect-if-a-file-mount-is-unavailable-in-windows/1239475#1239475 Comment by jdigital on Quickly detect if a file mount is unavailable in Windows jdigital 2009-08-11T01:06:11Z 2009-08-11T01:06:11Z You may want to add some state management logic to avoid firing off multiple threads. http://stackoverflow.com/questions/1216165/connection-to-a-url-from-within-an-applet-using-apaches-httpclient-vs-using-the/1225823#1225823 Comment by jdigital on Connection to a URL from within an applet using Apache's HttpClient vs using the JDK's URLConnection jdigital 2009-08-11T00:52:58Z 2009-08-11T00:52:58Z Yes, that would be useful information. From what you've posted, it's not immediately clear just what you mean by &quot;failed&quot;. http://stackoverflow.com/questions/1100473/how-can-i-force-the-login-to-a-specific-ip-address Comment by jdigital on How can I force the login to a specific ip address jdigital 2009-07-08T20:56:25Z 2009-07-08T20:56:25Z After you clarify your question, could you also explain why you're trying to do this? http://stackoverflow.com/questions/1033949/getting-access-to-products-no-longer-available-from-microsoft/1033992#1033992 Comment by jdigital on Getting Access to Products No Longer Available From Microsoft jdigital 2009-06-23T17:34:26Z 2009-06-23T17:34:26Z The link is not hard to find: <a href="http://msdn.microsoft.com/en-us/subscriptions/aa948864.aspx" rel="nofollow">msdn.microsoft.com/en-us/subscriptions/&hellip;</a> http://stackoverflow.com/questions/393099/mocking-http-server/393253#393253 Comment by jdigital on Mocking HTTP Server jdigital 2009-06-22T21:58:00Z 2009-06-22T21:58:00Z I use embedded Jetty for my application and Simple for testing. It's a nice combination. http://stackoverflow.com/questions/843843/getshortpathname-unpredictable-results/999209#999209 Comment by jdigital on GetShortPathName unpredictable results jdigital 2009-06-16T18:25:25Z 2009-06-16T18:25:25Z <a href="http://en.wikipedia.org/wiki/8.3_filename" rel="nofollow">en.wikipedia.org/wiki/8.3_filename</a> discusses a set of conventions for short file names. Implement this in a loop where you check the return code of SetFileShortName, and if it fails, increment the count at the end and try again. http://stackoverflow.com/questions/960064/ipc-windows-service-windows-forms/960300#960300 Comment by jdigital on IPC windows service windows forms jdigital 2009-06-06T21:34:45Z 2009-06-06T21:34:45Z Hmmm, you're right, I just assumed it would return an error. http://stackoverflow.com/questions/923866/how-to-determine-the-keyboard-layout-for-another-process-windows/954041#954041 Comment by jdigital on How to determine the keyboard layout for another process (Windows)? jdigital 2009-06-05T18:11:12Z 2009-06-05T18:11:12Z This won't work from a service (well. it would work from an interactive service but use of interactive services is not recommended and won't work under newer versions of Windows).