HTTPService is a Flex component used for HTTP requests
Questions tagged [httpservice]
240 questions
0
votes
3 answers
Flex HTTPService Error
I am creating a Flex application and am using an HTTPService to retrieve XML from an asmx web service. This web service needs one string parameter. This parameter contains multiple options separated by ~ and parsed apart. This web service works…

Josh
- 31
- 5
0
votes
1 answer
AMF Channel without Livecycle, BlazeDS or similar
Is it possible to use an AMF Channel in a Flex HTTPService client application without using Adobe Livecycle, BlazeDs or similar in order to do real time asynchronous request from an HTTPService?

Fseee
- 2,476
- 9
- 40
- 63
0
votes
2 answers
Flex: time how long HTTPService takes to load?
I am loading some XML with HTTPService in Flex. It is taking longer than I would like to load. So I want to do some trouble shooting, but in order to tell what is making a difference I need to be able to time the requests and how long they are…

JD Isaacks
- 56,088
- 93
- 276
- 422
0
votes
2 answers
OutOfMemory Error while reading data from http Get request android
I am doing a http Get request. I need to receive huge data, but getting OutOfMemory Exception while reading data.
My code:
public static String getData(String url) throws CustomException {
// http post
InputStream is = null;
…

user2085965
- 393
- 2
- 13
- 33
0
votes
1 answer
Http Get and post calls in android
I am doing a http GET service call.
I can see the data coming in chrome rest client, but I am getting error reply as follow

user2085965
- 393
- 2
- 13
- 33
0
votes
2 answers
FLEX Cairngorm commands... odd behaviour
while trying to solve my problems in serializing the execution of cairngorm commands, I tried to bypass completely the event dispatching and simply instantiated the command I wanted to execute, then called it's execute method. In this method there's…

luca
- 12,311
- 15
- 70
- 103
0
votes
1 answer
Flex- Singleton's properties Binded to HttpService properties are not being updated
I have the following Singleton:
package singletons{
import flash.events.Event;
import flash.events.EventDispatcher;
import flash.events.IOErrorEvent;
import flash.net.SharedObject;
import flash.net.URLLoader;
import flash.net.URLRequest;
import…

SebastianT
- 263
- 3
- 14
0
votes
2 answers
Get data from dynamic HTTPService Asynchronous to populate an Advanced Data Grid Flex
I have to populate an Advanced Data Grid which have the following fields:
Continent->State->Society-->Actual Value-->Estimate Value
I want to simulate a financial market so i have to change some of the values by asynchronous request from an…

Fseee
- 2,476
- 9
- 40
- 63
0
votes
1 answer
Load Data by HTTPService from Url into Flex text area as a string
I want to use an HTTPService to load some data (number of columns and number of rows) which change randomly by a certain frequency
I get the string like freq#ncols#nrows#value.
How can i display for example:
1000#21#13#2391 that means: in 21 col, 13…

Fseee
- 2,476
- 9
- 40
- 63
0
votes
1 answer
flex write text on server with php
I am trying to append a text file on the server and need it to delete the older line and keep only the latest 20 entries. Each time I try, the text files gets created but nothing gets written in it. Thanks !
MXML code

Charles-Olivier Dion
- 21
- 1
- 4
0
votes
2 answers
http service not working for parallel requests
I am using an http service object to make servlet requests inside a method in flex. The method is being invoked simultaneously in parallel by two events. I could see that both requests have reached the servlet, but only one returns to the result…

Chinta
- 275
- 2
- 14
0
votes
3 answers
Deserialize XML to custom Class in Flex?
Is it possible to deserialize an XML file to a class in Flex without manually checking the XML and/or creating the class, with the help of a HttpService?
Edit: Explained a bit more and better.
We have an XML file which contains:
…

MysticEarth
- 2,646
- 4
- 33
- 53
0
votes
2 answers
How to authenticate to Freshbooks API using Flex?
I am new to Flex (FLex Builder 3.0), and I'm creating a simple application that would basically just authenticate to the Freshbooks API (www.freshbooks.com) via HTTPS. without sending anything else.
Here's what I have so far:

Katsupoy
- 75
- 1
- 4
0
votes
1 answer
Writing HttpService on JBoss
I have written http client using camel http connector. Currently JBoss is chosen as my application server. I would like to write a HttpService that should run on JBoss which can receive and process the payload from client.
Any pointers would be much…

Nageswara Rao
- 954
- 1
- 10
- 32
0
votes
2 answers
HTTPService Result - checking number of items with a specified name
I have a question about HTTPService and the data it returns.
Well lets consider this XML:
1
Summer Vacation
In vacation
…

Fábio Antunes
- 16,984
- 18
- 75
- 96