-
Recent Posts
Recent Comments
Archives
- March 2014
- March 2013
- August 2012
- June 2012
- November 2011
- September 2011
- August 2011
- July 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
Categories
- Aperture
- chm
- CLR
- COBOL
- cowon
- CSharp
- ebook
- ePub
- firmware
- fun
- GAS
- go
- gpl-2
- Heroku
- IDE
- India
- iriver
- iriver story
- iWeb
- Java
- Java
- JVM
- LightSwitch
- MacBook
- Metro
- Microsoft Visual Studio
- Mono
- MonoDroid
- Nokia
- NUnit
- Olympus
- pogoplug
- rsync
- Scripting
- SIGNTOOL
- SQL
- TechEd
- Tips
- TypeSafety
- Uncategorized
- VB.Net
- vim
- VisualCOBOL2010
- Windows Azure
- Windows Azure
- Windows Batch
- Windows Mobile
- Windows8
Meta
Category Archives: JVM
Heroku add Java support but dumps containers!
Recently I have reviewing various cloud solutions and what impact this has on the way you create/architect applications and I have come to the conclusion they are often way too complicated for most existing applications to be effectively hosted in … Continue reading
Posted in Heroku
Comments Off on Heroku add Java support but dumps containers!
Scripting Languages and COBOL
The use of scripting languages with other languages has increased over the last couple of years, from a simple case of interoperability, reuse of scripting code to allowing your code to customised via the user of external scripts. All of … Continue reading
Posted in COBOL, Java, JVM, Scripting, Tips
Tagged COBOL, javascript, javax.script, JSR 223, Micro Focus, Net Express, ScriptEngine, ScriptEngineManager, Scripting, ScriptObject
2 Comments
Using sun.jvmstat.monitor to see active Java processes
Monitor’ing Java processes can be achieved using the jvmstat monitor classes provided in the JVM. The documentation is a bit sketchy but with a little experimenting it can be done. Below is a little example that shows you how to … Continue reading
Java process id via java.lang.management
While working on a project recently I need to find out the current process of the active running Java process (for tracing/auditing), however I never found a 100% perfect solution but did come across an acceptable solution to use the … Continue reading
Type Safety and COBOL
Having read a recent bog about COBOL and type-safety, I though I would jot down some comments. ANS85 COBOL is naturally is type-unsafe due as every data item being part of one memory region (or storage area), because of this … Continue reading
Posted in CLR, COBOL, JVM, TypeSafety
Tagged COBOL, TypeSafety
Comments Off on Type Safety and COBOL
Fiddling with the JVM
Java is a very safe language if used in a normal way, however just like the CLR it can be used in an unsafe manor. The main reason for using Java in a unsafe manor is performance, some unsafe operations … Continue reading
Object COBOL/Java default exception handler
While working on some support recently for our compiler (Micro Focus COBOL compiler that is), I became annoyed with the lack of a reasonable error messages/stack trace output from our Java/COBOL Object support. I have no idea why our default … Continue reading