HTTPService is a Flex component used for HTTP requests
Questions tagged [httpservice]
240 questions
3
votes
2 answers
Percent-encoding in an URI
I would like to know how can I convert URI:
%D1%80%D1%83%D1%81%D1%81%D0%BA%D0%B8%D0%B9%20%D1%8F%D0%B7%D1%8B%D0%BA
to
русский язык
I know about urldecode function in PHP. I'm looking for the same function in Java(Android). Could anybody help me?…

Nolesh
- 6,848
- 12
- 75
- 112
2
votes
2 answers
What Really is the 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 class whenever I make a call to a server, either with the component or with my own custom service…

Oliver Spryn
- 16,871
- 33
- 101
- 195
2
votes
2 answers
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 result received is between 1-5 seconds for less than…

Joe
- 1,014
- 1
- 13
- 28
2
votes
0 answers
nest.js HttpModule.registerAsync() ,how to get the original request headers /cookies?
In nest.js, Iam trying to forward cookies/headers from my orirginal request to next api in the call chain. api1->api2->api3 . any headers/cookies from api1 should be automatically included in other https service calls.
HttpModule.registerAsync({
…

msreekm
- 199
- 2
- 3
- 12
2
votes
2 answers
Flex - HTTPService - Security error accessing YouTube api
I have the following HTTPService defined:
And I'm using the following URL (pattern) to obtain a list of YouTube videos for a particular…

enormace
- 641
- 2
- 6
- 20
2
votes
0 answers
try to send image in json from my nestjs api to another api
I'm trying to send json with image to another api from my nesjs api,
I'm using httpservice.post but always getting an error - "no file supplied".
the image is ulpoaded from the user and saved in the public folder,
then I try to get the image from…

user14207225
- 21
- 2
2
votes
4 answers
how to render data using ngFor received throug http service?
I tried to inject a service(contact.service.ts) into a component(contact-list.component)
The service(or data) that i m trying to provide to component is details of employees(defined in contacts.ts).
I successfully received the data,but not able to…

bali
- 327
- 1
- 5
- 14
2
votes
2 answers
osgi HttpService register resource from outside of the bundle ( filesystem )
I am using OSGI's HttpService to register my servlets and resources.
To register resource I am using HttpService.registerResources(java.lang.String alias, java.lang.String name, HttpContext context)
I have tested that "name" can take any relative…

nattu
- 149
- 2
- 9
2
votes
3 answers
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 (e.g. like the FileReference.upload()).
I don't…

DEfusion
- 5,533
- 5
- 44
- 60
2
votes
1 answer
2
votes
1 answer
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…

Goysar
- 529
- 7
- 25
2
votes
1 answer
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 could I mount a directory as a resource with the…

Jaime Soriano
- 7,309
- 2
- 33
- 45
2
votes
3 answers
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() again before the previous one receives a result, I…

JD Isaacks
- 56,088
- 93
- 276
- 422
2
votes
1 answer
Getting an Error #2032: Stream Error with a Flex app running on Chrome only
I'm having a crazy error when I run my Flex application on Chrome when the server HTTP response it's an Internal Server Error (500) only. It works perfectly on Firefox and IE.
Using Fiddler, I know the server is giving the correct response. An 500…

fapm84
- 161
- 2
- 11
2
votes
1 answer
HttpService - not able to play online videos
I am using HttpService to send responses to android devices and browsers to share some files. This service works on android device. Everything works fine exclude video files. Listening to online music works perfect. But when I try to watch online…

Nolesh
- 6,848
- 12
- 75
- 112