The i-Technology Media!
Register | Log in
   
 
.NET  ·  AJAX  ·  CLOUD  ·  ECLIPSE  ·  FLEX  ·  OPEN WEB  ·  iPHONE  ·  JAVA  ·  LINUX  ·  OPEN SOURCE  ·  ORACLE  ·  PBDJ  ·  SEARCH  ·  SILVERLIGHT  ·  SOA  ·  VIRTUALIZATION  ·  WEB 2.0  ·  WIRELESS  ·  XML
Comments
Google Wave Invitation Giveaway
By Aditya Banerjee
Timo Hirvonen wrote: I would really appreciate an invitation. Been desperately trying to find one :) timo [dot] hirvonen [at] gmail [dot]com
Nov. 27, 2009 11:13 AM EST
Cloud Expo on Google News
Did you read today's front page stories & breaking news?


2009 East
PLATINUM SPONSORS:
IBM
Smarter Business Solutions Through Dynamic Infrastructure
IBM
Smarter Insights: How the CIO Becomes a Hero Again
Microsoft
Windows Azure
GOLD SPONSORS:
Appsense
Why VDI?
CA
Maximizing the Business Value of Virtualization in Enterprise and Cloud Computing Environments
ExactTarget
Messaging in the Cloud - Email, SMS and Voice
Freedom OSS
Stairway to the Cloud
Sun
Sun's Incubation Platform: Helping Startups Serve the Enterprise
POWER PANELS:
Cloud Computing & Enterprise IT: Cost & Operational Benefits
How and Why is a Flexible IT Infrastructure the Key To the Future?
Click For 2008 West
Event Webcasts

2009 East
GOLD SPONSORS:
CA
Get Your Transactions Under Control: SOA Performance Management
Software AG
Performance Driven Adoption: The Secret to Advancing SOA
Intel
The Evolving SOA Appliance: 3 Game-Changing Innovations
SILVER SPONSOR:
Denodo
Data Mashups: Deliver Your Project Faster with Virtualized Data Services Across Internal & External Sources
POWER PANELS:
The Business Value of Service Orientation
Driving Profitability Through User Experience
Click For 2008 West
Event Webcasts
Live Google News by SYS-CON!
Top Three Links You Must Click On


CF & Flex
Using the Adobe Flex Toolkit for Salesforce.com
New integration opportunities

By: Stephen Rittler
Oct. 7, 2007 07:15 AM
  • 1
  • 2
  • next ›
  • last »

In April 2007 Adobe and Salesforce.com announced the availability of the Flex toolkit for Apex, Salesforce.com's on-demand programming language and API for interaction with their hosted CRM solution. This toolkit makes it simple to build Flex applications that interact with your Salesforce.com database.

The benefits of using Flex are numerous: create far more effective and efficient dashboards for your sales team, build "mashup" user interfaces that bring data together from Salesforce and your enterprise systems, and improve the overall usability of Salesforce.com with tools you're already comfortable with.

The API itself is rather simple. Using the toolkit you can execute query operations (create, update, delete), run full-text searches, pull back metadata on your Salesforce environment (tabs, controls, layout information), send e-mail messages, and work with the workflow engine. The most useful aspect of the API is the query operations, so we'll focus on that in the following sample application "sfQuery."

Getting Started
The toolkit is surprisingly easy to get started with. Simply download it from http://www.salesforce.com/developer, unzip the swc file to a convenient location, and add it to your Flex application's build path (see Figure 1).

Add a reference to the Salesforce namespace to your mx:Application tag as indicated below:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:salesforce="com.salesforce.*" layout="absolute" >

To create a connection to the Salesforce.com servers, add this line of code to your application:

<salesforce:Connection id="apex"/>

That's the extent of the configuration of your application. We can now use the connection (referenced as "apex") to interact with the Apex platform.

SOQL: The Salesforce Object Query Language
While this isn't necessarily directly related to the toolkit, it's important to understand some of the peculiarities of SOQL. SOQL is very much like SQL, but with a few key differences. For example, wildcards aren't permitted in your field list in a select statement. Aggregate expressions are basically not supported except for count(), but even that's limited. The biggest difference to be forewarned about is how SOQL handles what we traditionally think of as "join" statements. Instead of returning a table of data, SOQL returns nested result sets from the child tables in a join statement. They refer to this approach as "SOQL relationships." Outer join capability is expected to be included in the Spring 2007 release of Apex. I recommend that you read www.salesforce.com/us/developer/docs/api/index.htm to understand just what you can (and can't) do in SOQL in more detail. It's not difficult to make up the difference in ActionScript, but it sure feels weird knowing you're doing something in code that you could do much easier in SQL!
Anyway, back to the demo:

Doing Stuff
Our demo application will be a simple SOQL query testing application so we can learn the SOQL syntax. You've already created your connection object, so to activate it we have to log in. Prepare a LoginRequest object by populating the username and password fields. Notice that we're defining a callback function (loginResult) that will be fired off when the login response from the Salesforce.com servers is received.

private function login():void
      {
var lr:LoginRequest = new LoginRequest;
// username/password used when logging in interactively
lr.username = username.text;
lr.password = pwd.text;
// server_url and session_id used when deployed in the salesforce environment
// lr.server_url = Application.application.parameters.server_url;
// lr.session_id = Application.application.parameters.session_id;
lr.callback = new AsyncResponder(loginResult);
apex.login(lr);
}

Our callback function is rather simple in this example - all we're doing is changing states. Now that we're logged in let's enter a quick SOQL query:

SELECT Account.Name,
(SELECT Contact.FirstName, Contact.LastName FROM Account.Contacts)
FROM Account

This query will retrieve all contacts for each account in our Salesforce database when the "Execute Query" button is clicked.

   private function executeQuery():void
   {
      apex.query(txtQuery.text,
        new AsyncResponder(function (qr:QueryResult):void
        {
txtQueryOutput.text = ObjectUtil.toString(qr.records);
        })
);
   }

The query() function takes an SOQL statement as the first argument and a callback function as its second. We'll pass the query off to the "apex" connection object and wait for a response. Stylistic comment: rather than define the callback in another function as I did with the loginResult function, I opted to define it inline as an anonymous function. Either method works; the decision as to which way you do this is purely personal.

Once we get the data back we'll use the ObjectUtil class to dump out the returned object as a string in the larger text area. If the query failed, we'd get an error and no results would render. Just like that we now have a quick SOQL statement tester that can help us build our future Flex/Apex applications.


  • 1
  • 2
  • next ›
  • last »
Published Oct. 7, 2007— Reads 12,738
Copyright © 2007 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
About Stephen Rittler
Stephen Rittler is the president of Countermarch Systems LLC, a company dedicated to improving alumni relations in higher education through the proper application of CRM tools, social networking and process improvement through technology. His company has developed effective solutions for clients in education, government, publishing and manufacturing. He is a Certified Advanced ColdFusion MX developer and has contributed to the CF community through his writing, leadership of the Philadelphia ColdFusion User Group and presentations on a variety of topics. Steve is a musician at heart but has yet to figure out how to play his saxophone and code at the same time. You can read his blog at http://www.countermarch.com/blog.

Add Your Feedback

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON Featured Whitepapers

ADS BY GOOGLE

Breaking Java News
FanSnap(R) Launches SeatAlerts to Notify Fans of Their 'Perfect' Tickets
Petromin Resources announces granting of stock options to certain members of its International Advisory Board
Platinex and Ontario Continue Discussions Over Big Trout Lake Property
Garson Gold Announces Filing of Audited Financial Statements for the Year Ended July 31, 2009
Khan Acknowledges ARMZ Intention to Make an Unsolicited Offer
Killdeer Minerals Announces Financing With MineralFields Group
West Street Announces Third Quarter Results
Homeland Uranium Inc. Reprices Options
South American Silver Corp. Completes $2.78 Million Financing

ADVERTISE   |   MAGAZINE SUBSCRIPTIONS   |   FREE BREAKING-NEWSLETTERS!   |   SYS-CON.TV   |   BLOG-N-PLAY!   |   WEBCAST   |   EDUCATION   |   RESEARCH

.NET Developer's Journal - .NETDJ   |   ColdFusion Developer's Journal - CFDJ   |   Eclipse Developer's Journal - EDJ   |   Enterprise Open Source Magazine - EOS
Open Web Developer's Journal - OPENWEB   |   iPhone Developer's Journal - iPHONE   |   Virtualization - Virtualization   |   Java Developer's Journal - JDJ   |   Linux.SYS-CON.com
PowerBuilder Developer's Journal - PBDJ   |   SEO / SEM Journal - SJ   |   SOAWorld Magazine - SOAWM   |   IT Solutions Guide - ITSG   |   Symbian Developer's Journal - SDJ
WebLogic Developer's Journal - WLDJ   |   WebSphere Journal - WJ   |   Wireless Business & Technology - WBT   |   XML-Journal - XMLJ   |   Internet Video - iTV
Flex Developer's Journal - Flex   |   AJAXWorld Magazine - AWM   |   Silverlight Developer's Journal - SLDJ   |   PHP.SYS-CON.com   |   Web 2.0 Journal - WEB2
Apache   |   CMS   |   CRM   |   HP   |   Oracle Journal   |   Perl   |   Python   |   Red Hat   |   Ruby on Rails   |   SAP   |   SaaS

SYS-CON MEDIA:   ABOUT US   |   CONTACT US   |   COMPANY NEWS   |   CAREERS   |   SITE MAP
SYS-CON EVENTS:   |  AJAXWorld Conference & Expo  |  iPhone Developer Summit  |  Cloud Computing Conference & Expo  |  SOA World Conference & Expo  |  Virtualization Conference & Expo
INTERNATIONAL SITES:   India  |  U.K.  |  Canada  |  Germany  |  France  |  Australia  |  Italy  |  Spain  |  Netherlands  |  Brazil  |  Belgium
 Terms of Use & Our Privacy Statement     About Newsfeeds / Video Feeds
Copyright ©1994-2008 SYS-CON Publications, Inc. All Rights Reserved. All marks are trademarks of SYS-CON Media.
Reproduction in whole or in part in any form or medium without express written permission of SYS-CON Publications, Inc. is prohibited.
 
close this window