HTTPService is a Flex component used for HTTP requests
Questions tagged [httpservice]
240 questions
2
votes
1 answer
How to return HTTP Service response in flex?
I am clear about how to use HTTP Service in flex but i want to separate the functionality of calling service and getting response of the service in a different ActionScript class. So does anyone know how can i return the response of the HTTP service…

ATR
- 2,160
- 4
- 22
- 43
2
votes
2 answers
Flex HTTPService in Flash
Is there a standard equivalent to the Flex HTTPService class in Flash CS4?

Steve Middleton
- 181
- 4
- 13
1
vote
1 answer
sock.recv() is taking too much time to execute in the python code
Following is the code which listens on a port for HTTP requests and sends the request packet to the server running on port 80, gets the response and sends the data back to the client. Now, everything is executing fine but the following line of code…

vedarthk
- 1,253
- 1
- 14
- 34
1
vote
1 answer
HTTPService in Flex with multiconnections
I am using an HTTPService in my Flex application. I want to load several xml files, each about 1mb in size. Sometimes I need to stop loading previous xml file and start loading a new one. If I use HTTPService.cancel(); or HTTPService.disconnect() ,…

Vladimir
- 173
- 1
- 2
- 14
1
vote
1 answer
Browser requests android HttpService to show image
I've created http service on android. Now I'm trying to make HttpService show me some image into a browser. I write an url in the browser (for example http://127.0.0.1:6789/home.html (I play with emulator)). And the http service sends me html like…

Nolesh
- 6,848
- 12
- 75
- 112
1
vote
1 answer
Flex mobile request to time.nist.gov
How do I access the time provided by internet time services like time.nist.gov from within my Flex mobile application?
Is there a way to do this via URLRequest or HTTPService?
Alright, here is the call to the Yahoo WebServices with a simple…

AlBirdie
- 2,071
- 1
- 25
- 45
1
vote
0 answers
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 REST like communication to the ASP.NET web app…

Ron
- 978
- 3
- 13
- 27
1
vote
1 answer
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 had a local xml datas. Right now, i am trying to…

Dinesh
- 179
- 1
- 2
- 11
1
vote
1 answer
Flash HTTPService : reading the connection data from property file
i have my HTTPService, it looks like this :

OhadR
- 8,276
- 3
- 47
- 53
1
vote
1 answer
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.

Pranav Hosangadi
- 23,755
- 7
- 44
- 70
1
vote
1 answer
How can I make a request for two different domains in the same module in NestJs?
Today we have two different domains in our ecosystem. Our BFF should receive informations from those different endpoints.
If I add FirstService and SecondService in providers, both services get the same informations in HttpModule.registerAsync, but…

Samuel Levy
- 69
- 3
1
vote
0 answers
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 header:Object = new Object();
header["Accept"] =…

insomnia
- 66
- 9
1
vote
1 answer
Angular/Http "put" method only returning undefined?
I've been trying to make a very basic app pulling user information from a .json file and "logging them in", and have a json storing whether a user is logged into the app and their user ID. I'm stuck on a method which would take the given email and…

Kroob
- 11
- 1
1
vote
1 answer
Simplify API calls when using pipe and HttpService in Angular8
In most of my API calls I use this pattern:
call server and pipe result
Check for error and throw if needed
map results from server
public getItems() : Observable- {
return this.http.get
- >(environment.url + '/items').pipe(
…

Maayan Hope
- 1,482
- 17
- 32
1
vote
0 answers
Node.js/NestJS: force a HTTP call to go (making it a hotter Observable)
I'm developping a library for some end-users, with calls to an API via HttpService whose result the end-user will use or not.
end-user consumer <==> my library <=(HTTP)=> remote API
Now HttpService uses cold Observables, meaning that it…

Bob
- 1,495
- 1
- 19
- 24