User jdigital - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T21:43:47Zhttp://stackoverflow.com/feeds/user/37231http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1519125/actionscript-tcp-socket-failing-to-send-message-for-some-people/1574097#15740972Answer by jdigital for Actionscript TCP Socket failing to send message for some peoplejdigital2009-10-15T18:08:22Z2009-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#15739501Answer by jdigital for Log4j versus JCLjdigital2009-10-15T17:39:44Z2009-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#15630221Answer by jdigital for Win32 WM_PAINT and a child windowjdigital2009-10-13T21:32:48Z2009-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#14688291Answer by jdigital for Recursive directory deletion with WIN32jdigital2009-09-23T22:18:49Z2009-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-xml1Best way to convert XML to X12 and X12 to XMLjdigital2009-01-16T02:26:42Z2009-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#13314020Answer by jdigital for Best way to convert XML to X12 and X12 to XMLjdigital2009-08-25T22:36:46Z2009-08-25T22:36:46Z<p>I ended up creating my own XML <-> 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#13030080Answer by jdigital for Desktop-like UI implementations for Java web applications?jdigital2009-08-19T22:39:40Z2009-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#12693891Answer by jdigital for Downloading a file over https over javajdigital2009-08-13T00:10:39Z2009-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#12635470Answer by jdigital for Preserving SQLServer permissions jdigital2009-08-11T23:34:00Z2009-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#10707080Answer by jdigital for Multi java processes by jvm ?jdigital2009-07-01T18:45:08Z2009-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#10416310Answer by jdigital for Prevent system tray icon from stealing focus when clickedjdigital2009-06-25T00:34:09Z2009-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#10346010Answer by jdigital for How do I prepend information to STDERR when a method generates stderr?jdigital2009-06-23T19:22:21Z2009-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#9992092Answer by jdigital for GetShortPathName unpredictable resultsjdigital2009-06-16T01:12:51Z2009-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#9985040Answer by jdigital for Alternative to servicewrapper for java?jdigital2009-06-15T21:31:30Z2009-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#9984260Answer by jdigital for Moving applications between desktops in Windowsjdigital2009-06-15T21:12:25Z2009-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#9604810Answer by jdigital for realloc crashing in previously stable functionjdigital2009-06-06T20:39:38Z2009-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#9601944Answer by jdigital for Eclipse Java project error: cannot resolve declaration in swingjdigital2009-06-06T17:48:38Z2009-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#9536840Answer by jdigital for Limit availableProcessorsjdigital2009-06-04T23:56:33Z2009-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#9530544Answer by jdigital for Why won't python allow me to delete files?jdigital2009-06-04T20:58:09Z2009-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#9486900Answer by jdigital for How to launch a GUI program in a Windows service?jdigital2009-06-04T05:09:13Z2009-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#9371950Answer by jdigital for Hooking into Terminal Services Managerjdigital2009-06-01T22:51:53Z2009-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#9371823Answer by jdigital for CBT Hook not working in Windows Vistajdigital2009-06-01T22:47:04Z2009-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-1Answer by jdigital for Programmatically determine DPI via the browser?jdigital2009-06-01T19:44:33Z2009-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#9310450Answer by jdigital for jQuery validation errorPlacement and removing elements?jdigital2009-05-31T01:40:31Z2009-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#9310371Answer by jdigital for Which Java thread is hogging the CPU?jdigital2009-05-31T01:36:43Z2009-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#9243040Answer by jdigital for How to determine the keyboard layout for another process (Windows)?jdigital2009-05-29T03:51:35Z2009-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#9237830Answer by jdigital for Win32: Modal dialog not returning focusjdigital2009-05-28T23:53:19Z2009-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#8748961Answer by jdigital for How do I get 'real-time' information back from a subprocess.Popen in python (2.5)jdigital2009-05-17T16:11:43Z2009-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#8735803Answer by jdigital for How to retrieve the value of a text area in javascriptjdigital2009-05-16T23:54:58Z2009-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#8717300Answer by jdigital for Can VS_VERSION_INFO be added to non-exe files?jdigital2009-05-16T04:57:03Z2009-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-0Comment by jdigital on vb.net: why is this starting at 0?jdigital2009-10-28T21:46:08Z2009-10-28T21:46:08ZIf temp_string starts with "<beginning of record>", then that would be the expected result, wouldn't it?http://stackoverflow.com/questions/935954/programmatically-determine-dpi-via-the-browser/936420#936420Comment by jdigital on Programmatically determine DPI via the browser?jdigital2009-10-23T22:21:58Z2009-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-focuComment by jdigital on Low-level keyboard hook issue : Keyboard state losed when application is not focused (Delphi)jdigital2009-10-19T20:47:15Z2009-10-19T20:47:15ZThe 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#1552400Comment by jdigital on Running another program in Windows bat file and not create child process.jdigital2009-10-15T18:01:05Z2009-10-15T18:01:05ZIn many cases you should be able to omit the "cmd /c" (see answer by Corey Trager)http://stackoverflow.com/questions/1309076/the-wording-of-the-interview-question-probability-of-marbles/1309090#1309090Comment by jdigital on the wording of the interview question 'probability of marbles'jdigital2009-08-20T22:09:01Z2009-08-20T22:09:01Z"Picking a marble from the jar" 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#1025306Comment by jdigital on Hidden Features of Javajdigital2009-08-13T00:26:36Z2009-08-13T00:26:36Z"Premature optimization" 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/…</a>http://stackoverflow.com/questions/1269045/seting-proxy-in-javascriptComment by jdigital on seting proxy in javascriptjdigital2009-08-13T00:14:15Z2009-08-13T00:14:15ZYou 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#1239475Comment by jdigital on Quickly detect if a file mount is unavailable in Windowsjdigital2009-08-11T01:06:11Z2009-08-11T01:06:11ZYou 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#1225823Comment by jdigital on Connection to a URL from within an applet using Apache's HttpClient vs using the JDK's URLConnectionjdigital2009-08-11T00:52:58Z2009-08-11T00:52:58ZYes, that would be useful information. From what you've posted, it's not immediately clear just what you mean by "failed".http://stackoverflow.com/questions/1100473/how-can-i-force-the-login-to-a-specific-ip-addressComment by jdigital on How can I force the login to a specific ip addressjdigital2009-07-08T20:56:25Z2009-07-08T20:56:25ZAfter 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#1033992Comment by jdigital on Getting Access to Products No Longer Available From Microsoftjdigital2009-06-23T17:34:26Z2009-06-23T17:34:26ZThe 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/…</a>http://stackoverflow.com/questions/393099/mocking-http-server/393253#393253Comment by jdigital on Mocking HTTP Serverjdigital2009-06-22T21:58:00Z2009-06-22T21:58:00ZI use embedded Jetty for my application and Simple for testing. It's a nice combination.http://stackoverflow.com/questions/843843/getshortpathname-unpredictable-results/999209#999209Comment by jdigital on GetShortPathName unpredictable resultsjdigital2009-06-16T18:25:25Z2009-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#960300Comment by jdigital on IPC windows service windows formsjdigital2009-06-06T21:34:45Z2009-06-06T21:34:45ZHmmm, 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#954041Comment by jdigital on How to determine the keyboard layout for another process (Windows)?jdigital2009-06-05T18:11:12Z2009-06-05T18:11:12ZThis 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).