HTTPService is a Flex component used for HTTP requests
Questions tagged [httpservice]
240 questions
0
votes
1 answer
flash AS3 IDE and Flex HTTPService library
does anyone know if you can use the Flex HTTPService library with Flash IDE in AS3?
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/rpc/http/HTTPService.html
or if there is a similar library to use that does the same thing?…

K-G
- 2,799
- 4
- 26
- 42
0
votes
1 answer
Please help me work out this error, regarding the use of a HTTPService to connect Flex4 & Ruby on Rails
I have a HTTPService in Flash Builder 4, that is defined as follows:
It gets called as follows:
getUserDetails.send({'user[username]':…

ben
- 29,229
- 42
- 124
- 179
0
votes
2 answers
HTTP service get/shows wrong value
I'm populating an advanceddatagrid through a http service call. I define a HTTPService in my mxml file like this:
It receives this simple "XML file" ...

Jan Sander
- 35
- 7
0
votes
2 answers
Images won't dynamically refresh
I am writing a Flex application to receive xml from an httpservice. That works because I can populate a datagrid with the information. The xml sends image pathnames. A combobox sends a new HttpService call onChange. This repopulates the datagrid and…

Bridget
- 21
- 4
0
votes
0 answers
Httpservice timeout with 2032 stream error
I have a flash web application and I use HttpService to upload files to the server. It works perfectly fine for small-sized files(~11 MB), it however throws 2032 stream error when size increases beyond that. I tried increasing the requestTimeout…

lego
- 1
- 1
0
votes
1 answer
Flex image to mysql blob through php
I want store images from a flex application in a mysql database i a blob field, but it's taking me a lot of troubles.
I guess need to send from httpservice to php script the image, but... the flex httpservice send parameters by $_REQUEST and php…

alex
- 323
- 1
- 2
- 16
0
votes
5 answers
HTTPService is very slow by sending 10'000 lines of XML to the server
I have a flex app which allows user to create some content. this content will then be sent via xml back to the server:
private function saveBackXMLToServer():void {
var params:Object = {};
params["xml_file"] = XML_content();
…

Markus
- 3,948
- 8
- 48
- 64
0
votes
2 answers
Automatically call httpservice.send
I have an application that displays the data from 3 xml files (auto generated from SQL table) using httpservices to get them.
The first xml file is small and contains around 30 items, the second and thrid contain around 200-300 items each.
The first…

Matt Robinson
- 9
- 1
- 4
0
votes
1 answer
Can I override the mxml request in an HTTPService? How?
I have an HTTPRequest in mxml that has an mx:request defined inside it. I use the info in the mxml request 99% of the time (I thought it was 100% until I found this bug). So I need to send the HTTPRequest with one of the items in the request…

invertedSpear
- 10,864
- 5
- 39
- 77
0
votes
0 answers
Log the IP address of incoming requests in server.log file in GlassFish
I want to log the IP address of incoming requests to my GlassFish's log. After doing some research, I found out how. But the problem here is that I learned how to log it in the access-log file. Is there any way to log the IP address in the…

SHA33
- 115
- 9
0
votes
3 answers
XML HTTPService Result and for each
XML is cool in flex, but I have an annoying problem to solve, caused by what I can imagine is a feature. You see, when you have just one tag of something, it creates an object which is not an array. But when finds more than one, it puts it on an…

huff
- 1,954
- 2
- 28
- 49
0
votes
2 answers
How to link Adobe Flex application to website
I am creating an Adobe Flex application. I want to use a website like bbc goodfood by using textInput in my application to search for recipes on the goodfood website which would then return results in my application. How could this be done? I can't…

user3161496
- 29
- 1
- 1
- 4
0
votes
0 answers
Android: System.err (1052) on
I have a web server (started from a service):
public class WebServer extends Thread {
private boolean isRunning = false;
protected Context context = null;
private int serverPort;
private BasicHttpProcessor httpproc = null;
…

anthony
- 7,653
- 8
- 49
- 101
0
votes
2 answers
Adobe Flex HTTPService AsyncResponder onResult handler fires twice?
My HTTPService resultHandler is firing twice. Is that normal? The messageId and token# are the same. StatusCode=200 both times.
I've examined the traffic in Fiddler and only one request is being submitted. Here's a code snippet; I've put a…

Tim
- 429
- 6
- 19
0
votes
1 answer
Send XML String With HTTP Post In Actionscript 3
I am having a little trouble sending an xml string to an HTTPService an Actionscript3 (see code below). Basically, I am trying to send a georss xml string for conversion into another format. I am getting an ioError and suspect the xml is causing…

user163757
- 6,795
- 9
- 32
- 47