<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Bottom Up Design</title>
	<link>http://bottomupdesign.net</link>
	<description>&#34;changing the language to suit the problem&#34;</description>
	<lastBuildDate>Wed, 31 Mar 2010 15:43:54 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>have a .properties file and need to use it in grails?</title>
		<description><![CDATA[Stick in the the src/java directory and it will automagically get copied over to the web-inf directory in project directory of your .grails folder.
]]></description>
		<link>http://bottomupdesign.net/?p=138</link>
			</item>
	<item>
		<title>changing the deployment context of an app in grails</title>
		<description><![CDATA[So I found this blog post which describes how to change the deployment context of an app in grails. 
Essentially you add app.context = /yourcontext to the application.properties file which is located in the root directory. Pretty easy eh?
]]></description>
		<link>http://bottomupdesign.net/?p=136</link>
			</item>
	<item>
		<title>interview questions&#8230;</title>
		<description><![CDATA[So yesterday I had a phone interview with Rally. Overall, I think the interview went good, but one question he asked me was about polymorphism &#8211; &#8220;What is polymorphism?&#8221; to be exact.
We all learn about polymorphism in college along with things like multiple inheritance, weak/strong typing, and object oriented design. But I have always found [...]]]></description>
		<link>http://bottomupdesign.net/?p=128</link>
			</item>
	<item>
		<title>Grails &#8211; DomainObject.findAll() does not presort returned objects&#8230;</title>
		<description><![CDATA[So I have a drop down list of Applications&#8230; Well the Applications domain object specifies that it should presort all returns by the appName field. This works great when doing something like user.applications. Yet when I did my normal Application.findAll() the list it returned was not sorted by appName. I instead had to use Application.list(). [...]]]></description>
		<link>http://bottomupdesign.net/?p=124</link>
			</item>
	<item>
		<title>D6T-XL</title>
		<description><![CDATA[The monthly assignment over on the Fred Miranada forums is &#8220;New&#8221; well here is my take on new. Oh the retail price of this bad boy is about $300,000.


]]></description>
		<link>http://bottomupdesign.net/?p=119</link>
			</item>
	<item>
		<title>SSO take 2</title>
		<description><![CDATA[Ok so we purchased a new template from Theme Forest this week for our &#8220;ASM&#8221; system. So while I was reskinning the login box I started having issues outputting the html dynamically using jquery (the old box as you can see was rather simple). So I decided to iframe the entire modal window of the [...]]]></description>
		<link>http://bottomupdesign.net/?p=113</link>
			</item>
	<item>
		<title>Implementing Single Sign On&#8230;</title>
		<description><![CDATA[So when I set out to rewrite our ASM system, I knew I had to find some selling points to the architecture I was pitching. One of them was the ability to write an SSO system that was easy and efficient and most of all did not require much code for implementing applications (JSSO and [...]]]></description>
		<link>http://bottomupdesign.net/?p=103</link>
			</item>
	<item>
		<title>RESTClient 2.0</title>
		<description><![CDATA[1234567891011121314151617181920212223242526272829303132333435363738394041424344454647import java.net.HttpURLConnection;

class RESTClient &#123;
&#160; &#160; String url
&#160; &#160; String method = &#34;GET&#34;
&#160; &#160; String body //I want the String representation of the object you want to send (either JSON or XML)
&#160; &#160; String data //This is where the response data is stored
&#160; &#160; Node xml //Store the processed response for xml in here
&#160; &#160; Integer [...]]]></description>
		<link>http://bottomupdesign.net/?p=100</link>
			</item>
	<item>
		<title>Restful Client update</title>
		<description><![CDATA[So I have just finished the first class of my rest client:
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091import groovy.xml.StreamingMarkupBuilder 
import java.net.HttpURLConnection;

import apphub.util.RESTClient 

/**
&#160;* Created by IntelliJ IDEA.
&#160;* User: Chauncey-JL
&#160;* Date: Jan 13, 2010
&#160;* Time: 11:59:39 AM
&#160;* To change this template use File &#124; Settings &#124; File Templates.
&#160;*/
class AccessLevel &#123;
&#160; &#160; String appCode
&#160; &#160; String accessTypeCode
&#160; &#160; String accessLevelCode
&#160; &#160; String displayName
&#160; [...]]]></description>
		<link>http://bottomupdesign.net/?p=96</link>
			</item>
	<item>
		<title>My own version of the RESTClient&#8230; Without all of the jars!</title>
		<description><![CDATA[Ok here is the rough version I came up with this afternoon. It will definitely get better as I move deeper into my API.
12345678910111213141516171819202122232425262728293031323334353637383940414243444546package apphub.util;

import java.net.HttpURLConnection;

class RESTClient &#123;
&#160; &#160; String url
&#160; &#160; String method = &#34;GET&#34;
&#160; &#160; String body //I want the String representation of the object you want to send (either JSON or XML)
&#160; [...]]]></description>
		<link>http://bottomupdesign.net/?p=94</link>
			</item>
</channel>
</rss>
