Tagged Questions
HTTPService is a Flex component used for HTTP requests
18
votes
13answers
27k views
HTTP Basic Authentication with HTTPService Objects in Adobe Flex/AIR
I'm trying to request a HTTP resource that requires basic authorization headers from within an Adobe AIR application. I've tried manually adding the headers to the request, as well as using the ...
3
votes
1answer
639 views
Adobe AIR Flex/Actionscript URLLoader vs HTTPService (Async tokens and Windows proxy settings)
I'll try and keep this short.
I've written an AIR app that uses an HTTPService to request various bits of data. There can be multiple services firing at once, so I use the standard AsyncToken ...
3
votes
1answer
379 views
Flex 4 - Sending string (such as JSON) using HTTPService
When I use HTTPService.send(paramter) as a POST request, the web server does not appear to see variable "parameter" if it is a string. The server sees the parameter if it's an Object, but I'm looking ...
3
votes
2answers
2k views
Set JSON content-type on s:HttpService in flex
I am trying to set the json content type on httpservice to make REST service return the json data. When I add the content type in fiddler all works fine so the problem lays in flex application, not in ...
3
votes
3answers
1k views
To execute Flex cleanup function when browser is closed by user
I have a Flex client application. I need a clean up function to run in Flex when the user closes the browser. I found the following solution on the net, but it only works half-way for me. How could I ...
3
votes
4answers
1k views
Two different HTTPService classes in Flex
Why are there two different HTTPService classes in Flex?
this
and
this
And the second one inherits the first one.
Why couldn't there be a single class combining the two?
2
votes
2answers
113 views
AS3 HttpService is slow, seeing 1-5 seconds response time
Using Flex Builder 4.5 with rails running on localhost on a brand new MacBook Air. Using curl, the response time of the server of a read is around 200-300ms. When I use HTTPService, from send() to ...
2
votes
2answers
160 views
Flex - HTTPService - Security error accessing YouTube api
I have the following HTTPService defined:
<mx:HTTPService id="youTubeHttpService" result="resultHandler(event)" fault="faultHandler(event)"/>
And I'm using the following URL (pattern) to ...
2
votes
1answer
210 views
onResult HTTPService
I have a HTTPService:
<mx:HTTPService id="scoreService" url="http://" method="POST" result="onResult(event)">
<s:request xmlns="">
<name>{..}</name>
...
2
votes
2answers
1k views
HTTPService/ResultEvent with Flex 3.2 versus Flex >= 3.5
through a design decission or what-so-ever Adobe changed the content of the ResultEvent fired by a HTTPService Object.
Take a look at following example:
var httpService:HTTPService = ...
2
votes
1answer
583 views
Send HTTPService Request in flex 3 with '-' in the URl Paramerters to get Google Feeds
I am developing application in flex 3 which interacts with the Google feeds to produce my results. The URL to which i want to send request is something like this
...
2
votes
1answer
356 views
Static content on Wicket application served from OSGi HTTP Service
I'm developing a web application that is going to be served from an OSGi HTTP service, I register it using a WicketServlet, and I don't know how to serve static files (CSS, JS, images and so).
How ...
1
vote
1answer
58 views
How to retrieve WCF service link in flex using httpservices
I want to retrieve server content which is like wsdl link(WCF service URL)using FLEX 4.5.. I haven't worked with webservices on FLEX. I have worked with xml data retrieval using httpservices where I ...
1
vote
1answer
36 views
Flash HTTPService : reading the connection data from property file
i have my HTTPService, it looks like this :
<s:HTTPService
id="setCustomerInstalledPackageService"
url="http://localhost:8090/myapp/servletName"
useProxy="false" ...
1
vote
1answer
82 views
AIR multiple HTTPService call Mac OSX
I am instantiating and sending multiple instances of HTTPService
On a Mac, however, many of the calls fail with a 2032 error.
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication ...
1
vote
0answers
792 views
how to use httpservice to request&response json data from mobile(client) to server in flash builder 4.5?
Firstly i share my code that it is right.
[Bindable]
private var myArrayCollection:ArrayCollection;
private function serviceSend():void
{
var ...
1
vote
2answers
226 views
Flex4: Using httpService in consecutive function calls
I have this button:
<s:Button includeIn="MeniuPrincipal" label="Descarcare Date" click="downloadLmData(event)"/>
and this click event handler:
protected function ...
1
vote
1answer
139 views
faultEvent message body of HTTPService empty in Mozilla and Chrome
I am using HTTPService for authentication in my appliaction and I am parsing the messahe body of faultEvent of fault handler to determine what fault is coming. Every thing is working fine in IE but in ...
1
vote
1answer
520 views
Flex 4 - Pass data sent by HTTPService object to result handler
I have a data object that gets sent as a POST request by an HTTPService object, but I want to be able to access the data object in the result handler. What is the best way to do this?
1
vote
1answer
215 views
How to trace complete URL after parameters as object are added to flex httpservice?
I want to trace how URL looks when it is sent like in following example when using params:
http.url="func.php";
var params:Object = { abc: "123", def: "456" };
http.send(params);
trace(http.url); ...
1
vote
1answer
458 views
how to use request parameter with special character in HTTPService - Flex
Currently I have :
<mx:HTTPService id="userLogin" url="https://api.localhost/api/user/login/" method="POST" resultFormat="e4x" result="doSomeThing(event)">
<mx:request>
...
1
vote
1answer
67 views
Is it possible to create a separate file for httpservices in flex and what are the best practices
Hi I am new new to flex development.
I am building a flex application which uses rest APIs.
Right now I have created different for different API calls (login, logout, search etc.) And all these ...
1
vote
1answer
238 views
“Default decoder could not decode result”
Here are the files -
MXML:
<mx:HTTPService id="score" url="http://...score.php" fault="mx.controls.Alert.show(event.fault.faultString)"
method="POST" ...
1
vote
1answer
148 views
Limit to number of HTTPService calls that can be made at once
I have 5 Cairngorm Events that I am dispatching at the same time(one right after the other) - all of which call a separate HTTP Service. This works fine when I run the application locally however ...
1
vote
1answer
74 views
How to handle < and > symbols in HttpService if we use xml as a result format?
I used a httpservice which returns a xml as a result.But the content itself has a '<' symbol or '>' symbol , it leads to error ! How can i handle this?
Thanks in advance.
1
vote
0answers
131 views
BlazeDs with default destination set to DefaultHTTPS throws Premature End of File Error
I'm working on a Flex project that uses the proxy-config file in Blaze in order to get puts and deletes to work for our HTTPService calls. All the calls use https so I have the destination set up to ...
1
vote
0answers
503 views
Flex HTTPService security error using Safari
I'm using the HTTPService object in actionscript to send some data to a php file on another server which then inserts the data to a database. I set up the crossdomain.xml file in the root of the ...
1
vote
2answers
142 views
doesn't parse xml when it's a single node
my script.php returns this XML
<all>
<item>
<field1>value1</field1>
<field2>value2</field2>
</item>
<item>
...
1
vote
1answer
594 views
HTTPService resultFormat, how to choose
HTTPService has a property resultFormat which can be set to any of the following: array e4x flashvars object text xml
I looked at the documentation to understand the difference, but still couldn't ...
1
vote
2answers
143 views
Can't read output of httpservice
I have an HTTPservice
id="myhttp"
url="site.com/script.php"
method="POST"
resultFormat="xml"
The script it uses returns
$output = '<worked>' . $worked . '</worked>';
echo $output;
...
1
vote
1answer
490 views
Flex HttpService POST limited to 543 Byte per Form field?
I am getting a FaultEvent when trying to send form fields through HTTPService that contain more than 542 chars.
Initializing the HttpService:
httpServ = new HTTPService();
httpServ.method = 'POST';
...
1
vote
4answers
784 views
Flex: Cancel HTTPService.send()?
OK I have an HTTPService that executes the dataLoaded(e:ResultEvent):void function whenever it gets a result from a send() call.
OK so If I call HTTPService.send() and then call HTTPService.send() ...
1
vote
2answers
4k views
HTTPService AsyncToken and AsyncResponder example
Where can I find an example of Flex application which implements an HTTPService asynchronously called by an AsyncToken and an AsyncResponder?
Thanks in advance
the httpservice send a string like this ...
1
vote
1answer
233 views
Flex: Loading an XML File That Isn't Accessible By Users
We have a Flex app that is currently loading an XML file that contains Multiple Choice Question data. I don't want a user to be able to access this file via http, but if I use HTTPService to load the ...
1
vote
1answer
2k views
FileReference and HttpService Browse Image Modify it then Upload it
I am trying to do an image uploader, user can:
- browse local file with button.browse
- select one and save it as a FileReference.
- then we do FileReference.load() then bind the data to our image ...
1
vote
1answer
751 views
HTTPService event listener so it triggers something when “.send” method gets data from XML
Good day everybody.
I've doing a bit of "training" at working with Flex and Remote Data from XML files.
This is my HTTPService
<mx:HTTPService id="loginData" url="com-handler/basic.xml" ...
1
vote
2answers
2k views
Dynamic url in HTTPService not working
Hello and thanks in advance for any help you can provide.
My AIR application queries a webservice to see what components to build. A sample of the XML returned is:
<item>
...
1
vote
1answer
1k views
Flex HTTPService in Flash
Is there a standard equivalent to the Flex HTTPService class in Flash CS4?
1
vote
3answers
10k views
Getting progress on POST using HTTPService in Flex/AS3
I'm using HTTPService with a POST operation to submit a Base64 encoded file (taken from bitmap data within the app) but I could really do with getting some idea of the progress of the POST operation ...
1
vote
3answers
4k views
Flex - 2032: Stream Error in IE only
I get a 2032 stream error from Flash in response to POST requests that return "201 Created" in IE (Firefox works fine). Since Flash doesn't provide access to the HTTP status I can't tell that it has ...
0
votes
0answers
17 views
Flashbuilder actionscript parse httpService object into array
I am using flashBuilder to try build a mobile app which uses sqLite for storing data. What I am trying t accomplish is to fill the sqLite table with data from a webserver.
My goal is to parse XML ...
0
votes
0answers
30 views
Keep Flash Mobile StageWebView and HttpService cookies in sync - Android
In a Flash Builder mobile app, I use a StageWebView and a HttpService to communicate with an ASP.NET web application. Initially, the user logs into the web app in the StageWebView, then later I do ...
0
votes
2answers
25 views
What Really is the <s:CallResponder> Class in Flex 4?
I am learning the networking portion of Flex 4.5 right now, and the course I am reviewing recommends that I use the <s:CallResponder> class whenever I make a call to a server, either with the ...
0
votes
1answer
21 views
HTTPService from an VO is doing problems
I'm fairly new to AS and I have some problems using the HTPService from a VO I created.
here is my code:
package ValueObjects
{
import mx.rpc.events.ResultEvent;
import ...
0
votes
1answer
32 views
How to retrieve data sent by Flash 4 HttpService, in the Servlet side
I'm using Flash 4.0 as UI tier, and I'm trying to send data to the server side, which runs on Tomcat. I wrote a servlet that the calls are directed to it. But I do not understand how can I see the ...
0
votes
2answers
105 views
HTTPService not properly JSON-encoding nested objects on send()
i am creating an object like this:
var myObj:Object = new Object();
myObj["someProperty"] = {
anotherProperty: "someValue",
whateverProperty: "anotherValue"
}
now i want to send it to a web ...
0
votes
1answer
35 views
HTTPService get sent POST body on FaultEvent
Is it possible to get at the data that I sent via a HTTPService Send('I want to get at this data') method when a FaultEvent is raised? Either by looking at the global HTTPService variable or at the ...
0
votes
0answers
74 views
import http services in flex 4.5 from other project
Is there a way to import http services from one project to another in FLEX 4.5?
I understood that a .model folder with a .fml file is auto-generated as soon as a http service is created.
I tried to ...
0
votes
1answer
211 views
Flashbuilder 4.5. Parse results of HTTP Service Call
I'm making an HTTP Service Call using Flash Builder 4.5. My web service returns a string. I'm having trouble understanding how to read in the returned string.
LoginResult.token = ...
0
votes
2answers
287 views
Download PDF file in Flex with HTTPService
HiSomeone know how to download a pdf file with HTTPService?
I do that
private function downloadPDF():void
{
var httpService:HTTPService = new HTTPService();
httpService.url = ...