Archive for the ‘Live Cycle Data Services’ Category

CS5 Master Suite-Flash Builder 4 a.k.a. Flex Builder 4

Tuesday, May 18th, 2010

Wow…. was I late to the party here. I was going to upgrade to Flash Builder 4 (Flex Builder 4) and as I was checking out Adobe’s site I noticed that it is included in the CS5 Master Suite and I already have the CS4 Master Suite!! So I get it ALL, and I mean ALL for $900!

I know that sounds like a lot, but seriously when you look at what you get (now I’m talking upgrade here, not flat out new purchase which is $3000), it is an awesome deal.

I don’t know why no one said anything about this.


Amazon Web Services Continued

Friday, June 27th, 2008

Ok, I am LAME…. Here is the CORRECT destination configuration ( in the proxy-config.xml ) to make the webservice work from within Flex using the WebService tag plus LiveCyle Data Services ES…


<destination id="amazon" adapter="soap-proxy">
<properties>
<url> http://webservices.amazon.com/AWSECommerceService/
AWSECommerceService.wsdl
</url>
<soap>http://soap.amazon.com/onca/soap?Service=AWSECommerceService
</soap>
</properties>
</destination>

I was calling the <url></url> above, <wsdl></wsdl>... and I had not inlcuded the <soap></soap> at all since I thought Flex Framework did that all by iteself….once I changed it to <url></url> and added the <soap> tag, everything worked fine.

I hope this helps other flex developers, as I found almost zilch online.