User jim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T20:49:48Zhttp://stackoverflow.com/feeds/user/27628http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/562570/jndi-failing-with-namenotfoundexception0JNDI failing with NameNotFoundExceptionjim2009-02-18T19:58:44Z2009-10-30T17:00:03Z
<p>I'm writing regression tests for a in-house library (where the creators are looong gone) and I'm trying to validate the environment. A couple of the tests keep failing with that NameNotFoundException only when the jndi name is "complex".</p>
<p>This is a stand alone app and is not running with any web containers. The app uses a preference file and there is no LDAP involved. The environment is Java v1.4, and the app is installed with all the necessary libraries local to it. (lib dir with jndi.jar, jms.jar ... etc). Simple, right ?</p>
<p>Due to the complexity of the library and how it futzes around with lots of objects, I have a simple test and then ramp up the complexity adding in each piece as a separate test.</p>
<p>Setup:
File: c:\data\eclipse\workspace\APP\testfiles\jndi\jms\label\.bindings
<br>In file there is this entry: QReply/FactoryName=com.ibm.mq.jms.MQQueueFactory</p>
<p>UnitTest Class:
"simple" test has</p>
<pre><code>Hashtable ht = new Hashtable();
ht.put(Context.PROVIDER_URL,
"file:/data/eclipse/workspace/APP/testFiles/jndi/jms/label/");
ht.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.fscontext.RefFSContextFactory");
ht.put(Context.SECURITY_AUTHENTICATION, "none");
Context ctx;
try {
ctx = new InitialContext(ht);
String jndiName = "QReply";
logger.debug("testFindRemoteObject_Simple",
"Invoking InitialContext.lookup(\"" + jndiName + "\")");
Object remoteObject = ctx.lookup(jndiName);
assertTrue(remoteObject != null);
} catch (NamingException e) {
e.printStackTrace();
fail(e.getMessage());
}
</code></pre>
<p>This passes. Because I was having so much trouble with the library I created another test that matches the actual data passed in; the Provider URL is shortened and the jndi name picks up a "path".</p>
<p>"Actual" data unit test:</p>
<pre><code>final Hashtable ht = new Hashtable();
ht.put(Context.PROVIDER_URL,
"file:/data/eclipse/workspace/APP/testFiles/jndi/");
ht.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.fscontext.RefFSContextFactory");
ht.put(Context.SECURITY_AUTHENTICATION, "none");
Context ctx;
try {
ctx = new InitialContext(ht);
String jndiName = "jms/label/QReply";
logger.debug("testFindRemoteObject_Actual",
"Invoking InitialContext.lookup(\"" + jndiName + "\")");
Object remoteObject = ctx.lookup(jndiName);
assertTrue(remoteObject != null);
} catch (NamingException e) {
e.printStackTrace();
fail(e.getMessage());
}
</code></pre>
<p>Which fails with </p>
<pre><code>javax.naming.NameNotFoundException: jms/label/QReply
at com.sun.jndi.fscontext.RefFSContext.getObjectFromBindings(
RefFSContext.java:400)
at com.sun.jndi.fscontext.RefFSContext.lookupObject(RefFSContext.java:327)
at com.sun.jndi.fscontext.RefFSContext.lookup(RefFSContext.java:146)
at com.sun.jndi.fscontext.FSContext.lookup(FSContext.java:127)
at javax.naming.InitialContext.lookup(InitialContext.java:347)
at com.advo.tests.services.UnitTestServiceLocator.testFindRemoteObject_Actual(
UnitTestServiceLocator.java:85)
</code></pre>
<p>where UnitTestServiceLocator.java:85 is the line of ctx.lookup(jndiname);</p>
<p>Why would the simple test pass but the more complex test fail ? Both use a classpath that points to the lib directory which is populated with the jms and mq jars (among other things).</p>
<p>The complex test matches what the library will fill in but using magic as the passed in values. The library code has a "few" more lines that extract the magic values from the preferences file(s).
What am I missing? The library code will work on the server but fail on my laptop (when developing).</p>
<p>I even created another jndi path - just in case the first test was mucking up the second. Still fails.</p>
<p>Since I don't have any desire (or permission to change the library code), the call to InitialContext(X); is that way BECAUSE that's the way the library does it. I've seen the other examples with nothing passed with InitialContext and I'm confused why that is better.</p>
<p>UPDATE:
I've created a jndi_test project on linux java1.5 and that successfully runs the failing test. Taking the same source and moving it to the windows environment - the test fails. There are a few changes to the classpath due to the fact that there is no C drive on linux but the data files are the same. (hmm delimiter issue ?)</p>
<p>I've also found out that I've got problems with that library IF i'm going to run it on 1.5, but that's a side issue.</p>
http://stackoverflow.com/questions/957700/how-do-set-the-java-library-path-from-eclipse/957837#9578371Answer by jim for How do set the java.library.path from Eclipsejim2009-06-05T19:56:05Z2009-06-05T19:56:05Z<pre><code>Click Run
Click Debug ...
New Java Application
Click Arguments tab
in the 2nd box (VM Arguments) add the -D entry
-Xdebug
-verbose:gc
-Xbootclasspath/p:jar/vbjorb.jar;jar/oracle9.jar;classes;jar/mq.jar;jar/xml4j.jar
-classpath .
-DORBInitRef=NameService=iioploc://10.101.2.94:8092/NameService
etc...
</code></pre>
http://stackoverflow.com/questions/810830/what-are-your-favorite-small-handy-utility-programs-tools-helping-you-programmi/811428#8114280Answer by jim for What are your favorite small handy utility programs (tools) helping you programming ? jim2009-05-01T13:48:03Z2009-05-01T13:48:03Z<p>2nd for <a href="http://www.scootersoftware.com/" rel="nofollow">BeyondCompare</a>. Inexpensive, powerful and available for Linux.</p>
http://stackoverflow.com/questions/763464/whats-the-hardest-program-youve-written/763486#7634864Answer by jim for What's the HARDEST program you've written?jim2009-04-18T14:05:43Z2009-04-18T14:05:43Z<p>An application that compiled and ran on both - windows and mac with one codebase.</p>
http://stackoverflow.com/questions/731181/database-schema-question/731290#7312901Answer by jim for Database Schema questionjim2009-04-08T18:37:55Z2009-04-08T18:37:55Z<p>This is a topic <a href="http://databases.about.com/od/specificproducts/a/normalization.htm" rel="nofollow">Database Normalization</a> that books have been written on
and part of why you want to do this is <a href="http://www.artima.com/intv/dry.html" rel="nofollow">DRY</a> or don't repeat yourself.</p>
<p>So to answer your question about a better way - I would answer no. </p>
http://stackoverflow.com/questions/677106/visual-studio-2005-c-what-controls-the-manifest-creation0Visual Studio 2005 - C++ - What controls the manifest creationjim2009-03-24T12:07:06Z2009-03-25T00:15:09Z
<p>I was trying to figure out why a debug build was blowing up with the "dependent assembly microsoft.vc80.debugcrt could not be found" event error.</p>
<p>After deleting everything (anything not .cpp or .h) and recreating the solution - I still had the problem.</p>
<p>A google search was fruitless and a re-install of VS didn't produce any change.</p>
<p>I did have the dlls in C:\WINDOWS\WinSxS\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c.</p>
<p>I opened the \debug\.exe.intermediate.manifest file and it had 2 (dependentAssembly) entries:<br />
1st: name='Microsoft.VC80.DebugCRT' version='8.0.50608.0'<br />
2nd: name='Microsoft.VC80.DebugCRT' version='8.0.50727.762' </p>
<p>If I delete one and change the other one to
name='Microsoft.VC80.DebugCRT' version='8.0.50727.42'</p>
<p>I can get a build that will start.</p>
<p>Granted I did have VS2008 installed - but what is controlling the versions ? or How can I get the right debug dll version to "stick".</p>
<p>VS2008 was de-installed through the control panel.</p>
<p>EDIT: Found nothing in the registry if DebugCRT is searched for.<br />
the environment path points to the VS8 folders .<br />
There is only 1 DebugCRT folder in the c:\windows\winsxs\policies folder<br />
(8.0.50.727.42)<br />
The c:\windows\winsxs\manifests folder only has the .42 version of .cat and .manifest<br />
The .manifest file (in above manifest folder) has version="8.0.50727.42" </p>
<p>Clarification: the manifest file has 2 "dependentAssembly" entries each with different versions and not the .42. I can delete 1 entry and change the version on the other to match the .42 to get a debug build that starts.</p>
<p>EDIT2:I'm also using boost and inside the DLLs there is the .762 version</p>
http://stackoverflow.com/questions/677106/visual-studio-2005-c-what-controls-the-manifest-creation/678826#6788261Answer by jim for Visual Studio 2005 - C++ - What controls the manifest creationjim2009-03-24T19:16:40Z2009-03-24T19:16:40Z<p>The version was picked up by from the Boost DLLs which were a download, pre-compiled version of Boost. Once the libraries were re-compiled (and re-installed) a re-build of the solution produced a manifest with a single version and the program linked and ran.</p>
<p>So -Check the libs and dlls that are imported into the solution for version used.</p>
http://stackoverflow.com/questions/581577/how-do-i-export-an-access-database-in-csv-format/581661#5816610Answer by jim for How do I export an Access database in CSV format?jim2009-02-24T13:05:02Z2009-02-24T13:05:02Z<p>I've numbered the lines for reference.</p>
<pre><code>1. db = "C:\Docs\LTD.mdb"
2. TextExportFile = "C:\Docs\Exp.txt"
3. strSQL = "SELECT * FROM tblMembers"
4. Set f = fs.CreateTextFile(TextExportFile, True)
</code></pre>
<p>Line 1 - is the current access database file you are working with. this case it's LTD.mdb<br>
Line 2 - is the name of the file that you are going to write/append. It's Exp.txt<br>
Line 3 - is the sql statement that will be used to collect the data.<br>
Line 4 - is the command to open the file to write to.<br></p>
<p>Change line 2 to the name of file you want.<br>
Change line 3 to the table you want to use. Select * will use all the columns if you want only a couple identify them by name. select col1, col2 ... from mytable. You will want to look into using where clauses also.</p>
<p>Change line 4 from CreateTextFile to OpenTextFile and use ForAppending to append.
<a href="http://msdn.microsoft.com/en-us/library/aa265018%28VS.60%29.aspx" rel="nofollow">MSDN VBA</a></p>
<p>I'm drawing a blank on formatting the line. One of the ways I use is modify the select statement to include commas. example select col1 & "," & col2 from mytable.</p>
<p>For UTF-8 (I don't have a working example) Try:</p>
<pre><code>utf = new String(a, 0, a.length, UTF-8);
f.WriteLine utf;
</code></pre>
<p><a href="http://www.xtremevbtalk.com/showthread.php?p=1320077" rel="nofollow">UTF-8 VBA</a></p>
http://stackoverflow.com/questions/565497/in-cygwin-how-do-i-change-the-font-color/565666#5656661Answer by jim for In Cygwin how do I change the font color?jim2009-02-19T14:55:46Z2009-02-19T14:55:46Z<p>I find the standard shell to be pretty horrible myself.</p>
<p>I download and install the rxvt package and change the cygwin.bat to launch rxvt which has nicer support of copy-cut-n-paste.</p>
<pre><code>@echo off
c:
chdir c:\data\cygwin\bin
set EDITOR=vi
set VISUAL=vi
set CYGWIN=codepage:ansi
rxvt -fn '*-courier-*-r-*-16-*' -sl 9999 -bg Black -fg Cyan -e /bin/bash -login
</code></pre>
<p>The -e and -login switch the launch shell to the rxvt one and the rest:
-fn sets a courier size 16 font (sue me)
-sl scroll lines of 9999
Black background and Cyan foreground
selecting text will fill the paste buffer automatically
the last bit (-e /bin/bash -login) launches bash and tells it that its a login shell which runs the profile setups and such.</p>
http://stackoverflow.com/questions/497461/ldap-query-failure-due-to-single-quote/562697#5626971Answer by jim for LDAP Query Failure due to single quotejim2009-02-18T20:31:11Z2009-02-18T20:31:11Z<p>Do the replace on it's own line.</p>
<pre><code>Username.Replace("'", "\'");
"Select userPrincipalName, ADsPath, Department, Mail, HomeMDB, cn, ssn FROM
'LDAP://" + DomainName + "' WHERE objectCategory = 'person' and
sAMAccountName = '" + UserName + "'";
</code></pre>
http://stackoverflow.com/questions/557432/is-it-possible-to-display-a-google-earth-map-inside-excel/557556#5575562Answer by jim for is it possible to display a Google Earth map INSIDE Excel?jim2009-02-17T16:10:54Z2009-02-17T16:10:54Z<p>Microsoft does have an ActiveX webbrowser control that I've used in the past and as Panji explains<a href="http://www.eggheadcafe.com/community/aspnet/66/10077917/webbrowser-control.aspx" rel="nofollow">how to create a web browser control in excel</a></p>
<p>Panji Tengkorak
If what you're looking for is to display the html table as it is without the need to calculate the value later you can use WebBrowser Control, do this to add the WebBrowser control on a Sheet:</p>
<ol>
<li>In Excel open the form in Design view.</li>
<li>Right-click the menu bar and then click Control Toolbox.</li>
<li>In the toolbox, click the More Controls tool. A menu appears that lists all the registered ActiveX controls in your system.</li>
<li>On the menu of ActiveX controls, click Microsoft WebBrowser Control.</li>
<li>On the sheet, click where you want to place the control.</li>
<li>Move and size the control to the area you want to display</li>
</ol>
<p>Then put this line of code anywhere you want it, it can be on a button or on your workbook event. In the following example I use button click:</p>
<p>Sub Button3_Click()
ThisWorkbook.ActiveSheet.WebBrowser1.Navigate2 "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=area+51&sll=37.0625,-95.677068&sspn=31.839416,60.732422&ie=UTF8&ll=37.237811,-115.807614&spn=0.015614,0.029655&t=h&z=15"
End Sub</p>
<p>It should be relatively simple to get coordinates from the spread sheet into the url.</p>
http://stackoverflow.com/questions/536329/is-there-a-way-to-make-transactions-or-connections-read-only-in-sql-server/536485#5364851Answer by jim for Is there a way to make transactions or connections read only in SQL Server?jim2009-02-11T12:03:38Z2009-02-11T12:03:38Z<p>Does it have to be with named users ? I have a "report" user and a "browser" user that just has select rights on most tables. Anyone that needs data uses those accounts and since they are select only I don't have to worry about them.</p>
<p>See Kern's link.</p>
http://stackoverflow.com/questions/480267/looking-for-a-good-book-on-microprocessor-internals/480516#4805160Answer by jim for Looking for a good book on microprocessor internalsjim2009-01-26T17:01:36Z2009-01-26T17:01:36Z<p>The <a href="http://rads.stackoverflow.com/amzn/click/0123706068" rel="nofollow">Hennessey and Patterson</a> book is used heavily also.</p>
http://stackoverflow.com/questions/461886/j2ee-authentication-error-handling/480027#4800271Answer by jim for J2EE Authentication Error Handlingjim2009-01-26T14:52:31Z2009-01-26T14:52:31Z<p>I use Struts so it will do forwarding for you. If you don't have a framework (why not?) you'll will have to do it manually.</p>
<p>The J2EE spec covers the j_security_check servlet.</p>
<p>The login page POSTs j_username and j_password to the j_security_check servlet. Your app will be configured to error to an unauthorized page (see web.xml) but will (initially) call a servlet. 401 or 403 will go to a forbidden page (again web.xml)</p>
<p>Inside that servlet (which extends the HttpServlet) - you will check for all that good stuff.</p>
<p>public final void doGet(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws javax.servlet.ServletException, java.io.IOException
{
// initialize the app
AppInit initializer = new AppInit();</p>
<pre><code>// get the logger
log = new Log4jWrapper(this.getClass());
// initialize the application session
HttpSession sess = request.getSession(true);
sess.setAttribute(CommonConstants.SESSION_CURR_USER_ID, request.getRemoteUser());
// initialize the JSP to forward to based on the user role
String fwdJSP = "SetupMainPage.jsp";
if (request.isUserInRole(CommonConstants.ROLE_MANAGER)) {
log.debug("User is a Manager");
}
//else other role checks - (these are users in groups in the LDAP)
// initialize the application session and set a variable to indicate that
// we are coming from a first time login (not a timeout login)
sess.setAttribute(CommonConstants.SESSION_COMING_FROM_INITIAL_LOGIN,"TRUE");
disp = getServletContext().getRequestDispatcher("SetupMainPage.jsp");
disp.forward(request, response);
</code></pre>
<p>}
//else failure </p>
<p>Unknown user</p>
<p>[11/22/08 8:54:47:993 EST] 7f6ac69c FormLoginServ E SECJ0118E: Authentication error during authentication for user s</p>
<p>right user - wrong password, but the request.getRemoteUser() will have a value</p>
<p>[11/22/08 8:56:45:082 EST] 7f51469c FormLoginServ E SECJ0118E: Authentication error during authentication for user jbsymolo</p>
<p>Unfortunately - i don't have any examples of someone locked out but I going to assume that the main security directory (LDAP) you will have an entry for the user for that.</p>
<p>This is from someone else (so I can't take credit)</p>
<p><Blockquote></p>
<p>I think this <a href="http://publib.boulder.ibm.com/...es/ae/tsec_pacs.html" rel="nofollow">page</a> describes how to do what you want to do.</p>
<p>Specifically how to retrieve the authentication exception from an arbitrary underlying authentication source (looks like Websphere calls them user registries).</p>
<p>Throwable t = com.ibm.websphere.security.auth.WSSubject.getRootLoginException();<br />
if (t != null)<br />
t = determineCause(t);</p>
<p>Where determineCause() is defined on the same page. This way, even if your server is configured to authenticate against a John Deer tractor, you will have access to the "OutOfGasLoginException" if there is one. The above code can go into the Servlet, Servlet Filter, or JSP that is redirect to by the container (as described above by jsymolon). It simply examines the exceptions and then places a corresponding friendly error message on the resulting page.
</blockquote></p>
http://stackoverflow.com/questions/446685/how-can-i-deploy-a-perl-python-ruby-script-without-installing-an-interpreter/446703#446703-3Answer by jim for How can I deploy a Perl/Python/Ruby script without installing an interpreter?jim2009-01-15T13:26:29Z2009-01-15T13:26:29Z<p>Not going to work without an install of something. A plain install of Windows just doesn't have enough good tools to do that.</p>
<p>What about submitting the CSV through email having a server process it and return the results ?</p>
http://stackoverflow.com/questions/336897/why-catch-an-exeption-just-to-throw-it-again/336956#3369561Answer by jim for Why catch an exeption just to throw it again?jim2008-12-03T12:30:28Z2008-12-03T12:30:28Z<p>One of the architectures <a href="http://blogs.msdn.com/jaredpar/archive/2008/10/20/custom-exceptions-when-should-you-create-them.aspx" rel="nofollow">(design patterns)</a> I could see this being used is where a transaction is being handled. The function does its work fails and the catch block completes the transaction to a known state (usually a roll back) then throws a user defined exception.</p>
<p>As it stands now, refactor that code to a more sane state.</p>
http://stackoverflow.com/questions/335407/how-to-enumerate-http-listeners-from-a-java-ee-web-app/336935#3369350Answer by jim for How to enumerate HTTP listeners from a Java EE web appjim2008-12-03T12:15:12Z2008-12-03T12:15:12Z<p>If I read your question correctly, you can query the <a href="http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/ServletRequest.html#getProtocol()" rel="nofollow">ServletRequest getProtocol</a> to see if the connection is coming in as HTTP or HTTPS and what version. As a bonus you can get which port.</p>
<p>Make the decision and redirect (or forward) to the app specified port. </p>
<p>For further clarification to answered; <a href="http://searchsoftwarequality.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid92_gci1236977,00.html" rel="nofollow">Enabling HTTPS communication support</a></p>
http://stackoverflow.com/questions/323907/removing-text-layer-and-replacing-with-image/323946#3239461Answer by jim for removing text layer and replacing with imagejim2008-11-27T14:45:02Z2008-11-27T14:45:02Z<p>What I do is use DIVs and CSS to set the display parameter to none for hiding and block to show.</p>
<pre><code><div id="hider" style="display:block"> contents here </div>
</code></pre>
<p>and use javascript to show or hide the contents</p>
<pre><code>...
// find the element and it's stored in "elem"
vis = elem.style;
if (showit) {
vis.display = 'block';
} else {
vis.display = 'none';
}
</code></pre>
<p>where showit is a boolean that indicates what you want to do. You can also check the vis.display and toggle it also. That will show a hidden div and hide a shown div.</p>
http://stackoverflow.com/questions/305287/how-to-see-the-contents-of-windows-library-lib/305338#3053382Answer by jim for How to See the Contents of Windows library (*.lib)jim2008-11-20T13:46:02Z2008-11-20T14:32:38Z<p><a href="http://support.microsoft.com/kb/177429" rel="nofollow">DUMPBIN</a> /EXPORTS Will get most of that information and hitting MSDN will get the rest.</p>
<p>Get one of the Visual Studio packages; C++</p>
http://stackoverflow.com/questions/291728/open-source-address-scrubber/298705#2987052Answer by jim for Open Source Address Scrubber?jim2008-11-18T13:23:07Z2008-11-18T13:23:07Z<p>Since I work in the mailing business ...</p>
<p>A mailable address is not geo-coding. One allows the USPS to deliver mail to and the other tells you where on earth that point is. The USPS does not geo-code their mailable addresses. It's useful for marking areas/regions of people for targeting.</p>
<p>You're not buying a license to the software, you're buying the data. The post office has lots of rules especially if you're doing this commercially and trying to get a better rate than first class. See <a href="http://pe.usps.com/text/dmm300/dmm300_landing.htm" rel="nofollow">USPS Domestic Mail Manual</a> for the complete list of rules. The USPS moves zips and households between zips all the time. The company (I work for) pays the USPS for its updated mailing list so we can keep our DBs updated. Weekly.</p>
<p>Back to your question. Do you want to change the data into a common format (street -> st) or are you looking for duplicates and want to only store real mailable addresses ?</p>
<p>for common format; you can break the address into pieces, clean up the white space and apply a dictionary of terms/translations. Then apply some sql to find the duplicates. Keep in mind households (1 main st) are different from persons (john doe, 1 main st).</p>
<p>for the mailable addresses, well some of you (the readers) won't like this answer, but you want information and that isn't free. Someone spends time or money to acquire and maintain these lists. So, find a business model to acquire funds for the list or go to someone who will do it for you. <a href="http://valassis.com/1024/Services/datamail.aspx" rel="nofollow">Data and mail management</a></p>
<p>Realistically, <a href="http://www.semaphorecorp.com/" rel="nofollow">Semaphore</a> is pretty cheap, just keep in mind that the address db will have to be updated quarterly and $19/quarter is pretty cheap.</p>
<p>Another Address Scrubbing product. <a href="http://www.businessobjects.com/product/catalog/postalsoft_solutions/" rel="nofollow">SAP PostalSoft</a>. I don't know what the data will cost though.</p>
http://stackoverflow.com/questions/204742/what-is-the-best-way-to-reduce-cyclomatic-complexity-when-validating-data/204769#2047691Answer by jim for What is the best way to reduce cyclomatic complexity when validating data?jim2008-10-15T13:49:03Z2008-11-11T13:04:22Z<p>The first question is: Why are you "hung" up on CC ? It's a tool to evaluate how dense the code is and a rule of thumb should be "not too high of a cc number".</p>
<p>It's probably hitting all those "IF"s and bringing up that number - so reduce the number of ifs by calling a wrap function that extracts the data from the result set which handles the null or change the query so it doesn't return nulls.</p>
<p>Keep in mind that nulls do provide information and are not useless. For example Republican or Democrat ? using null says neither choice.</p>
http://stackoverflow.com/questions/234909/pl-sql-for-parsing-edi-x12-ncpdp-hl7/240780#2407802Answer by jim for PL/SQL for parsing EDI (X12, NCPDP, HL7)jim2008-10-27T17:41:14Z2008-10-27T17:41:14Z<p>While I never stored the HL7 message as is in a database it should be possible.</p>
<p>The idea of HL7 (and XML) is that it's a common format for systems to use to transfer information. It was never designed as a "storable" item. Usually, I would pull the data out of the warehouse format into a particular HL7 message and send it to the MQHub/eGate for transmitting. On the return do the opposite extract the fields I'm warehousing and save those. I.E. HL7 should not be stored so I don't have one.</p>
<p>Enough of the lecture. :)</p>
<p>I would suggest a function/procedure per segment and split the message into a temp table.</p>
<p><a href="http://articles.techrepublic.com.com/5100-10878_11-5259821.html" rel="nofollow">example of split in oracle</a></p>
http://stackoverflow.com/questions/237269/what-are-the-custom-targets-you-all-run-when-using-ant-to-build-project/240701#2407011Answer by jim for What are the custom targets you all run when using ant to build project?jim2008-10-27T17:18:53Z2008-10-27T17:18:53Z<p>I think that it's a great idea and use it myself. That way I'll never forget to run it.</p>
<p>I also keep the reports for a decent amount of time and eventually create a spreadsheet of "progress".</p>
<p>In your main ant task - call another task to do "whatever"
</p>
<p>and
JDepend.xml ...</p>
<p>
</p>
<pre><code><target name="statsAll">
<!-- master file that describes where everything is -->
<property file="./ant/ant-global.properties" prefix="ant-global" />
<tstamp>
<format property="gen.time" pattern="yyyyMMdd_hh"/>
</tstamp>
<echo message="LOG:./ant/logs/jdepend.${version.FILETAG}.${gen.time}.rpt"/>
<!-- generate stats to see if we're improving -->
<jdepend
outputfile="./ant/logs/jdepend.${version.FILETAG}.${gen.time}.rpt" >
<exclude name="java.*"/>
<exclude name="javax.*"/>
<classespath>
<pathelement location="./jar" />
</classespath>
<classpath location="./jar" />
</jdepend>
</target>
<target name="doJDepend" depends="getVersion,statsAll">
<echo message="FTP'ing report"/>
<ftp verbose="yes" passive="yes" depends="yes"
remotedir="/videojet/metrics" server="xxxxx"
userid="xxxx" password="xxxxx"
binary="no"
systemTypeKey="UNIX">
<fileset dir="./ant/logs/" casesensitive="no">
<include name="**/jdepend.${version.FILETAG}*.rpt"/>
<exclude name="**/*.txt"/>
</fileset>
</ftp>
</target>
</code></pre>
<p></p>
<p><a href="http://www.codinghorror.com/blog/archives/000149.html" rel="nofollow">Magic build machine</a></p>
http://stackoverflow.com/questions/229324/mac-windows-switching/229396#2293960Answer by jim for Mac/Windows Switchingjim2008-10-23T11:31:37Z2008-10-23T11:31:37Z<p>A little bit of cygwin to take the pain out of windows. Any virtual environment will work. A mac can run parallels hosting windows with the enforced outlook requirements.</p>
http://stackoverflow.com/questions/222187/how-to-check-jre-version-prior-to-launch/222372#2223720Answer by jim for How to check JRE version prior to launch?jim2008-10-21T15:51:57Z2008-10-22T09:45:26Z<p>For the launcher - Check the version in there.</p>
<p>Inside the APP; as above use System.getProperties();</p>
<pre><code>Properties sProp = java.lang.System.getProperties();
String sVersion = sProp.getProperty("java.version");
sVersion = sVersion.substring(0, 3);
Float f = Float.valueOf(sVersion);
if (f.floatValue() < (float) 1.4) {
System.out.println("Java version too low ....");
System.exit(1);
}
...
</code></pre>
http://stackoverflow.com/questions/172151/which-data-structure-for-linking-text-with-audio-in-java/221661#2216611Answer by jim for Which data structure for linking text with audio in Javajim2008-10-21T12:30:06Z2008-10-21T12:30:06Z<p>To highlight part of word sounds like you're getting into <a href="http://en.wikipedia.org/wiki/Phonetics" rel="nofollow">phonetics</a> which are sounds that make up words. It's going to be really difficult to turn a sound file into something that will "read" a text. Your best bet is to use the text itself to drive a phonetics based engine, like FreeTTS which is based off of the <a href="http://java.sun.com/products/java-media/speech/forDevelopers/jsapi-guide/index.html" rel="nofollow">Java Speech API</a>.</p>
<p>To do this you're going to have to take the text to be read, split it into each phonetic syllable and play it. so "syllable" is "syl" "la" "ble". Playing would be; highlight syl, say it and move to next one.</p>
<p>This is really "old-skool" its been done on the original Apple II the same way.</p>
http://stackoverflow.com/questions/212302/how-to-remove-classpath-variables-from-was-module/221619#2216191Answer by jim for How to remove classpath variables from WAS modulejim2008-10-21T12:11:13Z2008-10-21T12:11:13Z<p>There are a couple of spots where libraries are referenced.</p>
<p>I assume that you want test to match prod.</p>
<p>Start the admin console (on test).
There are libs defined on the Environment > Shared Libraries area and also in the Applications > Ent. Apps. > "my ear" > (additional properties) Libraries section.</p>
<p>See if it's defined in the Env > Shared Libraries area and remove it.</p>
http://stackoverflow.com/questions/221570/what-code-highlighting-libs-are-there-for-java/221577#221577-1Answer by jim for What code highlighting libs are there for Java?jim2008-10-21T11:54:20Z2008-10-21T11:54:20Z<p>There are lots of editors that will highlight: Eclipse, Vi, Emacs, etc</p>
<p>What are you trying to do? For source code, the editor will highlight for you you don't need a special library</p>
http://stackoverflow.com/questions/187245/creating-a-site-map-of-an-ftp-site/220396#2203961Answer by jim for Creating a site map of an FTP sitejim2008-10-21T00:19:36Z2008-10-21T00:19:36Z<p>How automatic do you want it to be ? and in What language ?</p>
<p>I've used the Perl Net::FTP module to craft a spider to walk the structure and report differences.</p>
<p><a href="http://www.example-code.com/perl/ftp_listDirectory.asp" rel="nofollow">Perl ftp list directory</a></p>
http://stackoverflow.com/questions/220119/database-agnostic-jdbc-table-import-export-to-files/220327#2203270Answer by jim for Database agnostic jdbc table import/export to files?jim2008-10-20T23:41:18Z2008-10-20T23:41:18Z<p>DBUnit looks good, however you probably are not going to beat the vendor tools for import/export. If you are going to be importing or exporting 100,000+ rows it's probably best to use impdp/expdp.</p>
<p>I've also done strange things like building an insert statement from a sql query and then using sqlplus to process. [select 'insert into table values ( ...'||column||' ...) ] But i was being lazy and didn't want to create a sqlldr or jdbc insert program.</p>
<p>I've used perl the same way for when i needed larger imports.</p>
http://stackoverflow.com/questions/1398436/c-interview-testing-potential-candidates/1398495#1398495Comment by jim on C++ interview - testing potential candidates.jim2009-09-09T13:13:20Z2009-09-09T13:13:20ZFantastic read and definitely makes a valid point on C++ and large projects.http://stackoverflow.com/questions/1398421/how-to-speed-up-this-query/1398499#1398499Comment by jim on How to speed up this query?jim2009-09-09T12:28:58Z2009-09-09T12:28:58ZDon't add indexes blindly. See Lieven's answer. Add indexes blindly can hurt performance as each index needs to be maintained. In some cases like small tables this will hurt as the IO used to maintain could be used somewhere else. Sometimes a full table scan on a small table is better than indexes.http://stackoverflow.com/questions/763464/whats-the-hardest-program-youve-written/763486#763486Comment by jim on What's the HARDEST program you've written?jim2009-05-07T13:13:04Z2009-05-07T13:13:04Zback in the 90's - which was without a common framework like WxWidgetshttp://stackoverflow.com/questions/763832/programming-riddle-counting-down-without-subtracting/769526#769526Comment by jim on Programming Riddle: Counting down without subtracting.jim2009-04-22T13:33:18Z2009-04-22T13:33:18Zgot a chuckle out of that one...http://stackoverflow.com/questions/758261/whats-the-meaning-of-lifeComment by jim on What's the meaning of life?jim2009-04-16T22:18:38Z2009-04-16T22:18:38Zwhy do you ask ?http://stackoverflow.com/questions/694475/how-to-hook-to-events-messages-in-windows-using-python/705260#705260Comment by jim on how to hook to events / messages in windows using pythonjim2009-04-12T13:17:05Z2009-04-12T13:17:05Zand there is nothing there that addresses the question. Bin - Don't blogspam.http://stackoverflow.com/questions/621884/database-development-mistakes-made-by-app-developers/621891#621891Comment by jim on Database Development Mistakes Made by App Developers jim2009-04-09T09:35:10Z2009-04-09T09:35:10ZDo not use Social Security Numbers as keys ! (Unless you are the Social Security Administration) Yes they are unique however they CAN change and they can be "reused".http://stackoverflow.com/questions/728936/how-can-i-implement-something-like-the-diggbar-using-asp-net-mvcComment by jim on How can I implement something like the DiggBar using ASP.NET MVC?jim2009-04-08T19:09:15Z2009-04-08T19:09:15ZYes - but that is "opt-out" thus forcing the user to do additional work. Digg may allow that but lots of sites don't.http://stackoverflow.com/questions/728936/how-can-i-implement-something-like-the-diggbar-using-asp-net-mvcComment by jim on How can I implement something like the DiggBar using ASP.NET MVC?jim2009-04-08T11:47:37Z2009-04-08T11:47:37ZHow about - I don't like it and will disable it through greasemonkey. You're sucking up my screen space - rethink your design. Note:if you're thinking of framing your site - it's somewhat ok but don't pull in other content inside the frame. (aka digg style)http://stackoverflow.com/questions/713247/what-is-the-best-way-to-programatically-detect-porn-images/713314#713314Comment by jim on What is the best way to programatically detect porn images?jim2009-04-03T10:37:40Z2009-04-03T10:37:40ZI can't remember the study either - but it did an edge detection and matched what appeared to be patterns of vulvas rotated or obscured. Quite interesting from an image processing aspect. http://stackoverflow.com/questions/709330/why-is-my-applet-thread-dying-with-an-unsupportedoperationexceptionComment by jim on Why is my Applet Thread dying with an UnsupportedOperationException?jim2009-04-02T12:15:09Z2009-04-02T12:15:09Zlook in <a href="http://java.sun.com/developer/technicalArticles/Threads/applet/" rel="nofollow">java.sun.com/developer/technicalArticles/…</a> for exampleshttp://stackoverflow.com/questions/709364/how-can-i-add-a-role-in-code-j2eeComment by jim on How can I add a role in code, J2EEjim2009-04-02T11:48:54Z2009-04-02T11:48:54ZCan you clarify? do you want an application to be able to modify another apps security roles or you want to change the current users role (ala sudo)?http://stackoverflow.com/questions/598053/input-and-output-from-parallel-port/598110#598110Comment by jim on Input and output from parallel port.jim2009-04-01T13:31:42Z2009-04-01T13:31:42ZThe assignment is to develop a replacement for inpout32.dll ? That's a nasty little problem - What's the course ? Oh, and google windows inpout32.dll for LOTS of hints to accomplish that task.http://stackoverflow.com/questions/696799/what-is-an-acceptable-time-to-first-byteComment by jim on What is an acceptable time to first byte?jim2009-03-30T11:31:01Z2009-03-30T11:31:01Zok that's a "busy" page. To rule out any of the delays for processing the included items, Please create a "dead simple" "hello world" page. This should be about 50 bytes - and then time that. If that's still >4sec then yes you may a sever issues.http://stackoverflow.com/questions/677106/visual-studio-2005-c-what-controls-the-manifest-creation/679770#679770Comment by jim on Visual Studio 2005 - C++ - What controls the manifest creationjim2009-03-25T10:27:01Z2009-03-25T10:27:01ZYep - I've done that but got bitten by MFC not wanting to link. I'm looking to replace the MFC printer classes and dump MFC completely.