Questions tagged [httpservice]

HTTPService is a Flex component used for HTTP requests

240 questions
0
votes
0 answers

how to connect an angular app on public ip to a node app on local server?

I have an angular 4 and a node app. I connect them with HTTP services. now I put them on a local server with 192.168.x.y IP. I start my angular app by: ng serve --port 8080 --host 192.168.x.y --public 151.233.t.z which 151.233.t.z is my public IP.…
fariba.j
  • 1,737
  • 7
  • 23
  • 42
0
votes
1 answer

how to send a get request with a string parameter containing '/' in angular 4 service?

I'm using angular 4 and http services and I want to call a service and pass a string to return a JSON value. my string is '97/422/1883' and my service code is : getIncomingRelatedById(number) { this.createAuthenticationHeaders(); return…
fariba.j
  • 1,737
  • 7
  • 23
  • 42
0
votes
1 answer

Flex 4 - Technique to allow HTTPService testing locally and on development server

Right now I have my URLs hard-coded for HTTPService to work with my local machine's web server so that I don't need to copy files to htdocs after compiling. What's a good technique to easily transition HTTPService URLs from working on my testing…
Anonymous1
  • 3,877
  • 3
  • 28
  • 42
0
votes
1 answer

Ionic App not working in Mobile but Works in Browser

I have created an app for the Registration Form using [Ionic + PHP] and I face the following issue. CORS Add-on: Activated - It works Fine when I use it in the http://localhost:8100/ionic-lab CORS Add-on: Deactivated - It does not works Fine when I…
Naresh Kumar P
  • 4,127
  • 2
  • 16
  • 33
0
votes
2 answers

Disable caching while dynamically loading .XML files via HTTPService?

This is my first CMS application and in the ackground is Delphi 7. I use 5 different XMLListCollections which are dynamically loaded from local files on the server. HTTPService loads the first one into a DataGrid just fine, but when loading any…
ghiebert
  • 1
  • 1
0
votes
1 answer

Flex 4 get data from php script?

I'm working with wordpress,and trying to paste video url to video player I have php script that get from I database video url. $post_id = $_GET['post_id']; global $wpdb; $query = "SELECT * FROM wp_posts WHERE wp_posts.post_type = 'attachment'…
user147
  • 1,312
  • 5
  • 22
  • 41
0
votes
1 answer

how to get notified when HTTP services are down?

We have a iOS app.We use HTTP services for getting and posting JSON data. Push notifications also enabled. If backend services are down is there any way to notify the user that services are down
Ajay_Ajju
  • 5
  • 5
0
votes
1 answer

Can I control the parameter order in an HTTPService Post?

I'm updating a Point of Sale system that was built with Flex 4.15.0 and AIR 23.0 using the Cairngorm framework. The code integrates with a custom server provided by my client's payment processor vendor. I do not know any details of its…
JeffryHouser
  • 39,401
  • 4
  • 38
  • 59
0
votes
2 answers

Flex: How do I do a new POST in the return handler of a previous POST to the same URL (2032)?

Background: I've been drafted to maintain and update a flash/flex/as3 front-end to website using php on the backend. I'm getting better at it, but I'm still new to the environment. I need some processed information received back in the return…
trueskew
  • 81
  • 2
  • 8
0
votes
1 answer

Using Flex HTTPService to send http POST to webhook

I've used the Flex HTTPService to connect to a backend blazeDS service without any problems at all. The question I have is, can I also use HTTPService to send a HTTP POST message to a server (with basic authentication)? Specifically I'd like to be…
AlexC
  • 109
  • 1
  • 10
0
votes
2 answers

No provider for HttpService

When I run the following project I get the error: No provider for HttpService! (AppComponent -> HttpService) Can someone help me please? my AppComponent: import {Component} from 'angular2/core'; import {HttpService} from…
Soli
  • 842
  • 2
  • 11
  • 24
0
votes
1 answer

$scope not able to get data from factory using $http.get in Angularjs