Category Archives for Development
OpenAM Apache Web Agent
Make sure you set the Encode Cookie Value to Yes or True. If it’s not able to be modified, it’s an inherited setting that you will need to change. If you don’t, you’ll get a 500 error once a successful … Continue reading
Regex Recipes
Since I went through the time to create these, I might as well document a few of them for myself and anyone else who might be looking for it. As I refine and author more, I’ll add them here. Phone … Continue reading
SalesForce.com JAX-WS & Netbeans
The process for using SalesForce.com (SFDC) webservices in Netbeans isn’t as intuitive as you would think. Most of the SFDC documentation examples are built using Apache Axis vis-a-vis JAX-WS. The good news is that it’s possible to get Netbeans (and … Continue reading
Find supported LDAP syntaxes in OpenLdap
To lookup the supported syntaxes in OpenLdap, issue this command: ldapsearch -x -s base -b “cn=subschema” ldapsyntaxes Should end up with output like: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 … Continue reading
Keep JUnit TestCases from Cobertura Instrumentation
To keep your Cobertura code coverage reports accurate, don’t forget to exclude any JUnit TestCases during instrumentation. Example: 1 2 3 4 5 6 <cobertura-instrument todir="${cobertura.inst.classes}" datafile="${cobertura.datafile}"> <fileset dir="${build}"> <include name="**/*.class"/> <exclude name="**/*Test*.class"/> </fileset> </cobertura-instrument> Here’s one of my full … Continue reading