Skip to content

Instantly share code, notes, and snippets.

@sophistifunk
Created January 20, 2010 05:14
Show Gist options
  • Save sophistifunk/281627 to your computer and use it in GitHub Desktop.
Save sophistifunk/281627 to your computer and use it in GitHub Desktop.
public function getBreakdown(measuringLocationId:Number, fromDate:Date, toDate:Date):AsyncToken
{
return helper.newResponseDecoder()
.createInstanceOf(DisplaySet)
.on(helper.newSoapInvocation()
.onService(service)
.methodNamed("getFugitiveBreakdown")
.addParameter("measuringLocationId", measuringLocationId)
.addParameter("dateRange", { fromDate:fromDate, toDate:toDate })
.addUserCredentials("carbon","carbon")
.invoke());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment