<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-20852267</id><updated>2011-07-28T10:10:24.046-07:00</updated><category term='Test cases'/><category term='methodology'/><category term='project management'/><category term='JUnit'/><category term='Java'/><category term='development'/><title type='text'>Ramblings of a developer</title><subtitle type='html'>Welcome to my blog.  
A peaceful place to contemplate the passing of time and world domination. Or maybe... Just a place to put helpful information I find during my day.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-20852267.post-3604410087305287222</id><published>2010-05-14T06:22:00.000-07:00</published><updated>2010-05-14T06:42:24.752-07:00</updated><title type='text'></title><content type='html'>I will branch away from my previous post for a quick issue I ran into.  I was working with the simpleframework xml packages on a new project.  During the deserializing of a response message in xml I ran across an issue which the exception was unclear about.  The exception was &lt;br /&gt;Caused by: org.simpleframework.xml.core.Element Exception: Unable to determine type for @org.simpleframework.xml.ElementList&lt;br /&gt;&lt;br /&gt;At first glance the error looked like it was due to either a missing element in the xml or the compile of my classes was incorrect.  It was actually neither.  The error was due to my definition class for the parent element contained a duplicate definition of a child element which didn't belong.&lt;br /&gt;&lt;br /&gt;Example of xml&lt;br /&gt;&amp;lt;messageNode&gt;&lt;br /&gt;   &amp;lt;element1&gt;&lt;br /&gt;     &amp;lt;element2/&gt;&lt;br /&gt;  &amp;lt;element1/&gt;&lt;br /&gt;  &amp;lt;element3/&gt;&lt;br /&gt;&amp;lt;messageNode/&gt;&lt;br /&gt;&lt;br /&gt;code snipit&lt;br /&gt;public abstract class MessageNode  &lt;br /&gt;    @Element(name="element1", required=false,data=false )&lt;br /&gt; private Element1 element1;&lt;br /&gt;    @Element(name="element3", required=false,data=false )&lt;br /&gt; private Element3 element3;&lt;br /&gt;&lt;br /&gt;public abstract class Element1&lt;br /&gt;    @Element(name="element2", required=false,data=false )&lt;br /&gt; private Element2 element2;&lt;br /&gt;    @Element(name="element3", required=false,data=false )&lt;br /&gt; private Element3 element3;&lt;br /&gt;&lt;br /&gt;As you can see the definition of element3 is included in both class definitions.  The simple framework xml creates a map of the nodes.  when an element is included this way it creates an issue with the values stored in the map.  My suggestion when you receive this error is to do a file search for the string of the element name.  Double check the definition of the expected element is in the appropriate place.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-3604410087305287222?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/3604410087305287222/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=3604410087305287222' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/3604410087305287222'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/3604410087305287222'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2010/05/i-will-branch-away-from-my-previous.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-4923147584884812289</id><published>2010-04-16T16:47:00.000-07:00</published><updated>2010-04-21T16:30:34.104-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><category scheme='http://www.blogger.com/atom/ns#' term='development'/><category scheme='http://www.blogger.com/atom/ns#' term='methodology'/><category scheme='http://www.blogger.com/atom/ns#' term='project management'/><category scheme='http://www.blogger.com/atom/ns#' term='JUnit'/><category scheme='http://www.blogger.com/atom/ns#' term='Test cases'/><title type='text'></title><content type='html'>I have let this blog sit for too long.  I am going to attempt to write about the frustrations of development and ways they can be resolved.  My first series will be about methodology.  A word more foul than workflow.  Both words used by those who think all problems can be solved by the wave of a WYSIWIG wand.  &lt;br /&gt;&lt;br /&gt;Methodologies can make or break a project, a team and companies.  I view them, as many do, as effective ways to kill a project.  The issue is most development methodologies require heavy paperwork.  Often times resulting in long expensive meetings to produce documentation which ends up being more expensive than most realize.  Nothing kills a project quicker than paying for large groups of people reading to each other.  Money and precious time quickly become an issue if you design an enterprise service before you implement it.   &lt;br /&gt;&lt;br /&gt;Developing applications can be unpredictable.  The issue is, some stakeholders want to think it is.  The only way I have ever know a development effort to be successful is to keep it small to start, and grow it over time.  Success on a project should never be measured by how many buffalo it can kill by a due date, rather by its small incremental accomplishments.  The best analogy I can think of is, you can dream about what is at the other end but unless you start walking there it will always be a dream.  Sometimes convincing all members of the team of this is more fight than it is worth.&lt;br /&gt;&lt;br /&gt;   &lt;br /&gt;start with test cases. &lt;br /&gt;&lt;br /&gt;Everyone on the team needs to understand the true importance of this one simple item.  JUnit or another testing tools can quickly prove their time and worth. It is an easy and effective way to  create applications which manage themselves.  This doesn't mean they don't need attention.  More like having a good pet which has self control.  Testing should be used not just to show the code works.  It should show how it breaks also.  A good test case should show people how to use the code you wrote.  Think of it as teaching someone what it is the code does, ensuring they know when they misuse it.&lt;br /&gt;&lt;br /&gt;Establishing a sync, test and if its green, release process. &lt;br /&gt;&lt;br /&gt;This sounds simple however, for people are unaccustomed to using a Complete JUnit testing environment this can become an issue, fast.  This process is comparable to a math equation.  You have to be diligent to follow the process or you get the problem wrong.  The order of operation is just as important as the execution of each step. Just because you only made a small change to the code you are working on, does not mean you didn't cause issues on a larger scale.  &lt;br /&gt;&lt;br /&gt;Each person is responsible for taking turns syncing, running and fixing all test which are broke, releasing code which is completely clean and tested.  When everyone does their part by following good testing practices, taking solid steps forward quickly reveals a solid product.  &lt;br /&gt;&lt;br /&gt;Monitoring the project code base can not be trusted to JUnit alone.  Two of them I have found to be very useful are Emma and SoapUI.  Emma is wonderful for keeping a close eye on the code base.  If you use an IDE like Eclipse, you can use both of these tools as plugins.  &lt;br /&gt;&lt;br /&gt;Running JUnit tests as code coverage gives very accurate percentage reports showing which classes need more testing.  However, to my knowledge, it doesn't catch positive and negative situations for testing coverage.  The feature of highlighting untested lines of code makes it quick to view areas of concern.  &lt;br /&gt;&lt;br /&gt;SoapUI has a nice feature of creating xml files containing testing information.  I have become accustom to creating a SoapUI project in the Java view.  From here you can sync it with a repository for sharing with others.  The application I am currently working on uses SOAP messages as an interface.  With SoapUI I can create tests containing test data which can be reused.  Both tools are defiantly worth looking into.  &lt;br /&gt;&lt;br /&gt;Everyone on the team needs to pick a technology&lt;br /&gt;&lt;br /&gt;This is not done to pigeon hole anyone but to bring the team up to speed on it quickly.  This is a time to learn and offer the ability to create a passion for the technology.  Once an individual of the team is ready they should then educate the team with what they found, how it works and give a plus minus analysis to the group.  Above all everyone needs to have an open mind to learn everything they don't know and teach everything they know.&lt;br /&gt;&lt;br /&gt;I will continue this soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-4923147584884812289?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/4923147584884812289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=4923147584884812289' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/4923147584884812289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/4923147584884812289'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2010/04/i-have-let-this-blog-sit-for-too-long.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-1130764718296860653</id><published>2008-07-25T08:07:00.000-07:00</published><updated>2008-09-26T07:02:37.456-07:00</updated><title type='text'></title><content type='html'>&lt;div id="rk_2" style="text-align: center;"&gt;&lt;font id="rk_20" size="4"&gt;&lt;b id="rk_21"&gt;&lt;font id="w_gx" size="5"&gt;Unca Don Foundation&lt;/font&gt;&lt;br id="t14_"&gt;&lt;/b&gt;&lt;/font&gt;&lt;/div&gt;&lt;div id="huc0" style="padding: 1em 0pt; text-align: center;"&gt;&lt;img id="vxmp0" style="width: 258px; height: 262px;" src="http://docs.google.com/File?id=dfkrvwb_92dgq95pcs_b"&gt;&lt;br id="fxii"&gt;&lt;/div&gt;&lt;font id="fxii0" size="4"&gt;&lt;b id="fxii1"&gt;Why&lt;/b&gt;&lt;/font&gt;&lt;br id="fxii2"&gt;On Friday June 26th, one of the greatest men I have ever known passed away, Don Newman.  He was survived by his wife Brenda and 15 year old son Spencer.  I don't know what to say,  scream, shout and cry.  So I am creating a scholarship fund in his name.  The scholarship fund will assist students interested in bettering the world in the study of marine biology and oceanography.  It will be available for students of the Las Vegas high school he taught at and to attend University of Southern California.  &lt;br id="byfd"&gt;&lt;br id="byfd0"&gt;&lt;font id="byfd1" size="4"&gt;&lt;b id="byfd2"&gt;My Plan&lt;/b&gt;&lt;/font&gt;&lt;br id="byfd3"&gt;The site &lt;b id="jmn4"&gt;&lt;a title="The Unca Don scholarship fund" target="_blank" href="http://uncadon.org" id="tzjo"&gt;uncadon.org&lt;/a&gt;&lt;/b&gt;  will be the home base for my operations.  There will be a page for donations, one for a mailing list plus information on the status of the scholarship fund.  Because it takes money to make money I will be taking non-tax deductible donations until I receive enough to launch the scholarship fund.  The money will be used for lawyers and accountant fees and any other money donated will be used as basis in the scholarship fund.  I am expecting the model of the scholarship fund to support itself by opening a bank account and using the interest generated by the principal to fund the scholarship.  &lt;br id="amk8"&gt;&lt;br id="wzhb"&gt;&lt;font id="wzhb0" size="4"&gt;&lt;b id="wzhb1"&gt;Thank You&lt;/b&gt;&lt;/font&gt;&lt;br id="amk80"&gt;What ever you can do to help will be appreciated.  You will be able to contact me through the website or by the address and phone number below.  I assure you I will maintain and use donations with care and honor.  This is something I feel strongly about because I want it to be a reflection of the love he gave me.  I was lucky to know him.  Most people never know someone as kind, gentle, funny and smart as him.  I am blessed to have had so many great times with him.  He was special to me and everyone around him.  He was my hero, my uncle Don.&lt;br id="su18"&gt;&lt;br id="su180"&gt;Brent Adkisson&lt;br id="su181"&gt;&lt;br id="fj0_"&gt;&lt;br id="tu2t"&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-1130764718296860653?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/1130764718296860653/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=1130764718296860653' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/1130764718296860653'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/1130764718296860653'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2008/07/unca-don-foundation-why-on-friday-june.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-5242060395451123013</id><published>2008-04-28T06:30:00.000-07:00</published><updated>2008-04-28T06:38:10.420-07:00</updated><title type='text'></title><content type='html'>I have also been working on some J2ME things.  If you are using the Sun Wireless tool kit, Eclipse has a great plugin for it.  To get it in eclipse go to Help&gt;Software Updates&gt;Find and Install&gt;Search for new features to install&gt;New Remote Site... and place this url in the dialog http://eclipseme.org/updates.&lt;br /&gt;&lt;br /&gt;I have only noticed one issue once in a while it will give an error (failed to get library information).  If this happens edit the properties of the project click on J2ME and click Manage Devices This will refresh the link to the libraries and get you moving on your way.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-5242060395451123013?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/5242060395451123013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=5242060395451123013' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/5242060395451123013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/5242060395451123013'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2008/04/i-have-also-been-working-on-some-j2me.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-5151746229984522795</id><published>2008-04-28T06:19:00.000-07:00</published><updated>2008-04-28T06:30:16.118-07:00</updated><title type='text'></title><content type='html'>Well I have been busy... I guess... it seems like it anyway.  Let me catch up on a couple of things.  &lt;br /&gt;&lt;br /&gt;I gave a presentation at the ever Rockin Omaha Dynamic Languages User Group run by Blaine Buxton.  Thanks Blaine for letting me speak again!  Below is the outline from the presentation power point.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Open Handset Development&lt;br /&gt;What is it&lt;br /&gt;Linux based development platform&lt;br /&gt;Desktop Emulator&lt;br /&gt;Eclipse Plugin&lt;br /&gt;Debug Console&lt;br /&gt;&lt;br /&gt;Architecture&lt;br /&gt;Applications&lt;br /&gt;Android will ship with a set of core applications including an email client, SMS program, calendar, maps, browser, contacts, and others. All applications are written using the Java programming language. &lt;br /&gt;Application Framework&lt;br /&gt;Developers have full access to the same framework APIs used by the core applications. Underlying all applications is a set of services and systems, including: &lt;br /&gt;A rich and extensible set of Views&lt;br /&gt;Content Providers &lt;br /&gt;A Resource Manager&lt;br /&gt;A Notification Manager&lt;br /&gt;An Activity Manager&lt;br /&gt;&lt;br /&gt;Libraries&lt;br /&gt;System C library&lt;br /&gt;Media Libraries&lt;br /&gt;Surface Manager&lt;br /&gt;LibWebCore&lt;br /&gt;SGL&lt;br /&gt;3D libraries&lt;br /&gt;FreeType&lt;br /&gt;SQLite&lt;br /&gt;&lt;br /&gt;Runtime&lt;br /&gt;Android includes a set of core libraries&lt;br /&gt;Every Android application runs in its own process, with its own instance of the Dalvik virtual machine. &lt;br /&gt;The Dalvik VM relies on the Linux kernel for underlying functionality such as threading and low-level memory management.&lt;br /&gt;Linux Kernel&lt;br /&gt;Linux version 2.6 for core system services&lt;br /&gt;Security&lt;br /&gt;Memory management&lt;br /&gt;Process management&lt;br /&gt;Network stack&lt;br /&gt;Driver model&lt;br /&gt;What is the Purpose&lt;br /&gt;Build A better Phone for customers&lt;br /&gt;Innovating in the open&lt;br /&gt;Making the vision a reality&lt;br /&gt;Who is involved&lt;br /&gt;Android&lt;br /&gt;Open&lt;br /&gt;All Applications are created Equal&lt;br /&gt;Breaking down application boundaries&lt;br /&gt;Fast and easy application development&lt;br /&gt;Developers&lt;br /&gt;Android SDK is free&lt;br /&gt;Actual hardware not readily available&lt;br /&gt;Very good emulator and tools provided&lt;br /&gt;Android Developers Challenge $10 Million Dollars to developers who build apps on the platform&lt;br /&gt;Groups&lt;br /&gt;Anddev.org&lt;br /&gt;Google Android user group&lt;br /&gt;Droiddraw.org &lt;br /&gt;&lt;br /&gt;Testing with Android Positron  &lt;br /&gt;&lt;br /&gt;Enough Talk&lt;br /&gt;Lets get into the tools and code!&lt;br /&gt;Anatomy of an App&lt;br /&gt;There are four building blocks to an Android application: &lt;br /&gt;Activity &lt;br /&gt;Intent Receiver &lt;br /&gt;Service &lt;br /&gt;Content Provider&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-5151746229984522795?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/5151746229984522795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=5151746229984522795' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/5151746229984522795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/5151746229984522795'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2008/04/well-i-have-been-busy.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-1798348049294975221</id><published>2007-12-24T07:49:00.000-08:00</published><updated>2007-12-24T08:00:38.492-08:00</updated><title type='text'></title><content type='html'>It's been a while.  I have been heads down developing a Mobile Banking application for cell phones.  Recently I have been modifying it to run on the new android handset.  Because of this I have ran into a few things I would like to remind myself of later.  &lt;br /&gt;&lt;br /&gt;One sort of unrelated thing is an issue I found when I started to migrate code from 1.5 to 1.6.  I thought I had all of my project related code changed over only to have a build script fail.  Below is the stack from my console.&lt;br /&gt;&lt;br /&gt;The error manifest it self in two ways. the first way is:&lt;br /&gt;&lt;br /&gt;class file has wrong version 50.0, should be 49.0&lt;br /&gt;&lt;br /&gt;The second way is:&lt;br /&gt;&lt;br /&gt;[echo]  compile of C:\_brent\workspaces\.....\source\main to C:\_brent\workspaces\.....\webapp\WEB-INF\classes &lt;br /&gt;    [javac] Compiling 144 source files to C:\_brent\workspaces\.....\webapp\WEB-INF\classes&lt;br /&gt;    [javac] javac: invalid target release: 1.6&lt;br /&gt;    [javac] Usage: javac &lt;options&gt; &lt;source files&gt;&lt;br /&gt;&lt;br /&gt;Not a very good description of what was happening.  After double checking my settings I found the issue was with my ant task settings in the window&gt;preferences&gt;ant.  I still had the 1.5 tools jar in my settings and need the 1.6 tools jar.  Once I changed that it was smooth sailing.  &lt;br /&gt;&lt;br /&gt;I hope this helps others with the same issue. Happy coding!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-1798348049294975221?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/1798348049294975221/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=1798348049294975221' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/1798348049294975221'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/1798348049294975221'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/12/its-been-while.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-4165118275439569790</id><published>2007-06-13T07:25:00.000-07:00</published><updated>2007-06-13T07:37:49.204-07:00</updated><title type='text'></title><content type='html'>I know that sometimes I run across stuff that makes me look and feel stupid.  Yesterday was one of those days.  After searching in all of the wrong places on the web, I found I was not alone.  I was trying to create a web service using axis.  Simple enough and actually with test cases and everything it didn't take long.  What became the issue is I needed to see it work for myself not in a test case but in a browser.  Simple enough right? Wrong.  For the life of me I could not figure out what the url is to test a soap service.  Furthermore I was mentally incapacitated enough I couldn't even describe my issue well enough to find the answer in the oracle of the web Google.&lt;br /&gt;&lt;br /&gt;Thanks to xp style paring and my friend Pat we found the answer.  The following is taken directly from the apache website so I want to give them credit.  The entire doc can be found &lt;a href="http://ws.apache.org/axis/java/install.html#TestASOAPEndpoint" target="somewhereelse"&gt;here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So for those of you searching for a way to do a get against your webservice.  Look no further here it is.....&lt;br /&gt;&lt;div class="h2"&gt;&lt;br /&gt;&lt;h2&gt;Test a SOAP Endpoint&lt;/h2&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;Now it's time to test a service. Although SOAP 1.1 uses HTTP POST to submit an XML request to the &lt;i&gt;endpoint&lt;/i&gt;, Axis also supports a crude HTTP GET access mechanism, which is useful for testing. First let's retrieve the version of Axis from the version endpoint, calling the &lt;CODE&gt;getVersion&lt;/CODE&gt; method:&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;a href="http://localhost:8080/axis/services/Version?method=getVersion"&gt;http://localhost:8080/axis/services/Version?method=getVersion&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;This should return something like:&lt;/p&gt;&lt;br /&gt;&lt;pre class="code"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8" ?&amp;gt;&lt;br /&gt;&amp;lt;soapenv:Envelope&lt;br /&gt; xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&lt;br /&gt; xmlns:xsd="http://www.w3.org/2001/XMLSchema"&lt;br /&gt; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&amp;gt;&lt;br /&gt;  &amp;lt;soapenv:Body&amp;gt;&lt;br /&gt;&lt;br /&gt;    &amp;lt;getVersionResponse&lt;br /&gt;     soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"&amp;gt;&lt;br /&gt;      &amp;lt;getVersionReturn&lt;br /&gt;       xsi:type="xsd:string"&amp;gt;&lt;br /&gt;         Apache Axis version: 1.1 Built on Apr 04, 2003 (01:30:37 PST)&lt;br /&gt;      &amp;lt;/getVersionReturn&amp;gt;&lt;br /&gt;    &amp;lt;/getVersionResponse&amp;gt;&lt;br /&gt;  &amp;lt;/soapenv:Body&amp;gt;&lt;br /&gt;&amp;lt;/soapenv:Envelope&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;The Axis version and build date may of course be different.&lt;/p&gt;&lt;br /&gt;&lt;a name="TestAJWSEndpoint"&gt;&lt;/a&gt;&lt;br /&gt;&lt;div class="h2"&gt;&lt;br /&gt;&lt;h2&gt;Test a JWS Endpoint&lt;/h2&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;p&gt;Now let's test a JWS web service. Axis' JWS Web Services are java files you save into the Axis webapp &lt;i&gt;anywhere but the WEB-INF tree&lt;/i&gt;, giving them the .jws extension. When someone requests the .jws file by giving its URL, it is compiled and executed. The user guide covers JWS pages in detail.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;To test the JWS service, we make a request against a built-in example, EchoHeaders.jws (look for this in the axis/ directory).&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Point your browser at &lt;a href="http://localhost:8080/axis/EchoHeaders.jws?method=list"&gt;http://localhost:8080/axis/EchoHeaders.jws?method=list&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;This should return an XML listing of your application headers, such as&lt;/p&gt;&lt;br /&gt;&lt;pre class="code"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8" ?&amp;gt;&lt;br /&gt;&amp;lt;soapenv:Envelope&lt;br /&gt; xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&lt;br /&gt; xmlns:xsd="http://www.w3.org/2001/XMLSchema"&lt;br /&gt; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&amp;gt;&lt;br /&gt;  &amp;lt;soapenv:Body&amp;gt;&lt;br /&gt;    &amp;lt;listResponse&lt;br /&gt;     soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"&amp;gt;&lt;br /&gt;      &amp;lt;listReturn xsi:type="soapenc:Array"&lt;br /&gt;       soapenc:arrayType="xsd:string[6]"&lt;br /&gt;       xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"&amp;gt;&lt;br /&gt;        &amp;lt;item&amp;gt;accept:image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*&amp;lt;/item&amp;gt;&lt;br /&gt;&lt;br /&gt;        &amp;lt;item&amp;gt;accept-language:en-us&amp;lt;/item&amp;gt;&lt;br /&gt;        &amp;lt;item&amp;gt;accept-encoding:gzip, deflate&amp;lt;/item&amp;gt;&lt;br /&gt;        &amp;lt;item&amp;gt;user-agent:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)&amp;lt;/item&amp;gt;&lt;br /&gt;        &amp;lt;item&amp;gt;host:localhost:8080&amp;lt;/item&amp;gt;&lt;br /&gt;&lt;br /&gt;        &amp;lt;item&amp;gt;connection:Keep-Alive&amp;lt;/item&amp;gt;&lt;br /&gt;      &amp;lt;/listReturn&amp;gt;&lt;br /&gt;    &amp;lt;/listResponse&amp;gt;&lt;br /&gt;  &amp;lt;/soapenv:Body&amp;gt;&lt;br /&gt;&amp;lt;/soapenv:Envelope&amp;gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Again, the exact return values will be different, and you may need to change URLs to correct any host, port and webapp specifics.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-4165118275439569790?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/4165118275439569790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=4165118275439569790' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/4165118275439569790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/4165118275439569790'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/06/i-know-that-sometimes-i-run-across.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-8574662517301602591</id><published>2007-05-10T13:02:00.000-07:00</published><updated>2007-05-10T13:17:32.175-07:00</updated><title type='text'></title><content type='html'>Today I am working with tomcat trying to create a dao using jndi and then writing a test.  For those of you that don't know this Tomcat does not allow access from outside the container to the jndi in the way that JBoss does.  In order to do this you will need to use a third party tool like Simple-jndi and can be found at: http://www.osjava.org/simple-jndi/.&lt;br /&gt;&lt;br /&gt;Fairly simple to use for the most part add it into your project classpath, and set up your jndi for Tomcat in the way the doc says.  http://tomcat.apache.org/tomcat-4.1-doc/jndi-datasource-examples-howto.html  To make it work correctly you will need to create a few folders and files.  One of which is a jndi.properties file.  Add the following into this file.&lt;br /&gt;&lt;br /&gt;java.naming.factory.initial=org.osjava.sj.SimpleContextFactory&lt;br /&gt;org.osjava.sj.root=file://config/&lt;br /&gt;org.osjava.sj.delimiter=/&lt;br /&gt;org.osjava.sj.space=java:/comp/env&lt;br /&gt;&lt;br /&gt;The last line is very important to keep just like it is.  If you get the following error when trying to connect this is probably where your issue is.&lt;br /&gt;&lt;br /&gt;java.lang.ClassCastException: org.osjava.sj.memory.MemoryContext&lt;br /&gt;   at com.yourcompany.util.ServiceLocator.......&lt;br /&gt;&lt;br /&gt; Also I am using eclipse and in the root of my project I created a folder I created a folder structure that looks like this [project root]/config/jdbc/&lt;br /&gt;&lt;br /&gt;Within that folder I then place a properties file named [jndiName].properties  The jndiName is important because Simple-jndi uses the name to look up the properties file.  Also for jdbc structure it is important to have the folder structure setup the way I have shown above to ensure it works correctly.&lt;br /&gt;&lt;br /&gt;Have fun and it actually works very slick!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-8574662517301602591?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/8574662517301602591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=8574662517301602591' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/8574662517301602591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/8574662517301602591'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/05/today-i-am-working-with-tomcat-trying.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-7506696621815546464</id><published>2007-04-30T06:45:00.000-07:00</published><updated>2007-05-10T13:19:36.488-07:00</updated><title type='text'></title><content type='html'>Tomorrow I am speaking at the Dynamic Languages User Group in Omaha Ne.  For more information please go to http://www.blainebuxton.com/&lt;br /&gt;&lt;br /&gt;The talk went well and you can find the presentation notes here --&gt; &lt;a href="http://x-celerator.com"&gt;http://x-celerator.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-7506696621815546464?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/7506696621815546464/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=7506696621815546464' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/7506696621815546464'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/7506696621815546464'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/04/tomorrow-i-am-speaking-at-dynamic.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-1058712427563028882</id><published>2007-03-22T06:42:00.000-07:00</published><updated>2007-03-22T06:57:20.668-07:00</updated><title type='text'></title><content type='html'>I ran into a problem debugging some code in a project I recently started on.   In the past I guess I had taken this for granted since others set up the projects.  This group works a bit differently with tests and projects.  They manage all of &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;their&lt;/span&gt; testing using Ant.  A valid way of doing it just not what I am used to.  In the past I had used &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;junit&lt;/span&gt; test suites. &lt;br /&gt;&lt;br /&gt;Sorry, I am getting away from the reason I am &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;writting&lt;/span&gt; this post.  I was attempting to debug an issue in the java code on a tomcat server.  I had made my socket attach to the tomcat project started up in debug mode.  When I started to debug my code would not hit the &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_3"&gt;breakpoints&lt;/span&gt; I set.  The next problem is when I finally found a spot in the code it did stop in the variables were undefined by name (I could not do an inspect on them).  The values did show up in the variables tab in the debugger.  However, it did not show the &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_4"&gt;actual&lt;/span&gt; variable name, but showed them as an &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;args&lt;/span&gt; array.&lt;br /&gt;&lt;br /&gt;This is an issue with the build not my &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;ide&lt;/span&gt; or tomcat or the way I am attaching to the debugger.  To fix the issue I had to change the following line in the build script and add the "vars" argument to the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;javac&lt;/span&gt; task in my ant build.&lt;br /&gt;&lt;br /&gt;&lt;javac srcdir="${src-dir}" destdir="${tmp-classes-dir}" debug="on" debuglevel="lines,vars,source"&gt;&lt;br /&gt;&lt;br /&gt;Now I realize this is probably a rookie move but it was easily over looked and it took me some time to figure it out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-1058712427563028882?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/1058712427563028882/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=1058712427563028882' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/1058712427563028882'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/1058712427563028882'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/03/i-ran-into-problem-debugging-some-code.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-4859218705991225635</id><published>2007-03-15T05:40:00.000-07:00</published><updated>2007-03-15T05:48:53.590-07:00</updated><title type='text'></title><content type='html'>Ok so it has been a few weeks .... Months since I posted anything. &lt;br /&gt;I have found a couple of things of interest this morning and thought I would share. &lt;br /&gt;&lt;br /&gt;One is a resource for publishing for those interested.  http://www.authorhouse.com&lt;br /&gt;&lt;br /&gt;The other:&lt;br /&gt;I just had to post this I don't think there is a better way of  putting this.  I was recommended to this blog by my Director.  Check out the content there is some very good information out here.&lt;br /&gt;&lt;br /&gt;Originally posted at&lt;br /&gt;http://www.agilechronicles.com/blog/2007/03/a_few_good_mana.html&lt;br /&gt;&lt;br /&gt;And now I give you......&lt;br /&gt;&lt;div id="mb_0"&gt;&lt;h3&gt;A Few Good Managers&lt;/h3&gt;       &lt;div&gt;    &lt;p&gt;From the movie &lt;strong&gt;&lt;em&gt;A Few Good Men&lt;/em&gt;&lt;/strong&gt;...&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Development:&lt;/em&gt;&lt;/strong&gt; "You want answers?"&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Marketing:&lt;/em&gt;&lt;/strong&gt; "I think we are entitled to them!"&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Development:&lt;/em&gt;&lt;/strong&gt; "You want answers?!"&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Marketing:&lt;/em&gt;&lt;/strong&gt; "I want the truth!"&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Development:&lt;/em&gt;&lt;/strong&gt; "&lt;strong&gt;You can't handle the truth!!!&lt;/strong&gt;&lt;br /&gt;Son, we live in a world that requires software. And that software must be built by people with elite skills. Who's going to build it? You, Mr. Marketing? You, Mr. Sales? You, Mr. Finance? You, Mr. Human Resources? I don't think so. &lt;/p&gt;  &lt;p&gt;We have a greater responsibility than you can possibly fathom. You scoff at our open work areas and you curse our big screen monitors. You have that luxury. You have the luxury of not knowing what we know - that while the cost of delivering software may be excessive, it drives revenue and saves money. And my very existence, while grotesque and incomprehensible to you, drives BUSINESS! &lt;/p&gt;  &lt;p&gt;You don't want to know the truth because deep down in places you don't talk about at staff meetings... you want me managing the project. You NEED me managing the project! &lt;/p&gt;  &lt;p&gt;We use words like refactoring, test-driven development, continuous integration, sprint, velocity, and release planning. We use these words as the backbone of a life spent delivering something. You use them as a punch line!&lt;/p&gt;  &lt;p&gt;I have neither the time nor inclination to explain myself to people who rise and sleep under the very blanket of software I provide and then question the manner in which I provide it. I would rather you just said "thank you" and went on your way. Otherwise I suggest you log in to a computer and write some code. Either way, I don't give a damn what you think you're entitled to!"&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Marketing:&lt;/em&gt;&lt;/strong&gt; "Did you cut the automated, edit sync [insert favorite feature here] feature?"&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Development:&lt;/strong&gt;&lt;/em&gt; "I did the job I was hired to do."&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;strong&gt;Marketing:&lt;/strong&gt;&lt;/em&gt; "Did you cut the automated, edit sync feature?"&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Development:&lt;/strong&gt;&lt;/em&gt; "I delivered the release on time."&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Marketing:&lt;/em&gt;&lt;/strong&gt; "Did you cut the automated, edit sync feature?"&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Development: &lt;/strong&gt;&lt;/em&gt;"You're g%$#@*&amp;amp; right I did!"&lt;/p&gt;   &lt;/div&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-4859218705991225635?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/4859218705991225635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=4859218705991225635' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/4859218705991225635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/4859218705991225635'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/03/ok-so-it-has-been-few-weeks.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-124790896930988228</id><published>2007-02-09T07:39:00.000-08:00</published><updated>2007-01-30T11:53:31.166-08:00</updated><title type='text'>JAVA DESIGN PATTERNS, Behavioral Patterns - Iterator Pattern</title><content type='html'>As I have been looking for information on Java patterns I ran accross this site which details them very well.&lt;br /&gt;&lt;br /&gt;http://www.allapplabs.com/java_design_patterns&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.allapplabs.com/java_design_patterns/iterator_pattern.htm"&gt;JAVA DESIGN PATTERNS, Behavioral Patterns - Iterator Pattern&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Patterns Creational Patterns:&lt;/span&gt;&lt;br /&gt;Factory, Abstract Factory, Singleton, Builder, Prototype,&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Structural Patterns:&lt;/span&gt;&lt;br /&gt;Adapter, Bridge, Composite, Decorator, Facade, Flyweight, Proxy,&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Behavioral Patterns:&lt;/span&gt;&lt;br /&gt;Chain of Responsibility, Command, Interpreter, Iterator, Mediator, Momento, Observer,&lt;br /&gt;State, Strategy, Template,&lt;br /&gt;Visitor&lt;br /&gt;&lt;br /&gt;There are very comprehensive descriptions and examples of these wonderful code tools.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-124790896930988228?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.allapplabs.com/java_design_patterns/iterator_pattern.htm' title='JAVA DESIGN PATTERNS, Behavioral Patterns - Iterator Pattern'/><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/124790896930988228/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=124790896930988228' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/124790896930988228'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/124790896930988228'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/02/java-design-patterns-behavioral.html' title='JAVA DESIGN PATTERNS, Behavioral Patterns - Iterator Pattern'/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-6226820629444401143</id><published>2007-01-30T11:48:00.000-08:00</published><updated>2007-01-30T11:53:31.197-08:00</updated><title type='text'></title><content type='html'>Things are going quite well at the moment.&lt;br /&gt;&lt;br /&gt;Today I am working on an applet fix for ie7.  What a wonderful advance in ie technology. hahahaha&lt;br /&gt;&lt;br /&gt;It looks like Microsoft has been doing their best at plagiarizing everyone who is successful in making applications.&lt;br /&gt;&lt;br /&gt;Here are some useful links to sites that helped me out.&lt;br /&gt;the following url would not fit on my blog so it is broke into two lines&lt;br /&gt;http://msdn.microsoft.com/library/default.asp&lt;br /&gt;?url=/workshop/author/dhtml/overview/activating_activex.asp&lt;br /&gt;&lt;br /&gt;http://capitalhead.com/articles/activating-activex-controls.aspx&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-6226820629444401143?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/6226820629444401143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=6226820629444401143' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/6226820629444401143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/6226820629444401143'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/01/things-are-going-quite-well-at-moment.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-5665487249306616486</id><published>2007-01-15T12:16:00.000-08:00</published><updated>2007-01-15T12:51:25.228-08:00</updated><title type='text'></title><content type='html'>Reference for javascript&lt;br /&gt;&lt;br /&gt;http://www.javascriptkit.com/jsref/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-5665487249306616486?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/5665487249306616486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=5665487249306616486' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/5665487249306616486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/5665487249306616486'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/01/reference-for-javascript-httpwww.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-7553354717468735844</id><published>2007-01-04T05:50:00.000-08:00</published><updated>2007-01-04T05:53:17.271-08:00</updated><title type='text'></title><content type='html'>Well my friend Blaine has brought an interesting subject to the table today.&lt;br /&gt;Brownian Motion machine&lt;br /&gt;&lt;br /&gt;Here is a sample app you can look at to get an idea of how it works.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://galileo.phys.virginia.edu/classes/109N/more_stuff/Applets/brownian/applet.html" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)"&gt;http://galileo.phys.virginia&lt;wbr&gt;.edu/classes/109N/more_stuff&lt;wbr&gt;/Applets/brownian/applet.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You can even get the source code.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-7553354717468735844?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/7553354717468735844/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=7553354717468735844' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/7553354717468735844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/7553354717468735844'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2007/01/well-my-friend-blaine-has-brought.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-116731747098667789</id><published>2006-12-28T06:08:00.000-08:00</published><updated>2006-12-28T06:51:11.026-08:00</updated><title type='text'></title><content type='html'>Alright I think it is time for me to start using this thing.  Most of what I am going to put out here will have to do with things that help me at work and play.&lt;br /&gt;&lt;br /&gt;Anyone ever think MQ is there to make your life hell?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I was brushing up on some java and found this link.&lt;br /&gt;cool link on patterns. &lt;br /&gt;&lt;br /&gt;http://www.patterndepot.com/put/8/&lt;br /&gt;&lt;br /&gt;http://www.mindview.net/Books/TIPatterns/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-116731747098667789?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/116731747098667789/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=116731747098667789' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/116731747098667789'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/116731747098667789'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2006/12/alright-i-think-it-is-time-for-me-to.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20852267.post-114965709722675140</id><published>2006-06-06T21:51:00.000-07:00</published><updated>2006-06-06T22:12:29.900-07:00</updated><title type='text'></title><content type='html'>Well I have had this blog for some time now and I havn't done anything with it.  I promise I will start posting here.&lt;br /&gt;&lt;br /&gt;Recently I have been busy with giving presentations at the Omaha Dynamic Languages user group.  This group was created out of  a smalltalk and ruby user group here in Omaha by Blaine Buxton.  If you know Blaine you have had a glimpse of one of the best coding minds I have ever had the pleasure to meet.&lt;br /&gt;&lt;br /&gt;Another past time I have punished myself with is taking on some extra side work.  I started this project in .net c#.  It has been going well so far.  I have had to overcome a few issues with the .net framework trying to assist me by creating code for me.  What a pain in the ass that has been.  I would have picked a different language like java, however, the server I had access to is and IIS server.  I like doing different languages because you get to see the difference and similarities of them.&lt;br /&gt;&lt;br /&gt;It's late I'm tired good night&lt;br /&gt;&lt;br /&gt;Happy Slayer day Blaine&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20852267-114965709722675140?l=bablingmonkey.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bablingmonkey.blogspot.com/feeds/114965709722675140/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20852267&amp;postID=114965709722675140' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/114965709722675140'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20852267/posts/default/114965709722675140'/><link rel='alternate' type='text/html' href='http://bablingmonkey.blogspot.com/2006/06/well-i-have-had-this-blog-for-some.html' title=''/><author><name>Brent</name><uri>http://www.blogger.com/profile/05792852322698198697</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://2.bp.blogspot.com/_2lj2RWhQzwA/S8j2k9p0bcI/AAAAAAAAAH8/HKj7xEL1T0I/S220/villain_icon.PNG'/></author><thr:total>0</thr:total></entry></feed>
