Questions tagged as 'http'

1
answer

HTTPS SSLv3 Error Indy Delphi 7

I'm trying to connect via HTTPS using SSLv3 (needed to consume a specific service), but when I try to perform the post, I get the following error: At first, I think it's a problem in configuring the components. I already did a search but...
asked by 07.11.2014 / 11:53
1
answer

How to use Named Parameters in $ http of AngularJs?

Is there any way to use named parameters in the $http of Angular method? With ngResource you can do this: var User = $resource('/path/to/user/:id'); $scope.user = User.get({id: 1}, function() { $scope.user.name = $sc...
asked by 06.11.2014 / 22:52
1
answer

Error entering data with accent

I'm sending the data by URL to my webservice if I put the path through the web browser example in Chrome: meuwebservice/inserirusu/João_da_Silva/fotógrafo and calling a method to to display shows like this: Nome: João da Silva profi: F...
asked by 05.11.2014 / 13:13
3
answers

Consuming an API with Angular

I'm trying to consume an API with Angular 5 but it returns me this error: " Error trying to diff '[object Object]'. Only arrays and iterables are allowed at DefaultIterableDiffer.diff". API Response: { "alunos": [ {...
asked by 27.01.2018 / 04:26
2
answers

Send querystring in a request with PHP

I need to access a page that has a pre-determined query, but I do not want the user to be redirected to the page, just send the request.     
asked by 18.02.2016 / 17:18
1
answer

Http Post No Angular

Well, I'm trying to make an http post to send a json to the server but it's giving an error. My code looks like this the imports import { Component, OnInit } from '@angular/core'; import { FormGroup, FormControl, FormBuilder } from "@angula...
asked by 25.10.2018 / 05:49
1
answer

Sending a POST and how do I retrieve the data on the ANGLE?

onSubmit() { console.log(this.formulario.value) this.http.post(this.configUrl, (this.formulario.value)).pipe( map(res => res)) .subscribe(dados => console.log(dados)) } This is my post code, I am sending a message to the server and...
asked by 28.10.2018 / 22:45
1
answer

ANDROID STUDIO DOES NOT UPDATE [closed]

I've done everything in Android Studio and it does not update and the SDK update sites can not download the Android Repository, I have already seen that the error is the 407, need proxy authentication. I have configured the proxy manually in the...
asked by 19.10.2018 / 17:31
2
answers

Problem in returning the answer via $ http.post ()

I'm trying to get only a value of HTTP return but I'm not getting it. .controller('myCtrl', function ($scope, $http) { $scope.sendPost = function() { var dataObj = { name : $scope.newName }; var res = $http.po...
asked by 16.02.2016 / 02:25
4
answers

How can I download PDF from a web page automatically

Is there any way to download a PDF embed into a web page? I am currently using the control WebBrowser.ShowSaveAsDialog() (Save As) but need to do without it, automatically using C # Windows Forms My code: private void button1_Click...
asked by 24.11.2014 / 17:09