<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.3" -->
<rss version="0.92">
<channel>
	<title>Joshua Ostrom - riafan</title>
	<link>http://www.joshuaostrom.com</link>
	<description>RIA, embedded programming, what else!</description>
	<lastBuildDate>Wed, 10 Mar 2010 13:45:26 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Java SOAP Client</title>
		<description><![CDATA[I ran into a short problem writing a Java SOAP client.  I was using the Axis[2] wsdl2java class to generate my Java classes.  The latest version of wsdl2java has omitted the -T parameter that&#8217;s used to specify the SOAP version for the generate classes. The client&#8217;s soap endpoint only accepts SOAP 1.1 (not [...]]]></description>
		<link>http://www.joshuaostrom.com/2009/11/19/java-soap-client/</link>
			</item>
	<item>
		<title>Glassfish + LCDS &#124; BlazeDS + Flex 4 Up Next</title>
		<description><![CDATA[It&#8217;s been a busy year getting a J2EE and Data Warehousing education.  I&#8217;m wrapping up the ETL portion of a large Data Warehousing project.  The next phase of the project is building a Flex front-end for the warehouse.  I&#8217;m looking forward to using the Spark Architecture in Flex 4 for the UI, [...]]]></description>
		<link>http://www.joshuaostrom.com/2009/11/19/glassfish-lcds-blazeds-flex-4-up-next/</link>
			</item>
	<item>
		<title>Debug [server + client] LCDS Java HelloWorld in Flex Builder</title>
		<description><![CDATA[Prerequisites
Install Flex Builder
Install LCDS Data Services 
Install WTP in Flex Builder
Here&#8217;s a simple project that shows you how to create a simple Hello World for Flex + Java via LCDS.  I&#8217;ll also show you how to debug the server [java] code as we move along.
File->New->Flex Project
For application server type select J2EE
User remote object access
LiveCycle [...]]]></description>
		<link>http://www.joshuaostrom.com/2009/09/02/debug-server-client-lcds-java-helloworld-in-flex-builder/</link>
			</item>
	<item>
		<title>Install WTP in Flex Builder</title>
		<description><![CDATA[A quick walkthrough on installing the Web Tools Platform (WTP) in Flex Builder.
Help->Software Updates->Find and Install

Search for new features to install

Select the [Europa] discovery site

Select &#8216;Web and JEE development&#8217;
You may need to click &#8216;Select Required&#8217;

]]></description>
		<link>http://www.joshuaostrom.com/2009/09/02/install-wtp-in-flex-builder/</link>
			</item>
	<item>
		<title>AMFPHP Support for JSON POST</title>
		<description><![CDATA[I found myself wanting to use JSON POSTs (not just GETs) with AMFPHP.  Here&#8217;s the addition.
Open up core\json\app\Gateway.php.
After

		$rawArgs = explode('/', $args);
	
add the following

		if(isset($_POST) &#038;&#038; count($_POST) > 0)
		{
		   $len = count($rawArgs);
		   // Check for and remove [last] empty arg from URL '/' explosion
		   if($len &#038;&#038; trim($rawArgs[$len-1]) == "")
		  [...]]]></description>
		<link>http://www.joshuaostrom.com/2009/07/24/amfphp-support-for-json-post/</link>
			</item>
	<item>
		<title>What, my flash gateway is already AJAX ready? Sweet.</title>
		<description><![CDATA[I&#8217;m integrating existing Flex functionality with some new COTS [AJAX RIA] software.  Looks like I&#8217;m golden on two fronts:

My existing dashboarding app leverages the dynamic module architecture blogged hear in the past.  Each module was cleanly encapsulated so it&#8217;s about a dozen lines of code to convert each module into a stand-alone app [...]]]></description>
		<link>http://www.joshuaostrom.com/2009/07/23/what-my-flash-gateway-is-already-ajax-ready-sweet/</link>
			</item>
	<item>
		<title>VerifyError: Error #1053: Illegal override of removeChild Bridge in mx.managers.SystemManagerProxy.</title>
		<description><![CDATA[Ran into this error recently when using automation testing (RunTimeLoading.html/swf).
Turned out to be a recently updated SWC (library) that was compiled under a newer SDK than the main app. 
With the mixed SDKs main app / SWC(s) RunTimeLoading.swf was unable to load regardless of which SDK version RunTimeLoading was compiled under.
]]></description>
		<link>http://www.joshuaostrom.com/2009/03/25/verifyerror-error-1053-illegal-override-of-removechild-bridge-in-mxmanagerssystemmanagerproxy/</link>
			</item>
	<item>
		<title>DBF-&gt;MySQL</title>
		<description><![CDATA[While working on a staging area for a warehouse, I ran across the need to capture a table schema from a DBF file.  
If found this link http://ae.inc.ru/dbf2mysql.php
Problem:
While running the program I received this error
error connecting to database client does not support authentication protocol requested by server; consider upgrading MySQL client
Solution:
You simply need to [...]]]></description>
		<link>http://www.joshuaostrom.com/2009/03/23/dbf-mysql/</link>
			</item>
	<item>
		<title>Connecting to 32 bit / 64 bit data sources from Tomcat (Java)</title>
		<description><![CDATA[Problem: 
When running tomcat your receive the following error when connecting to an ODBC data source
java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified 
Solution:
There are *two* ODBC managers in 64 bit windows.  64 bit ODBC data sources are separate from 32 bit data sources.  
The ODBC manager [...]]]></description>
		<link>http://www.joshuaostrom.com/2009/03/03/connecting-to-32-bit-64-bit-data-sources-from-tomcat-java/</link>
			</item>
	<item>
		<title>Iterating a filtered collection</title>
		<description><![CDATA[Okay, nothing profound here but thought I&#8217;d post as it&#8217;s a common question.
If you have filtered a collection, 
ex

var ac:ArrayCollection = new ArrayCollection();
...
...
ac.filterFunction = myFilter
ac.refresh()

but you&#8217;d like to iterate over / access the unfiltered collection, simply use the .list property

var items:IList = ac.list

cheers
Josh
]]></description>
		<link>http://www.joshuaostrom.com/2009/02/12/iterating-a-filtered-collection/</link>
			</item>
</channel>
</rss>
