User jonhwilliams - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T08:29:43Zhttp://stackoverflow.com/feeds/user/111411http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1026630/getting-a-list-of-all-classloaders-in-a-jvm/1188227#1188227-1Answer by jonhwilliams for Getting a list of all classloaders in a JVMjonhwilliamshttp://stackoverflow.com/users/1114112009-07-27T13:45:14Z2009-07-28T03:06:17Z<p>Have you tried <a href="http://wlst-bea-weblogic-tcl.blogspot.com/2009/01/weblogic-bea-wlst.html" rel="nofollow">JConsole</a>? (not for production systems)</p>
http://stackoverflow.com/questions/940432/how-to-load-anothers-service-certificate-to-my-weblogic-truststore/1188528#11885280Answer by jonhwilliams for How to load another's service certificate to my WebLogic truststore?jonhwilliamshttp://stackoverflow.com/users/1114112009-07-27T14:33:58Z2009-07-28T03:04:58Z<p>I did <a href="http://jonwilliams.wordpress.com/2009/07/27/configure-ssl-for-nodemanager/" rel="nofollow">something similar</a>--import a self-signed certificate into custom keystore on 9.x.</p>
http://stackoverflow.com/questions/955318/suspend-weblogic-datasource-on-command-line/1188592#11885920Answer by jonhwilliams for Suspend weblogic datasource on command linejonhwilliamshttp://stackoverflow.com/users/1114112009-07-27T14:46:14Z2009-07-28T03:03:45Z<p>You can <a href="http://edocs.bea.com/wls/docs100/ConsoleHelp/taskhelp/console/RecordWLSTScripts.html" rel="nofollow">record your script</a>... might be easier than writing the batch file in some cases.</p>
<p>You can get help with the methods via <a href="http://e-docs.bea.com/wls/docs100/javadocs/weblogic/security/service/JDBCResource.html" rel="nofollow">javadocs</a>.</p>
http://stackoverflow.com/questions/1180030/is-this-plan-for-preventing-iphone-app-client-spoofing-sound/1180277#11802770Answer by jonhwilliams for Is this plan for preventing iPhone app client spoofing sound?jonhwilliamshttp://stackoverflow.com/users/1114112009-07-24T21:35:25Z2009-07-24T21:35:25Z<p>You should look into the Entrust Technologies (www.entrust.com) product line for two-factor authentication tied to all sorts of specifics (e.g., device, IMEI, application serial number, user ID, etc.)</p>
http://stackoverflow.com/questions/1180147/how-to-implement-a-kill-switch-in-a-native-windows-program/1180222#11802220Answer by jonhwilliams for How to implement a kill switch in a native windows programjonhwilliamshttp://stackoverflow.com/users/1114112009-07-24T21:23:00Z2009-07-24T21:23:00Z<p>What about implementing something from the pstools of sysinternals ?</p>
http://stackoverflow.com/questions/989017/scripting-in-java-javascript-from-a-server-side-class-file-in-java-1-50scripting in java - javascript from a server-side class file in Java 1.5jonhwilliamshttp://stackoverflow.com/users/1114112009-06-12T20:58:33Z2009-06-13T03:40:49Z
<p>I have three types of <strong>get</strong> requests that are delivered to a <strong>class</strong> file on web application from a mobile device. Because the mobile device provides no cookies, the log file hit only has </p>
<pre><code>in.ter.nal.ip ser.ver.i.p:port 2009-06-05 09:14:44 GET /applicationname/mobiledevicexml reqtype=login&userid=xx### 200 87 - MercuryMobile/1.0 CFNetwork/342.1 Darwin/9.4.1 cookieArrayLength=0;
</code></pre>
<p>If I can instantiate javascript in my class file, and generate a javascript function call to urchinTracker() from inside the class file, I can replace that useless cookieArrayLength=0; with some useful data urchin can read from the log file into analytics reports.
We have been looking at <em>scripting in Java with Rhino</em>; Safari Bookshelf has: </p>
<blockquote>
<p>Scripting in JavaTM: Languages,
Frameworks, and Patterns</p>
</blockquote>
<p>which helped us immediately demo that we can run javascript in class files --this works out-of-the-box on Java 6. </p>
<p>Anyone know any resources for scripting with Rhino on Java 1.5 or 1.4? </p>
<p>Alternately, any suggestions for running javascript from java 1.5 would be appreciated.</p>
http://stackoverflow.com/questions/102083/whats-the-best-tool-to-find-and-replace-regular-expressions-over-multiple-files/989066#9890660Answer by jonhwilliams for What's the best tool to find and replace regular expressions over multiple files?jonhwilliamshttp://stackoverflow.com/users/1114112009-06-12T21:13:39Z2009-06-12T21:13:39Z<p>I have the luxury of Unix and Ubuntu; In both, I use <strong>gawk</strong> for anything that requires line-by-line search and replace, especially for line-by-line for substring(s).
Recently, this was the fastest for processing 1100 changes against millions of lines in hundreds of files (one directory)
On Ubuntu I am a fan of regexxer</p>
<pre><code> sudo apt-get install regexxer
</code></pre>
http://stackoverflow.com/questions/888430/weblogic-how-to-bring-server-down-for-maintenance/900874#9008741Answer by jonhwilliams for Weblogic - how to bring server down for maintenance?jonhwilliamshttp://stackoverflow.com/users/1114112009-05-23T04:52:16Z2009-05-23T04:52:16Z<p>My first thought is to proxy requests through nginx or apache (or tomcat for that matter)
My second thought is that you put the managed severs in a cluster, and when the app goes offline, cluster resolves to the managed server that displays Under Maintenance page.
Third thought is if dns resolves to myserver.mydomain.com:9333/ you can stop one managed server and start the other and your customers won't know the diff
wonder how cache in the customer browser affects this?</p>
http://stackoverflow.com/questions/989017/scripting-in-java-javascript-from-a-server-side-class-file-in-java-1-5/989731#989731Comment by jonhwilliams on scripting in java - javascript from a server-side class file in Java 1.5jonhwilliamshttp://stackoverflow.com/users/1114112009-07-24T21:15:17Z2009-07-24T21:15:17ZWe followed Rhino docs to run JavaScript interpreter from Java 1.4 and 1.5. http://stackoverflow.com/questions/989017/scripting-in-java-javascript-from-a-server-side-class-file-in-java-1-5/989880#989880Comment by jonhwilliams on scripting in java - javascript from a server-side class file in Java 1.5jonhwilliamshttp://stackoverflow.com/users/1114112009-07-24T21:12:50Z2009-07-24T21:12:50ZThis is correct. __utm.js has dependancies on various browser objects.
Thanks!http://stackoverflow.com/questions/989017/scripting-in-java-javascript-from-a-server-side-class-file-in-java-1-5/989880#989880Comment by jonhwilliams on scripting in java - javascript from a server-side class file in Java 1.5jonhwilliamshttp://stackoverflow.com/users/1114112009-06-16T21:39:17Z2009-06-16T21:39:17Znot sure yet, but was unable this morning to pass values via urchinTracker() through javax.scripting (Java 6 test environment) so it is unlikely to work on dev. will know by tomorrow...http://stackoverflow.com/questions/989017/scripting-in-java-javascript-from-a-server-side-class-file-in-java-1-5/989731#989731Comment by jonhwilliams on scripting in java - javascript from a server-side class file in Java 1.5jonhwilliamshttp://stackoverflow.com/users/1114112009-06-16T21:29:05Z2009-06-16T21:29:05Zthanks for the resource links; we are able to use the stripped-down Rhino in Java 6 via javax.scripting to compile test.js (javascript) to class file and call tests() locally but have not been successful in compiling the __utm.js and calling urchinTracker()
compiling from source and trying again, but at the moment it looks like
/users/58787/unknown-google may be right in comment below.