Questions tagged [httpservice]

HTTPService is a Flex component used for HTTP requests

240 questions
1
vote
2 answers

OSGi httpService.registerResources() of a local path

I am trying to register a local path resource(outside OSGi bundle) and it just doesn't work. It's strange because how else can you use resources that are not already existing in the jar? Here's my code: protected void bindHttpService(HttpService…
1
vote
1 answer

Incorrect Array Sorting in Angular 6

I m using *ngFor to iterate array of objects in data-table and for serial no. i using let index of i and then printing it to the table but the problem i m facing is that after 9th serial no. i got 10 but after 1 serial no. like 1, 10, 11, 2, 3. Can…
Mohammad Quanit
  • 120
  • 2
  • 14
1
vote
0 answers

RabbitMQ Event Subscribers - which is good? Windows service or Http Services (REST API)

I am working on Microsoft technologies and the environment is Windows server 2012. we have a requirement to use RabbitMQ which has multiple events needs to be subscribed by any of the services hosted in windows either in IIS or as windows…
1
vote
1 answer

Influxdb - Difference between bind adress in [graphite] and [http] of config file

I need to understand what is the difference between Graphite bind address 2003 and http service bind address 8086. I'm implementing jmeter--influxdb --grafana for real time result.In Graphite im enabling bind address 2003 and in the jmeter backend…
shey
  • 344
  • 2
  • 10
  • 29
1
vote
2 answers

Flex4: Using httpService in consecutive function calls

I have this button: and this click event handler: protected function downloadLmData(event:MouseEvent):void { downloadData('competenta',…
cili
  • 1,037
  • 2
  • 19
  • 34
1
vote
1 answer

faultEvent message body of HTTPService empty in Mozilla and Chrome

I am using HTTPService for authentication in my appliaction and I am parsing the messahe body of faultEvent of fault handler to determine what fault is coming. Every thing is working fine in IE but in case of Chrome and Mozilla the message body of…
Tyr1on
  • 1,999
  • 2
  • 13
  • 20
1
vote
2 answers

Does switchMap to Angular HTTP-Request needs unsubscribe

I am wondering if I have to unsubscribe my subscription in the following case. I create an observable using combineLatest of the two angular observables route.params and route.queryParams. To use them as parameters within an http request I call…
Pascal Chorus
  • 360
  • 4
  • 12
1
vote
1 answer

Flex 4 - Pass data sent by HTTPService object to result handler

I have a data object that gets sent as a POST request by an HTTPService object, but I want to be able to access the data object in the result handler. What is the best way to do this?
Anonymous1
  • 3,877
  • 3
  • 28
  • 42
1
vote
1 answer

Error in building angular app in production mode

When I want to build my app with prod flag, building process will be failed because of using Http module in one of my services. It cannot resolve the parameter for this service. here is the sample of code import { BadInput } from…
1
vote
0 answers

ColdFusion API using new http() and setMethod("POST") throwing 500 error

I have two ColdFusion sites in different servers. I need to send a structure of an Agent (person) to be inserted in the other database server. in the source server I wrote this code: public Struct function addAgentToRemote(struct oAgent) { …
rparente
  • 59
  • 3
1
vote
1 answer

How to trace complete URL after parameters as object are added to flex httpservice?

I want to trace how URL looks when it is sent like in following example when using params: http.url="func.php"; var params:Object = { abc: "123", def: "456" }; http.send(params); trace(http.url); // traces only "func.php" trace("params ",params); …
Nemi
  • 1,012
  • 10
  • 19
1
vote
1 answer

SSL and MAC (Message Authentication Code) headers

I need to encrypt all communication between the server and client by using MAC headers. Is it possible for someone to explain how exactly the MAC header works with the SSL mechanism and where can it be seen ? I need to verify if the mac headers are…
YD8877
  • 10,401
  • 20
  • 64
  • 92
1
vote
1 answer

Flex HTTPService.send() doens't trigger ResultEvent

Hello I'm trying to send a simple GET request using flex mx:HTTPService: Code that is supposed to send the…
Ivan Gromov
  • 4,195
  • 9
  • 41
  • 57
1
vote
0 answers

Angularjs Http service POST 500 internal server error

Hi i am new to angular js, i am trying to create CRUD operations in angular js. But i am stuck in POST error which tells 500 internal server error when i am posting from form. My controller code: public function index_post(){ $bookId =…
Rakesh
  • 11
  • 3
1
vote
1 answer

how to use request parameter with special character in HTTPService - Flex

Currently I have : {loginUser}
priyank
  • 4,634
  • 11
  • 45
  • 52