Most voted "web-service" questions
Web services can be defined using Web Services Description Language and consumed via Simple Object Access Protocol, or follow the REST model.
Learn more…901 questions
Sort by count of
-
0
votes1
answer56
viewsRun an XMLA query using C#Webapi
My C# Webapi looks like this. using Microsoft.AnalysisServices.AdomdClient; using System; using System.Data; using System.Web.Http; using System.Xml; namespace FastReport.WebApi.Controllers {…
-
0
votes0
answers161
viewsDoubt Consume Web Service in Wordpress
I have a site in wordpress, made by myself, is called School Circuit, in it I need to consume the data of a webservice for management of championships, teams, games, students, etc... The company…
-
0
votes1
answer122
viewsWEB Service SOAP instantiating class
Good afternoon guys, I’m trying to instantiate a class of WS SOAP but this is giving the following error. follows below the code of my method : public void consultaOperadoresSafra(){…
-
0
votes1
answer25
viewsError while consuming API on Android
I’m trying to consume an API on Android, but I’m not getting it. Debugging looks like it cannot exit Asynctask and does not return the value to where it is calling the method. It can read the data…
-
0
votes1
answer542
viewsI’m doing an integration with Cielo’s api but I get an error message:
I’m doing an integration with api-Cielo 3.0 but I’m getting an error message: application code package cieloecommerce.sdk.ecommerce; import java.io.IOException; import cieloecommerce.sdk.Merchant;…
-
0
votes0
answers890
viewsCreating and consuming PHP+JSON webservice - I can’t make the configuration
I’m making a webservice, without any framework, using PHP+JSON, with localhost xampp initially, so I’ll put it on some cloud server. I created in xampp/htdocs two folders, "client" and "vendor", in…
-
0
votes1
answer118
viewsType Mismatch: cannot Convert from Unmarshaller to Pool.Unmarshaller
I’m getting this eclipse error message in a Rest project java client code. package cliente; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import…
-
0
votes1
answer127
viewsError return php nusoap
Hello, I have configured on a server a license Webservice,made in PHP nusoap, which was working properly, but due to problems with the internet provider we decided to host on a third, in the new…
-
0
votes0
answers804
viewsConsuming Web Service with authentication - C#
Good afternoon Personal. I’m implementing a function in my system to consume data from a web service that requires authentication (Basic Authentication), but I can’t get any feedback. The question…
-
0
votes1
answer114
viewsWcf access via https
I have the following error accessing a https url: O esquema de URI do provedor 'https' é inválido; esperado 'http'.\r\nNome do parâmetro: via My file to <?xml version="1.0" encoding="utf-8" ?>…
-
0
votes0
answers34
viewsPoint in Model Class attribute is possible?
This is an xml request schema for a Webmethod: <RetrieveClienteRequest> <model query=""> <keys query="" > <cliente.cnpj type="String"></cliente.cnpj> </keys>…
-
0
votes1
answer180
viewsRequests not being sent with payload in Python - Moodle
Good afternoon, I’m having a problem that’s already giving me a headache. The blessed request payload is not being sent to the webservice, only the url. My code is like this: class Curso: '''Resgata…
-
0
votes1
answer47
viewsBuild Web-based Mobile Application
Good evening guys, I am participating in a project volunteer to a group and we have a web application ready, developed in PHP with the Laravel framework. We need a data inclusion form for this…
-
0
votes1
answer156
viewsXML parser error with JAXB
I’m trying to parse an XML file provided by a Webservice with open data of the acting Senators on Senado Federal The XSD file can be found directly by that link. This xsd does not specify a root…
-
0
votes0
answers158
viewsHow to perform SOAP request with and without proxy
Good afternoon, everyone, Setting: "The company where I work has a proxy. But time and again there is the need to disable it and set Ipv4 settings manually." Therefore, I can consume Soapclient for…
-
0
votes0
answers500
viewsHTTP Status 500 - Internal Server Error
After trying to make a call in the Glasfish Webservice is occurring the error below, I am trying to make a call in the Webservice Rest Json, in the XML Rest call it runs normally. package…
-
0
votes1
answer73
viewsWCF services with a number of different methods (endpoints)
I took a project that uses WCF and I’m not getting to solve this mystery. I have two Solutions: Project A and Project B. When he tries to instantiate the OAuthServiceClient within the Project B, it…
-
0
votes1
answer3418
viewsRequest API with Javascript
I am making a web application in which the goal will be to use an API to only list some information (GET) and for this I would like to use only Java and html. The API is this:…
-
0
votes1
answer141
viewsError while receiving json from Android Studio objects
Good afternoon guys, I’m having trouble getting an array of objects and show in Listview on android. In case the class that is giving error is this: public class HTTPCarregaLista extends…
-
0
votes1
answer235
viewsWeb Api does not return related data
I’m doing some tests with Web Api (Asp.net core). And with Eager Loading I’m trying to upload a related list, but what I get from Postman is this:…
c# asp.net web-service asp.net-web-api asp.net-coreasked 5 years, 9 months ago Márcio Sebastião 769 -
0
votes1
answer101
viewsRest only returns XML
good evening to all, I’m making a Restfull API for mere learning and ran into a simple problem, but I couldn’t find a solution on the internet. I created this class to control games: @Path("/games")…
-
0
votes0
answers46
viewsWeb Api - Is it wrong to get a related object like this?
I started developing with Web Api (Asp.net Core) and I have a doubt about this right or wrong what I am doing... I have two classes in 1 to N: The Department class: public class Department { public…
c# web-service asp.net-web-api asp.net-core asp.net-core-web-apiasked 5 years, 9 months ago Márcio Sebastião 769 -
0
votes0
answers83
viewsProblem with the interaction of an http server with Arduino and Axios js
I am creating an http server on Arduino, which given a request it responds to the following: client.println("HTTP/1.1 200 OK"); client.println("Content-Type: text/html"); client.println("Connection:…
-
0
votes1
answer22
viewsHandling data Websevice json
When running a url returns me the data below. I’m trying to treat it more I don’t know how to do it because the first time I work with json and the variables are empty what I’m doing wrong already…
-
0
votes0
answers32
viewsCORB does not allow display JSON response
Provided an API that returns the following JSON: { "ResponseStatus": { "ResponseCode": 0, "ResponseMessage": "Success." }, "Events": [ { "CodEspec": 65957, "NomeEspec": "O PIOR ESPETÁCULO DO MUNDO",…
-
0
votes0
answers38
viewsDoubt Volley on Android
Is it necessary to have a Listview to send data to the webservice with Volley on Android? Because I only created three Edittext to test. It’s returning "timeout error". I’ve checked the url, it’s…
-
0
votes1
answer250
viewsUse Retrofit to popular a Recyclerview
I need to bring up a list of cities in one RecyclerView of a WebService using the Retrofit. But my List this coming null. I have a Class cidades with the data I need to take from WebService, to…
android android-studio web-service android-recyclerview retrofitasked 5 years, 7 months ago Regina Moraes 43 -
0
votes1
answer644
viewsjava.net.Bindexception: Address already in use: bind
How are you guys? So I have a problem running my WS, I developed in java, at the time of starting it returns me this error along with: at sun.nio.ch.Net.bind0(Native Method) at…
-
0
votes0
answers40
viewsHTTP protocols
I’m new to development and I’m learning how to make a web service below this my method of consultation, insertion and removal. they are already working, however I wanted to know how to pass in the…
-
0
votes1
answer52
viewsErrors when entering data into table
This is a simple exercise to store 5 information in the bank: nomeCliente, nomeProduto, pesoProduto (informed by the client), valorProduto (standard value of 1.20) and valorFinal (final result of…
-
0
votes0
answers140
viewsManipulating XML from Webservice response in PHP
I’ve seen some of these responses here in other languages, but not in PHP. Does anyone know how I can manipulate this xml that returns from a Webservice? I would like to take the specific data you…
-
0
votes1
answer57
viewsParser XML Webservice in Java
I am having problems with XML return from a webservice when trying to parse. Netbeans output complains this way: [Fatal Error] :1:13: White space is required between the destination of the…
-
0
votes2
answers87
viewsHosting and favicon error 404
I have an API developed with Slim 3. The API worked perfectly, testing with Postman or by browser, everything worked perfectly. I had to change the hosting. So I went up the API to new host and…
-
0
votes1
answer228
viewsHow to convert XML with a repeated element to the Java object (JAXB)
I’m having a problem converting an XML file to Java Object. This is my XML file that I receive through Webservice: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"…
-
0
votes1
answer75
viewsHow to do this query search?
I am trying to develop a Rest webservice in Netbeans (Java). I have followed this tutorial... https://rafaelsakurai.gitbooks.io/desenvolvimento-distribuido/content/chapter10.1.html However, when it…
-
0
votes1
answer130
viewsRelationship 1:N in Java
I have an API and I’m creating a relationship between Cliente and AtividadeSecundaria, where a client has several activities and the activities belong to a client, however, when I make the…
-
0
votes0
answers54
viewsDefine Content-type Web API C#
Good morning Guys, here’s the thing, I’m creating a Web API that should receive some parameters among them a binary format image with the content-type "octet-stream". The other parameters are sent…
-
0
votes0
answers229
viewsHow to authenticate when consuming a SOAP service?
I need to make calls to a Web Service to send some information. I did it this way: I started a Winform application I imported the address that became . WSDL in the project I imported the classes and…
-
0
votes1
answer107
viewsFetch data from a JSON-shaped Sqlite table and send Webservice
Good morning guys, I’ve been in this problem for a few days... I know how to send an item from Sqlite to Webservice, but how do I send an entire table at once? Scenario: The user makes a stock count…
-
0
votes1
answer32
viewsConceptual problem with webservice, how to make a webMethod
Good afternoon guys, I’m having a little problem here at the time of creating a webMethod. The thing is, I need to work with three levels, in the three cases I need to send to the database, follow…
-
0
votes1
answer897
views"The HTTP request was Forbidden with client Authentication Scheme 'Anonymous'"
I am trying to communicate my application with the Cadsus web service from an Asp . net core application. I have using the code below, but whenever I try to recover the return of the query I get the…
-
0
votes2
answers137
viewsProblem sending data from a console application to Webservice
I have a console application that receives data from a mobile device, I am trying to send this data to a web service to process the data and fill them in the database. I’m trying this way: public…
-
0
votes1
answer704
viewsREST API using Spring Boot
How do I bring all the data from an external service using Spring Boot. I have never done this to bring the information. I have created applications using data from a database. I saw some tutorials…
-
0
votes1
answer136
viewsEntity relationship error 1:N using orphanRemoval
I am trying to update a record in the database through a REST service with the help of Postman, however is returning me an error: "A collection with cascade=\"all-delete-orphan\" was no longer…
-
0
votes2
answers91
viewsConsuming webservice, login screen
Good morning! To create a project in JS, EJS and Express.js for studies, to consume a list of cars using webservice: https://carros-springboot.herokuapp.com/api/v1/carros On the login screen, using:…
-
0
votes0
answers53
viewsProblem consuming Rest API
I am trying to consume an api, but it is not returning an internal list, it only returns totalSize and done. Code: public List<PessoaResponseDTO> get(String url) throws Exception {…
-
0
votes1
answer249
viewsConsume Web-Service via WCF with digital certificate
I am developing an application that needs to use a Webservice (WSDL) from a third party company. To access this WSDL I need to use a certificate.pfx. I have already installed this certificate on my…
-
0
votes0
answers74
viewsHow to consume a SOAP Webservice at Angular 7
Guys, I’m trying to consume a SOAP Webservice in Angular 7, I’m using ngx-Soap in version 0.6.3, but I’m not succeeding, the project runs but when I try to access the resource the browser emits this…
-
0
votes0
answers28
viewsWebsocket Javascript - multiple simultaneous connections
Personal talk, I have a function where I make a connection with a websoket, I can connect and everything, only I’m wanting to open 3 connections from 3 different users, I can open these connections…
-
0
votes0
answers22
viewsProblem when setting route for consumption Soap
I am having trouble making the request to the end point of the post office. It follows below the route I am using. My biggest doubt would be the .to(), I don’t know if I’m doing it right. Below is…