HTTPService is a Flex component used for HTTP requests
Questions tagged [httpservice]
240 questions
0
votes
2 answers
Populate ArrayCollection with HTTPService
Yes there is a question like this one, but there is no activity and no answer.
I want to load data from a external XML file, using a HTTPService, and on the ResultEvent of the same HTTPService i want him to populate a ArrayCollection with the data…

Fábio Antunes
- 16,984
- 18
- 75
- 96
0
votes
1 answer
Flex HTTPService Progressbar
How can I set a progress bar that may start when an HTTPService is sent and stop when the HTTPService ends?
I followed code given here but encountered following error:
Type was not found or was not a
compile-time constant: ProgressWin.
Don't…

Uthman
- 9,251
- 18
- 74
- 104
0
votes
1 answer
HTTPService in Java
Am trying to develop a web service using which we plan to host many services in our application.
We are planning to use HTTPService from Sun to develop the same. I have few doubts regarding the same:
Can we develop a restful webserver using…

LPD
- 2,833
- 2
- 29
- 48
0
votes
1 answer
Flex HttpService authorization to obtain xml feed
im trying to obtain a xml feed from my cpanel though API. I have tried several methods (see below) to pass the authorization to obtain the xml feed.
In my browser i can get the feed through the following…

user1705839
- 29
- 4
0
votes
2 answers
Flex httpservice faults
I've been given a Flex application which made use of a RESTFUL service.
I've managed to create a SQLite DB which stored data from the service and now I would like the application to be able to run offline and make use of the data existing in it's…

Craig Warren
- 1,655
- 4
- 23
- 38
0
votes
3 answers
Problems re-using HTTPService object
I'm trying to reuse the HTTPService object in a flex app but I'm running into a problem. In the handler for ResultEvent.RESULT I'm removing the listener, but it isn't removed. I've have to catch the asyncToken from send() and attach a new property…

metric152
- 422
- 4
- 16
0
votes
1 answer
useProxy on URLLoader? similar to that of the httpservice?
Loading Https images over untrusted servers have limitations. We have decided to load images over from the proxyservice rather than let the air do it itself form several domains. When I checked blazeds document, httpservice has useproxy property to…

Zeus
- 6,386
- 6
- 54
- 89
0
votes
1 answer
HttpService Error #2096
I've written a Httpservice to get data from server but when I tried to run the service it got me the error (#2096). Below is my code:
package
{
import flash.net.URLRequestHeader;
import mx.collections.ArrayCollection;
import…

Rocker
- 669
- 5
- 15
0
votes
2 answers
Flex: Add one item to list using Data Binding
I am trying to load xml data into a List with Flex/MXML. I have a method for getting the XML and putting it into the list (I know that it is reading the data properly) but when I run the application I get this error:
TypeError: Error #1034: Type…

RMK-Jacob
- 209
- 1
- 4
- 15
0
votes
3 answers
Flex/AIR Loop stops executing (timeout) after 60 seconds
This is an odd problem I am having, after about 60 seconds (timed 4 times). I am running a loop that does a HTTPService call (only takes a couple of sec) and when it's all finished it goes back to the function and repeats adding to a counter.
Code…

DominicM
- 6,520
- 13
- 39
- 60
0
votes
1 answer
Load XML path based on textfield
I am loading my XML file using HTTPService. I am trying to load specific data depending on what the user types into the textfield. I am trying to load like this:
xmlservice.send();
var string:String =…

RMK-Jacob
- 209
- 1
- 4
- 15
0
votes
0 answers
Flex and PHP: HTTPService POST Error
I am getting this error when using the HTTPService POST method in the Flex SDK:
[RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2…

RMK-Jacob
- 209
- 1
- 4
- 15
0
votes
1 answer
XML and HTTPService
I have recently started using Flash Builder and the Flex SDK. I am currently working with XML. I am able to read XML into a List perfectly using the following code:

RMK-Jacob
- 209
- 1
- 4
- 15
0
votes
1 answer
httpService and XMLListCollection
I have a problem with my project where I try to fill a list with my xml data that I get out of an php file. I call the php file with a httpservice and this file returns xml data. Now it seems that there is a problem, but I don't get any error. I…

user1941525
- 1
- 2
0
votes
3 answers
Populating a combobox with XML in Flex
I'm trying to fill a combobox with countries from a XML file. Unfortunately, the combobox does not get filled. How should I resolve this problem? Thanks in advance!
Here's my code:
protected function…

user1930785
- 1
- 1